add test case
parent
901f9a7def
commit
a0092470e5
@ -0,0 +1,80 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.cloud.alicloud.ans.registry;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.cloud.alicloud.ans.AnsAutoConfiguration;
|
||||||
|
import org.springframework.cloud.alicloud.ans.AnsDiscoveryClientAutoConfiguration;
|
||||||
|
import org.springframework.cloud.alicloud.context.ans.AnsProperties;
|
||||||
|
import org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author xiaojing
|
||||||
|
*/
|
||||||
|
|
||||||
|
@RunWith(SpringRunner.class)
|
||||||
|
@SpringBootTest(classes = AnsAutoServiceRegistrationEnabledTests.TestConfig.class, properties = {
|
||||||
|
"spring.application.name=myTestService1",
|
||||||
|
"spring.cloud.alicloud.ans.server-list=127.0.0.1",
|
||||||
|
"spring.cloud.alicloud.ans.server-port=8080",
|
||||||
|
"spring.cloud.alicloud.ans.register-enabled=false" }, webEnvironment = RANDOM_PORT)
|
||||||
|
public class AnsAutoServiceRegistrationEnabledTests {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private AnsRegistration registration;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private AnsAutoServiceRegistration ansAutoServiceRegistration;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private AnsProperties properties;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void contextLoads() throws Exception {
|
||||||
|
|
||||||
|
assertNotNull("AnsRegistration was not created", registration);
|
||||||
|
assertNotNull("AnsProperties was not created", properties);
|
||||||
|
assertNotNull("AnsAutoServiceRegistration was not created",
|
||||||
|
ansAutoServiceRegistration);
|
||||||
|
|
||||||
|
checkEnabled();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void checkEnabled() {
|
||||||
|
assertFalse("Ans Auto Registration should not start",
|
||||||
|
ansAutoServiceRegistration.isEnabled());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@EnableAutoConfiguration
|
||||||
|
@ImportAutoConfiguration({ AutoServiceRegistrationConfiguration.class,
|
||||||
|
AnsDiscoveryClientAutoConfiguration.class, AnsAutoConfiguration.class })
|
||||||
|
public static class TestConfig {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue