1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

update nacos-config test case

This commit is contained in:
fangjian0423 2019-04-16 16:19:30 +08:00
parent ad74ff431d
commit ca23643cd3

View File

@ -87,7 +87,7 @@ public class NacosConfigurationTests {
try { try {
// when(any(ConfigService.class).getConfig(eq("test-name.properties"), // when(any(ConfigService.class).getConfig(eq("test-name.properties"),
// eq("test-group"), any())).thenReturn("user.name=hello"); // eq("test-group"), any())).thenReturn("user.nacos-name=hello");
Method method = PowerMockito.method(NacosConfigService.class, "getConfig", Method method = PowerMockito.method(NacosConfigService.class, "getConfig",
String.class, String.class, long.class); String.class, String.class, long.class);
@ -98,12 +98,12 @@ public class NacosConfigurationTests {
if ("test-name.properties".equals(args[0]) if ("test-name.properties".equals(args[0])
&& "test-group".equals(args[1])) { && "test-group".equals(args[1])) {
return "user.name=hello\nuser.age=12"; return "user.nacos-age=1";
} }
if ("test-name-dev.properties".equals(args[0]) if ("test-name-dev.properties".equals(args[0])
&& "test-group".equals(args[1])) { && "test-group".equals(args[1])) {
return "user.name=dev"; return "user.nacos-name=dev";
} }
if ("ext-config-common01.properties".equals(args[0]) if ("ext-config-common01.properties".equals(args[0])
@ -237,8 +237,8 @@ public class NacosConfigurationTests {
private void checkoutDataLoad() { private void checkoutDataLoad() {
Assert.assertEquals(environment.getProperty("user.name"), "dev"); Assert.assertEquals(environment.getProperty("user.nacos-name"), "dev");
Assert.assertEquals(environment.getProperty("user.age"), "12"); Assert.assertEquals(environment.getProperty("user.nacos-age"), "1");
} }
private void checkoutEndpoint() throws Exception { private void checkoutEndpoint() throws Exception {