-
Notifications
You must be signed in to change notification settings - Fork 26.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for p2p and zookeeper (#1958)
- Loading branch information
Showing
10 changed files
with
595 additions
and
69 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
57 changes: 0 additions & 57 deletions
57
dubbo-remoting/dubbo-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/PeerMain.java
This file was deleted.
Oops, something went wrong.
81 changes: 81 additions & 0 deletions
81
...t/java/org/apache/dubbo/remoting/p2p/exchange/support/MulticastExchangeNetworkerTest.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,81 @@ | ||
/* | ||
* 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.remoting.p2p.exchange.support; | ||
|
||
import static org.hamcrest.CoreMatchers.instanceOf; | ||
import static org.hamcrest.CoreMatchers.not; | ||
import static org.hamcrest.CoreMatchers.nullValue; | ||
|
||
import org.apache.dubbo.common.URL; | ||
import org.apache.dubbo.common.utils.NetUtils; | ||
import org.apache.dubbo.remoting.Channel; | ||
import org.apache.dubbo.remoting.RemotingException; | ||
import org.apache.dubbo.remoting.exchange.ExchangeChannel; | ||
import org.apache.dubbo.remoting.exchange.ExchangeHandler; | ||
import org.apache.dubbo.remoting.exchange.support.ExchangeHandlerAdapter; | ||
import org.apache.dubbo.remoting.p2p.Group; | ||
import org.apache.dubbo.remoting.p2p.Networkers; | ||
import org.apache.dubbo.remoting.p2p.Peer; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.CompletableFuture; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.junit.Assert.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
|
||
public class MulticastExchangeNetworkerTest { | ||
@Test | ||
public void testJoin() throws RemotingException, InterruptedException { | ||
final String groupURL = "multicast://224.5.6.7:1234"; | ||
|
||
MulticastExchangeNetworker multicastExchangeNetworker = new MulticastExchangeNetworker(); | ||
|
||
final CountDownLatch countDownLatch = new CountDownLatch(1); | ||
Peer peer1 = multicastExchangeNetworker.lookup(URL.valueOf(groupURL)) | ||
.join(URL.valueOf("dubbo://0.0.0.0:" + NetUtils.getAvailablePort()), new ExchangeHandlerAdapter() { | ||
@Override | ||
public CompletableFuture<Object> reply(ExchangeChannel channel, Object msg) throws RemotingException { | ||
countDownLatch.countDown(); | ||
return super.reply(channel, msg); | ||
} | ||
}); | ||
Peer peer2 = multicastExchangeNetworker.lookup(URL.valueOf(groupURL)) | ||
.join(URL.valueOf("dubbo://0.0.0.0:" + NetUtils.getAvailablePort()), mock(ExchangeHandler.class)); | ||
|
||
while (true) { | ||
for (Channel channel : peer1.getChannels()) { | ||
channel.send("hello multicast exchange network!"); | ||
} | ||
TimeUnit.MILLISECONDS.sleep(50); | ||
|
||
long count = countDownLatch.getCount(); | ||
if (count > 0) { | ||
break; | ||
} | ||
} | ||
|
||
Group lookup = Networkers.lookup(groupURL); | ||
assertThat(lookup, not(nullValue())); | ||
|
||
assertThat(peer1, instanceOf(ExchangeServerPeer.class)); | ||
|
||
peer1.close(); | ||
peer2.close(); | ||
} | ||
} |
85 changes: 85 additions & 0 deletions
85
...o-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.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.remoting.p2p.support; | ||
|
||
import org.apache.dubbo.common.URL; | ||
import org.apache.dubbo.common.utils.NetUtils; | ||
import org.apache.dubbo.remoting.Channel; | ||
import org.apache.dubbo.remoting.RemotingException; | ||
import org.apache.dubbo.remoting.p2p.Group; | ||
import org.apache.dubbo.remoting.p2p.Peer; | ||
import org.apache.dubbo.remoting.transport.ChannelHandlerAdapter; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.TemporaryFolder; | ||
|
||
import java.io.IOException; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.mockito.Mockito.mock; | ||
|
||
public class FileNetworkerTest { | ||
@Rule | ||
public TemporaryFolder folder = new TemporaryFolder(); | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
folder.create(); | ||
} | ||
|
||
@After | ||
public void tearDown() throws Exception { | ||
folder.delete(); | ||
} | ||
|
||
@Test | ||
public void testJoin() throws RemotingException, InterruptedException, IOException { | ||
final String groupURL = "file://" + folder.newFile(); | ||
|
||
FileNetworker networker = new FileNetworker(); | ||
Group group = networker.lookup(URL.valueOf(groupURL)); | ||
|
||
final CountDownLatch countDownLatch = new CountDownLatch(1); | ||
Peer peer1 = group.join(URL.valueOf("dubbo://0.0.0.0:" + NetUtils.getAvailablePort()), new ChannelHandlerAdapter() { | ||
@Override | ||
public void received(Channel channel, Object message) { | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
Peer peer2 = group.join(URL.valueOf("dubbo://0.0.0.0:" + NetUtils.getAvailablePort()), | ||
mock(ChannelHandlerAdapter.class)); | ||
|
||
while (true) { | ||
long count = countDownLatch.getCount(); | ||
if (count > 0) { | ||
break; | ||
} | ||
for (Channel channel : peer1.getChannels()) { | ||
channel.send(0, false); | ||
channel.send("hello world!"); | ||
} | ||
TimeUnit.MILLISECONDS.sleep(50); | ||
} | ||
|
||
|
||
peer2.close(); | ||
peer1.close(); | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
...oting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/MulticastNetworkerTest.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,70 @@ | ||
/* | ||
* 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.remoting.p2p.support; | ||
|
||
import org.apache.dubbo.common.utils.NetUtils; | ||
import org.apache.dubbo.remoting.Channel; | ||
import org.apache.dubbo.remoting.RemotingException; | ||
import org.apache.dubbo.remoting.p2p.Group; | ||
import org.apache.dubbo.remoting.p2p.Networkers; | ||
import org.apache.dubbo.remoting.p2p.Peer; | ||
import org.apache.dubbo.remoting.transport.ChannelHandlerAdapter; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.hamcrest.CoreMatchers.not; | ||
import static org.hamcrest.CoreMatchers.nullValue; | ||
import static org.junit.Assert.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
|
||
public class MulticastNetworkerTest { | ||
|
||
@Test | ||
public void testJoin() throws RemotingException, InterruptedException { | ||
final String groupURL = "multicast://224.5.6.7:1234"; | ||
final String peerURL = "dubbo://0.0.0.0:" + NetUtils.getAvailablePort(); | ||
|
||
final CountDownLatch countDownLatch = new CountDownLatch(1); | ||
Peer peer1 = Networkers.join(groupURL, peerURL, new ChannelHandlerAdapter() { | ||
@Override | ||
public void received(Channel channel, Object message) { | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
Peer peer2 = Networkers.join(groupURL, "dubbo://0.0.0.0:" + NetUtils.getAvailablePort(), | ||
mock(ChannelHandlerAdapter.class)); | ||
|
||
while (true) { | ||
long count = countDownLatch.getCount(); | ||
if (count > 0) { | ||
break; | ||
} | ||
for (Channel channel : peer1.getChannels()) { | ||
channel.send("hello world!"); | ||
} | ||
TimeUnit.MILLISECONDS.sleep(50); | ||
} | ||
|
||
Group lookup = Networkers.lookup(groupURL); | ||
assertThat(lookup, not(nullValue())); | ||
|
||
peer2.close(); | ||
peer1.close(); | ||
} | ||
} |
Oops, something went wrong.