-
Notifications
You must be signed in to change notification settings - Fork 26.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add unit test for StandardMetadataServiceURLBuilder #8913
Merged
AlbumenJ
merged 3 commits into
apache:3.0
from
BurningCN:ut_StandardMetadataServiceURLBuilder
Sep 27, 2021
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
85 changes: 85 additions & 0 deletions
85
...java/org/apache/dubbo/registry/client/metadata/StandardMetadataServiceURLBuilderTest.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,85 @@ | ||
/* | ||
* 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 org.apache.dubbo.registry.client.metadata; | ||
|
||
import org.apache.dubbo.common.URL; | ||
import org.apache.dubbo.config.ApplicationConfig; | ||
import org.apache.dubbo.metadata.MetadataService; | ||
import org.apache.dubbo.registry.client.DefaultServiceInstance; | ||
import org.apache.dubbo.rpc.model.ApplicationModel; | ||
import org.junit.jupiter.api.AfterAll; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.Test; | ||
import java.util.List; | ||
|
||
import static org.apache.dubbo.registry.client.metadata.MetadataServiceURLBuilderTest.serviceInstance; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.mockito.Mockito.spy; | ||
|
||
/** | ||
* {@link StandardMetadataServiceURLBuilder} Test | ||
*/ | ||
public class StandardMetadataServiceURLBuilderTest { | ||
|
||
private StandardMetadataServiceURLBuilder builder = new StandardMetadataServiceURLBuilder(); | ||
|
||
|
||
@BeforeAll | ||
public static void setUp() { | ||
ApplicationConfig applicationConfig = new ApplicationConfig("demo"); | ||
applicationConfig.setMetadataServicePort(7001); | ||
ApplicationModel.defaultModel().getApplicationConfigManager().setApplication(applicationConfig); | ||
} | ||
|
||
@AfterAll | ||
public static void clearUp() { | ||
ApplicationModel.reset(); | ||
} | ||
|
||
@Test | ||
public void testBuild() { | ||
// test generateUrlWithoutMetadata | ||
List<URL> urls = builder.build(new DefaultServiceInstance("test", "127.0.0.1", 8080, ApplicationModel.defaultModel())); | ||
assertEquals(1, urls.size()); | ||
URL url = urls.get(0); | ||
assertEquals(url.getProtocol(), "dubbo"); | ||
assertEquals(url.getHost(), "127.0.0.1"); | ||
assertEquals(url.getPort(), 7001); | ||
assertEquals(url.getServiceInterface(), MetadataService.class.getName()); | ||
assertEquals(url.getGroup(), "test"); | ||
assertEquals(url.getSide(), "consumer"); | ||
assertEquals(url.getVersion(), "1.0.0"); | ||
assertEquals(url.getParameters().get("getAndListenInstanceMetadata.1.callback"), "true"); | ||
assertEquals(url.getParameters().get("reconnect"), "false"); | ||
assertEquals(url.getParameters().get("timeout"), "5000"); | ||
|
||
// test generateWithMetadata | ||
urls = builder.build(serviceInstance); | ||
assertEquals(1, urls.size()); | ||
url = urls.get(0); | ||
assertEquals(url.getProtocol(), "rest"); | ||
assertEquals(url.getHost(), "127.0.0.1"); | ||
assertEquals(url.getPort(), 20880); | ||
assertEquals(url.getServiceInterface(), MetadataService.class.getName()); | ||
assertEquals(url.getGroup(), "test"); | ||
assertEquals(url.getSide(), "consumer"); | ||
assertEquals(url.getVersion(), "1.0.0"); | ||
assertEquals(url.getApplication(), "dubbo-provider-demo"); | ||
assertEquals(url.getParameters().get("timeout"), "5000"); | ||
} | ||
|
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could use Hamcrest here to test the size in a more
fluent
way.For example here you can write:
assertThat(urls, hasSize(1));
In general this is not really necessary but since Hamcrest is in the project dependencies it would be nice to use it to make Testing more pleasing for the eye (easier reading and writing)