-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* unit test for ApplicationConfig * fix typo * unit test for ArgumentConfig * unit test for ConsumerConfig * unit test for MethodConfig * unit test for ModuleConfig * unit test for MonitorConfig * unit test for ProtocolConfig * unit test for ApplicationConfig * fix typo * unit test for ArgumentConfig * unit test for ConsumerConfig * unit test for MethodConfig * unit test for ModuleConfig * unit test for MonitorConfig * unit test for ProtocolConfig * unit test for ProviderConfig * make test stable
- Loading branch information
Showing
25 changed files
with
1,534 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
177 changes: 177 additions & 0 deletions
177
...config/dubbo-config-api/src/test/java/com/alibaba/dubbo/config/ApplicationConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 com.alibaba.dubbo.config; | ||
|
||
import com.alibaba.dubbo.common.Constants; | ||
import org.junit.Test; | ||
|
||
import java.util.Collections; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.hamcrest.Matchers.contains; | ||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.hasEntry; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.hamcrest.Matchers.sameInstance; | ||
import static org.hamcrest.collection.IsCollectionWithSize.hasSize; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class ApplicationConfigTest { | ||
@Test | ||
public void testName() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig(); | ||
application.setName("app"); | ||
assertThat(application.getName(), equalTo("app")); | ||
application = new ApplicationConfig("app2"); | ||
assertThat(application.getName(), equalTo("app2")); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry(Constants.APPLICATION_KEY, "app2")); | ||
} | ||
|
||
@Test | ||
public void testVersion() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setVersion("1.0.0"); | ||
assertThat(application.getVersion(), equalTo("1.0.0")); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry("application.version", "1.0.0")); | ||
} | ||
|
||
@Test | ||
public void testOwner() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setOwner("owner"); | ||
assertThat(application.getOwner(), equalTo("owner")); | ||
} | ||
|
||
@Test | ||
public void testOrganization() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setOrganization("org"); | ||
assertThat(application.getOrganization(), equalTo("org")); | ||
} | ||
|
||
@Test | ||
public void testArchitecture() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setArchitecture("arch"); | ||
assertThat(application.getArchitecture(), equalTo("arch")); | ||
} | ||
|
||
@Test | ||
public void testEnvironment1() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setEnvironment("develop"); | ||
assertThat(application.getEnvironment(), equalTo("develop")); | ||
application.setEnvironment("test"); | ||
assertThat(application.getEnvironment(), equalTo("test")); | ||
application.setEnvironment("product"); | ||
assertThat(application.getEnvironment(), equalTo("product")); | ||
} | ||
|
||
@Test(expected = IllegalStateException.class) | ||
public void testEnvironment2() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setEnvironment("illegal-env"); | ||
} | ||
|
||
@Test | ||
public void testRegistry() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
RegistryConfig registry = new RegistryConfig(); | ||
application.setRegistry(registry); | ||
assertThat(application.getRegistry(), sameInstance(registry)); | ||
application.setRegistries(Collections.singletonList(registry)); | ||
assertThat(application.getRegistries(), contains(registry)); | ||
assertThat(application.getRegistries(), hasSize(1)); | ||
} | ||
|
||
@Test | ||
public void testMonitor() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setMonitor(new MonitorConfig("monitor-addr")); | ||
assertThat(application.getMonitor().getAddress(), equalTo("monitor-addr")); | ||
application.setMonitor("monitor-addr"); | ||
assertThat(application.getMonitor().getAddress(), equalTo("monitor-addr")); | ||
} | ||
|
||
@Test | ||
public void testLogger() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setLogger("log4j"); | ||
assertThat(application.getLogger(), equalTo("log4j")); | ||
} | ||
|
||
@Test | ||
public void testDefault() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setDefault(true); | ||
assertThat(application.isDefault(), is(true)); | ||
} | ||
|
||
@Test | ||
public void testDumpDirectory() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setDumpDirectory("/dump"); | ||
assertThat(application.getDumpDirectory(), equalTo("/dump")); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry(Constants.DUMP_DIRECTORY, "/dump")); | ||
} | ||
|
||
@Test | ||
public void testQosEnable() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setQosEnable(true); | ||
assertThat(application.getQosEnable(), is(true)); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry(Constants.QOS_ENABLE, "true")); | ||
} | ||
|
||
@Test | ||
public void testQosPort() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setQosPort(8080); | ||
assertThat(application.getQosPort(), equalTo(8080)); | ||
} | ||
|
||
@Test | ||
public void testQosAcceptForeignIp() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setQosAcceptForeignIp(true); | ||
assertThat(application.getQosAcceptForeignIp(), is(true)); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry(Constants.ACCEPT_FOREIGN_IP, "true")); | ||
} | ||
|
||
@Test | ||
public void testParameters() throws Exception { | ||
ApplicationConfig application = new ApplicationConfig("app"); | ||
application.setQosAcceptForeignIp(true); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
parameters.put("k1", "v1"); | ||
ApplicationConfig.appendParameters(parameters, application); | ||
assertThat(parameters, hasEntry("k1", "v1")); | ||
assertThat(parameters, hasEntry(Constants.ACCEPT_FOREIGN_IP, "true")); | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
dubbo-config/dubbo-config-api/src/test/java/com/alibaba/dubbo/config/ArgumentConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 com.alibaba.dubbo.config; | ||
|
||
import org.junit.Test; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.hasEntry; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class ArgumentConfigTest { | ||
@Test | ||
public void testIndex() throws Exception { | ||
ArgumentConfig argument = new ArgumentConfig(); | ||
argument.setIndex(1); | ||
assertThat(argument.getIndex(), is(1)); | ||
} | ||
|
||
@Test | ||
public void testType() throws Exception { | ||
ArgumentConfig argument = new ArgumentConfig(); | ||
argument.setType("int"); | ||
assertThat(argument.getType(), equalTo("int")); | ||
} | ||
|
||
@Test | ||
public void testCallback() throws Exception { | ||
ArgumentConfig argument = new ArgumentConfig(); | ||
argument.setCallback(true); | ||
assertThat(argument.isCallback(), is(true)); | ||
} | ||
|
||
@Test | ||
public void testArguments() throws Exception { | ||
ArgumentConfig argument = new ArgumentConfig(); | ||
argument.setIndex(1); | ||
argument.setType("int"); | ||
argument.setCallback(true); | ||
Map<String, String> parameters = new HashMap<String, String>(); | ||
AbstractServiceConfig.appendParameters(parameters, argument); | ||
assertThat(parameters, hasEntry("callback", "true")); | ||
assertThat(parameters.size(), is(1)); | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
dubbo-config/dubbo-config-api/src/test/java/com/alibaba/dubbo/config/ConsumerConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 com.alibaba.dubbo.config; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class ConsumerConfigTest { | ||
@Test | ||
public void testTimeout() throws Exception { | ||
try { | ||
System.clearProperty("sun.rmi.transport.tcp.responseTimeout"); | ||
ConsumerConfig consumer = new ConsumerConfig(); | ||
consumer.setTimeout(10); | ||
assertThat(consumer.getTimeout(), is(10)); | ||
assertThat(System.getProperty("sun.rmi.transport.tcp.responseTimeout"), equalTo("10")); | ||
} finally { | ||
System.clearProperty("sun.rmi.transport.tcp.responseTimeout"); | ||
} | ||
} | ||
|
||
@Test | ||
public void testDefault() throws Exception { | ||
ConsumerConfig consumer = new ConsumerConfig(); | ||
consumer.setDefault(true); | ||
assertThat(consumer.isDefault(), is(true)); | ||
} | ||
|
||
@Test | ||
public void testClient() throws Exception { | ||
ConsumerConfig consumer = new ConsumerConfig(); | ||
consumer.setClient("client"); | ||
assertThat(consumer.getClient(), equalTo("client")); | ||
} | ||
} |
Oops, something went wrong.