@@ -73,6 +73,7 @@ public static void beforeClass() throws InterruptedException {
73
73
.setProtocol ("tri" )
74
74
.setDirectUrl ("triple://127.0.0.1:50066" );
75
75
helloServiceRef = consumerConfig .refer ();
76
+ Thread .sleep (5000 );
76
77
}
77
78
78
79
@ AfterClass
@@ -84,6 +85,39 @@ public static void afterClass() {
84
85
RpcInvokeContext .removeContext ();
85
86
}
86
87
88
+ @ Test
89
+ public void testTripleParentCall () throws InterruptedException {
90
+ ClientRequest clientRequest = new ClientRequest ("hello world" , 5 );
91
+ ServerResponse serverResponse = helloServiceRef .sayHello (clientRequest );
92
+ Assert .assertEquals ("hello world" , serverResponse .getMsg ());
93
+
94
+ CountDownLatch countDownLatch = new CountDownLatch (6 );
95
+ AtomicBoolean receivedFinish = new AtomicBoolean (false );
96
+ List <ServerResponse > list = new ArrayList <>();
97
+ helloServiceRef .parentSayHelloServerStream (clientRequest , new SofaStreamObserver <ServerResponse >() {
98
+ @ Override
99
+ public void onNext (ServerResponse message ) {
100
+ list .add (message );
101
+ countDownLatch .countDown ();
102
+ }
103
+
104
+ @ Override
105
+ public void onCompleted () {
106
+ receivedFinish .set (true );
107
+ countDownLatch .countDown ();
108
+ }
109
+
110
+ @ Override
111
+ public void onError (Throwable throwable ) {
112
+ countDownLatch .countDown ();
113
+ }
114
+ });
115
+
116
+ Assert .assertTrue (countDownLatch .await (20 , TimeUnit .SECONDS ));
117
+ Assert .assertEquals (5 , list .size ());
118
+ Assert .assertTrue (receivedFinish .get ());
119
+ }
120
+
87
121
@ Test
88
122
public void testTripleBiStreamFinish () throws InterruptedException {
89
123
testTripleBiStream (false );
0 commit comments