-
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.
update cxf version and add test cases
- Loading branch information
Showing
6 changed files
with
239 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
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
43 changes: 43 additions & 0 deletions
43
...o-rpc-webservice/src/test/java/com/alibaba/dubbo/rpc/protocol/webservice/DemoService.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,43 @@ | ||
/* | ||
* 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.rpc.protocol.webservice; | ||
|
||
/** | ||
* <code>TestService</code> | ||
*/ | ||
|
||
public interface DemoService { | ||
void sayHello(String name); | ||
|
||
String echo(String text); | ||
|
||
long timestamp(); | ||
|
||
void throwTimeout(); | ||
|
||
String getThreadName(); | ||
|
||
int getSize(String[] strs); | ||
|
||
int getSize(Object[] os); | ||
|
||
Object invoke(String service, String method) throws Exception; | ||
|
||
int stringLength(String str); | ||
|
||
User create(int age, String name); | ||
} |
80 changes: 80 additions & 0 deletions
80
...c-webservice/src/test/java/com/alibaba/dubbo/rpc/protocol/webservice/DemoServiceImpl.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,80 @@ | ||
/* | ||
* 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.rpc.protocol.webservice; | ||
|
||
import com.alibaba.dubbo.rpc.RpcContext; | ||
|
||
/** | ||
* DemoServiceImpl | ||
*/ | ||
|
||
public class DemoServiceImpl implements DemoService { | ||
public DemoServiceImpl() { | ||
super(); | ||
} | ||
|
||
public void sayHello(String name) { | ||
System.out.println("hello " + name); | ||
} | ||
|
||
public String echo(String text) { | ||
return text; | ||
} | ||
|
||
public long timestamp() { | ||
return System.currentTimeMillis(); | ||
} | ||
|
||
public String getThreadName() { | ||
return Thread.currentThread().getName(); | ||
} | ||
|
||
public int getSize(String[] strs) { | ||
if (strs == null) | ||
return -1; | ||
return strs.length; | ||
} | ||
|
||
public int getSize(Object[] os) { | ||
if (os == null) | ||
return -1; | ||
return os.length; | ||
} | ||
|
||
public Object invoke(String service, String method) throws Exception { | ||
System.out.println("RpcContext.getContext().getRemoteHost()=" + RpcContext.getContext().getRemoteHost()); | ||
return service + ":" + method; | ||
} | ||
|
||
public User create(int age, String name){ | ||
User user = new User(); | ||
user.setAge(age); | ||
user.setName(name); | ||
return user; | ||
} | ||
|
||
public int stringLength(String str) { | ||
return str.length(); | ||
} | ||
|
||
public void throwTimeout() { | ||
try { | ||
Thread.sleep(6000); | ||
} catch (InterruptedException e) { | ||
} | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
...pc/dubbo-rpc-webservice/src/test/java/com/alibaba/dubbo/rpc/protocol/webservice/User.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,38 @@ | ||
/* | ||
* 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.rpc.protocol.webservice; | ||
|
||
public class User { | ||
private int age; | ||
private String name; | ||
|
||
public int getAge() { | ||
return age; | ||
} | ||
|
||
public void setAge(int age) { | ||
this.age = age; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
...rvice/src/test/java/com/alibaba/dubbo/rpc/protocol/webservice/WebserviceProtocolTest.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,71 @@ | ||
/* | ||
* 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.rpc.protocol.webservice; | ||
|
||
import com.alibaba.dubbo.common.URL; | ||
import com.alibaba.dubbo.common.extension.ExtensionLoader; | ||
import com.alibaba.dubbo.rpc.Protocol; | ||
import com.alibaba.dubbo.rpc.ProxyFactory; | ||
import com.alibaba.dubbo.rpc.service.EchoService; | ||
import org.junit.Test; | ||
|
||
import static junit.framework.Assert.assertEquals; | ||
|
||
/** | ||
* @author kimmking | ||
*/ | ||
|
||
public class WebserviceProtocolTest { | ||
private Protocol protocol = ExtensionLoader.getExtensionLoader(Protocol.class).getAdaptiveExtension(); | ||
private ProxyFactory proxy = ExtensionLoader.getExtensionLoader(ProxyFactory.class).getAdaptiveExtension(); | ||
|
||
@Test | ||
public void testDemoProtocol() throws Exception { | ||
DemoService service = new DemoServiceImpl(); | ||
protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("webservice://127.0.0.1:9019/" + DemoService.class.getName() + "?codec=exchange"))); | ||
service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("webservice://127.0.0.1:9019/" + DemoService.class.getName() + "?codec=exchange"))); | ||
assertEquals(service.getSize(new String[]{"", "", ""}), 3); | ||
} | ||
|
||
@Test | ||
public void testWebserviceProtocol() throws Exception { | ||
DemoService service = new DemoServiceImpl(); | ||
protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("webservice://127.0.0.1:9019/" + DemoService.class.getName()))); | ||
service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("webservice://127.0.0.1:9019/" + DemoService.class.getName()))); | ||
assertEquals(service.create(1,"kk").getName(), "kk"); | ||
assertEquals(service.getSize(null), -1); | ||
assertEquals(service.getSize(new String[]{"", "", ""}), 3); | ||
Object object = service.invoke("webservice://127.0.0.1:9019/" + DemoService.class.getName() + "", "invoke"); | ||
System.out.println(object); | ||
assertEquals("webservice://127.0.0.1:9019/com.alibaba.dubbo.rpc.protocol.webservice.DemoService:invoke", object); | ||
|
||
StringBuffer buf = new StringBuffer(); | ||
for (int i = 0; i < 1024 * 32 + 32; i++) | ||
buf.append('A'); | ||
assertEquals(32800,service.stringLength(buf.toString())); | ||
|
||
// a method start with $ is illegal in soap | ||
// // cast to EchoService | ||
// EchoService echo = proxy.getProxy(protocol.refer(EchoService.class, URL.valueOf("webservice://127.0.0.1:9010/" + DemoService.class.getName() + "?client=netty"))); | ||
// assertEquals(echo.echo(buf.toString()), buf.toString()); | ||
// assertEquals(echo.$echo("test"), "test"); | ||
// assertEquals(echo.$echo("abcdefg"), "abcdefg"); | ||
// assertEquals(echo.$echo(1234), 1234); | ||
} | ||
|
||
|
||
} |