diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-06 07:23:44 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-06 07:23:44 +0000 |
commit | 5b67e082ce57df77acc72cd36569a05c9a2fa347 (patch) | |
tree | 2aae54f73b2a9bbd5b8ad71f8e605e82f4595fc5 /branches/sca-java-1.5.1/vtest/assembly/component | |
parent | aafdaec972cfe3439c6fe15c599d46d3e5f13fa9 (diff) |
Branch for 1.5.1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@791397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
75 files changed, 4022 insertions, 0 deletions
diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/pom.xml b/branches/sca-java-1.5.1/vtest/assembly/component/pom.xml new file mode 100644 index 0000000000..718bda85e1 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/pom.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>vtest-assembly</artifactId> + <version>1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>vtest-assembly-component</artifactId> + + <name>Apache Tuscany SCA vTest SCA Assembly Verification Tests - Component</name> + + <dependencies> + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-host-embedded</artifactId> + <version>1.6-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-implementation-java-runtime</artifactId> + <version>1.6-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-binding-ws-axis2</artifactId> + <version>1.6-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-host-tomcat</artifactId> + <version>1.6-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + + </dependencies> + + +</project> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/AService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/AService.java new file mode 100644 index 0000000000..592020c180 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/AService.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * Simple Remotable Service + */ +public interface AService { + + public String getState(); + public String getBProperty(); + public String getB2Property(); + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/BService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/BService.java new file mode 100644 index 0000000000..0d95c8e4b8 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/BService.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * Simple Service + */ +public interface BService { + + public String getState(); + public String getSomeProperty(); + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java new file mode 100644 index 0000000000..c979c57f31 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java @@ -0,0 +1,28 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * + */ +public interface CService { + + public String getState(); + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/DService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/DService.java new file mode 100644 index 0000000000..f5832aa7ce --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/DService.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * simple service + */ +public interface DService { + + public String sayHello(); + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EEService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EEService.java new file mode 100644 index 0000000000..87de618ad3 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EEService.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * simple service + * + */ +public interface EEService { + + public String method1() ; + + public String method3() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EService.java new file mode 100644 index 0000000000..5d3bbb26c3 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/EService.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +/** + * simple service + * + */ +public interface EService { + + public String method1() ; + + public String method2() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/FService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/FService.java new file mode 100644 index 0000000000..65d97d0ab6 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/FService.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import org.osoa.sca.annotations.Remotable; + +/** + * + * + */ +@Remotable +public interface FService { + + public String sayHello() ; +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/HService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/HService.java new file mode 100644 index 0000000000..214e9c5737 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/HService.java @@ -0,0 +1,32 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import org.osoa.sca.annotations.Remotable; + +/** + * + * + */ +@Remotable +public interface HService { + + public String sayHelloWorld() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClient.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClient.java new file mode 100644 index 0000000000..17df0503d9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClient.java @@ -0,0 +1,32 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.callback; + +import org.osoa.sca.annotations.Remotable; + +/** + * + * + */ +@Remotable +public interface MyClient { + + public void callService() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClientImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClientImpl.java new file mode 100644 index 0000000000..b36f4f4d75 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyClientImpl.java @@ -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.tuscany.sca.vtest.assembly.component.callback; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClient.class) +public class MyClientImpl implements MyClient, MyServiceCallBack{ + + @Reference + private MyService myService ; + + String returnMessage ; + + private static Object monitor = new Object(); + + + public void callService() { + + if (myService == null) { + System.out.println("myService is null."); +// throw new Exception() ; + } else { + System.out.println("myService is not null."); + myService.dosomething() ; + } + + + int count = 0 ; + synchronized (monitor) { + while (returnMessage == null && count++ < 5) { + try { + monitor.wait(1000L); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } + } + + } + + public void receiveResult(String result) { + this.returnMessage = result ; + System.out.println("returnMessage = " + returnMessage); + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyService.java new file mode 100644 index 0000000000..7c9ad7a98e --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyService.java @@ -0,0 +1,36 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.callback; + +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Remotable; + +/** + * + * + */ +//@Callback(MyServiceCallBack.class) +@Remotable +@Callback(MyServiceCallBack.class) +public interface MyService { + +// @OneWay + public abstract void dosomething() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceCallBack.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceCallBack.java new file mode 100644 index 0000000000..78c59048ea --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceCallBack.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.callback; + +import org.osoa.sca.annotations.Remotable; + +/** + * + * + */ +@Remotable +public interface MyServiceCallBack { + + void receiveResult(String result); +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceImpl.java new file mode 100644 index 0000000000..07c321d8e4 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/callback/MyServiceImpl.java @@ -0,0 +1,67 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.callback; + +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyService.class) +public class MyServiceImpl implements MyService{ + +// @Context +// protected RequestContext requestContext; + +// @Callback MyServiceCallBack callback ; //we can't use this ! + @Callback protected MyServiceCallBack callback ; //this callback is ok + + public void dosomething() { + + try { + System.out.println("Recved request from client."); +// Thread.sleep(3000) ; +// if (requestContext != null) { +// System.out.println("requestContext is OK!"); +// } +// = requestContext.getCallback() ; + + + if (callback != null) { + System.out.println("callback is OK."); + callback.receiveResult("Message from Service side") ; + } else { + System.out.println("callback is NULL!"); + } + + + } catch (Exception e) { + e.printStackTrace() ; + } + + + + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.java new file mode 100644 index 0000000000..98f0291be3 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.java @@ -0,0 +1,51 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +import org.apache.tuscany.sca.vtest.assembly.component.AService; +import org.apache.tuscany.sca.vtest.assembly.component.BService; +import org.osoa.sca.annotations.Property; +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * service implementation of AService and BService + * + */ +@Service(interfaces={AService.class, BService.class}) +public class ABServiceImpl implements AService, BService{ + + public String getState() { + return "OK"; + } + + public String getBProperty() { + return ""; + } + + public String getB2Property() { + return ""; + } + + + public String getSomeProperty() { + return "SomeProperty"; + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/AServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/AServiceImpl.java new file mode 100644 index 0000000000..8c0d08d052 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/AServiceImpl.java @@ -0,0 +1,49 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +import org.apache.tuscany.sca.vtest.assembly.component.AService; +import org.apache.tuscany.sca.vtest.assembly.component.BService; +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +@Service(AService.class) +public class AServiceImpl implements AService { + + @Reference + protected BService b; + + @Reference + protected BService b2; + + public String getState() { + return b.getState(); + } + + public String getBProperty() { + return b.getSomeProperty(); + } + + public String getB2Property() { + return b2.getSomeProperty(); + } + +} + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/BServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/BServiceImpl.java new file mode 100644 index 0000000000..424e245fea --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/BServiceImpl.java @@ -0,0 +1,40 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +import org.apache.tuscany.sca.vtest.assembly.component.BService; +import org.osoa.sca.annotations.Property; +import org.osoa.sca.annotations.Service; + +@Service(BService.class) +public class BServiceImpl implements BService { + + @Property + protected String someProperty; + + public String getState() { + return "SomeStateFromB"; + } + + public String getSomeProperty() { + return someProperty; + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java new file mode 100644 index 0000000000..b2b420ed6a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +public class CServiceImpl { + + private String state = "Some State"; + + public String getState() { + return state; + } + +} + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.java new file mode 100644 index 0000000000..fce89b7bb9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +public class DServiceImpl { + + public String sayHello() { + return "hello"; + } + +} + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.java new file mode 100644 index 0000000000..4adb361ee5 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.java @@ -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 org.apache.tuscany.sca.vtest.assembly.component.impl; + +import org.apache.tuscany.sca.vtest.assembly.component.EService; +import org.osoa.sca.annotations.Service; + + +@Service(EService.class) +public class EServiceImpl { + + public String method1() { + + return "method1" ; + } + + public String method2() { + + return "method2" ; + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.java new file mode 100644 index 0000000000..2e83612497 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.impl; + +/** + * + * + */ +public class FServiceImpl { + + public String sayHello() { + return "hello" ; + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceA.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceA.java new file mode 100644 index 0000000000..d29eb41dfb --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceA.java @@ -0,0 +1,32 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +/** + * + * + */ +public interface ServiceA { + + String getServiceName() ; + + String getStrProperty() ; + + Object getObjProperty() ; +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceAImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceAImpl.java new file mode 100644 index 0000000000..dfd613d798 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceAImpl.java @@ -0,0 +1,51 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +import org.osoa.sca.annotations.Property; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(ServiceA.class) +public class ServiceAImpl implements ServiceA{ + + @Property + protected String strProperty ; + + @Property + protected Object objProperty ; + + + public String getServiceName() { + return "AService" ; + } + + public String getStrProperty() { + + return strProperty ; + } + + public Object getObjProperty() { + + return objProperty ; + } +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceB.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceB.java new file mode 100644 index 0000000000..d57894527d --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceB.java @@ -0,0 +1,32 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +import org.osoa.sca.annotations.Property; + +/** + * + * + */ +public interface ServiceB { + + Object getObjProperty() ; + String getStrProperty() ; + int getIntProperty() ; +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceBImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceBImpl.java new file mode 100644 index 0000000000..f202906d7c --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceBImpl.java @@ -0,0 +1,56 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +import org.osoa.sca.annotations.Property; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(ServiceB.class) +public class ServiceBImpl implements ServiceB{ + + @Property + protected Object objProperty ; + + @Property + protected String strProperty ; + +// @Property +// protected int intProperty ; + + public Object getObjProperty() { + return objProperty ; + } + + public String getStrProperty() { + + return strProperty ; + } + + public int getIntProperty() { + + return 100 ; +// return intProperty ; + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceC.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceC.java new file mode 100644 index 0000000000..1eefede818 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceC.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +/** + * + * + */ +public interface ServiceC { + + String getStrProperty() ; + Object getObjProperty() ; +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceCImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceCImpl.java new file mode 100644 index 0000000000..bfbc1848c2 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/property/ServiceCImpl.java @@ -0,0 +1,44 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.property; + +import org.osoa.sca.annotations.Property; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(ServiceC.class) +public class ServiceCImpl implements ServiceC{ + + @Property + protected String strProperty ; + + @Property(name="objProperty") + protected String objProperty ; + + public String getStrProperty() { + return strProperty ; + } + + public Object getObjProperty() { + return objProperty ; + } +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientA.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientA.java new file mode 100644 index 0000000000..85bd9bf22c --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientA.java @@ -0,0 +1,32 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyClientA { + + String callOtherServices() ; + + String callInvalidReference() ; + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientAImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientAImpl.java new file mode 100644 index 0000000000..a1948990a9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientAImpl.java @@ -0,0 +1,55 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClientA.class) +public class MyClientAImpl implements MyClientA{ + + @Reference + protected MyService b ; + + @Reference + protected MyService bService ; + + @Reference + protected MyService cService ; + + public String callOtherServices() { + + String s1 = b.doMyService() ; + String s2 = bService.doMyService() ; + return s1 + ":::" + s2 ; + } + + + public String callInvalidReference() { + + return cService.doMyService() ; + + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientB.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientB.java new file mode 100644 index 0000000000..286dcb26c9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientB.java @@ -0,0 +1,34 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyClientB { + + String callOtherServices() ; + +// String callZeroTargetReference() ; + + + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientBImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientBImpl.java new file mode 100644 index 0000000000..bc60a8253f --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientBImpl.java @@ -0,0 +1,68 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClientB.class) +public class MyClientBImpl implements MyClientB{ + + @Reference + protected MyService[] myservices1 ; + + @Reference + protected MyService[] myservices2 ; + + public String callOtherServices() { + + StringBuffer buf = new StringBuffer() ; + String str ; +// for (MyService s: bService) { + for (int i = 0 ; i < myservices1.length ; i ++) { + + buf.append(myservices1[i].doMyService()) ; + buf.append("_") ; +// System.out.println(s.doMyService()); + } + buf.append("_") ; + for (int i = 0 ; i < myservices2.length ; i ++) { + + buf.append(myservices2[i].doMyService()) ; + buf.append("_") ; +// System.out.println(s.doMyService()); + } + + str = buf.toString() ; + if (str.length() > 0) { + str = str.substring(0, str.length() -1) ; + } + System.out.println(str); + + return str ; +// return bService.doMyService() ; + + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientC.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientC.java new file mode 100644 index 0000000000..9ef398dcd0 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientC.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyClientC { + + String callOtherService() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientCImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientCImpl.java new file mode 100644 index 0000000000..67a2ca395c --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientCImpl.java @@ -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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClientC.class) +public class MyClientCImpl implements MyClientC { + + + @Reference + protected MyService service1 ; + + @Reference + protected MyService service2 ; + + + /** + * In this case , there is no target service defined for service1 and service2, + * so service1 and service2 should be null. + */ + public String callOtherService() { + + String str1 = null ; + String str2 = null ; + if (service1 == null) { + str1 = "MyService" ; + } + if (service2 == null) { + str2 = "MyService" ; + } +// String str1 = service1.doMyService() ; +// String str2 = service2.doMyService() ; + + return str1 + "_" + str2 ; + } +// +// public String callZeroTargetService_2() { +// +// String str1 = null ; +// String str2 = null ; +// if (service1 == null) { +// str1 = "MyService" ; +// } +// if (service2 == null) { +// str2 = "MyService" ; +// } +//// String str1 = service1.doMyService() ; +//// String str2 = service2.doMyService() ; +// +// return str1 + "_" + str2 ; +// } +// +// +// public String callOneTargetService() { +// +// String str1 = service1.doMyService() ; +// String str2 = service2.doMyService() ; +// +// return str1 + "_" + str2 ; +// +// } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientD.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientD.java new file mode 100644 index 0000000000..9afd505017 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientD.java @@ -0,0 +1,30 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyClientD { + + String callOtherService_1() ; + String callOtherService_2() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientDImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientDImpl.java new file mode 100644 index 0000000000..e1523ae587 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientDImpl.java @@ -0,0 +1,73 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClientD.class) +public class MyClientDImpl implements MyClientD { + + + @Reference + protected MyService service1 ; + + @Reference + protected MyService service2 ; + + @Reference + protected MyService service3 ; + + @Reference + protected MyService service4 ; + + /** + * In this case , there is no target service defined for service1 and service2, + * so service1 and service2 should be null. + */ + public String callOtherService_1() { + + String str1 = null ; + String str2 = null ; + if (service1 == null) { + str1 = "MyService" ; + } + if (service2 == null) { + str2 = "MyService" ; + } +// String str1 = service1.doMyService() ; +// String str2 = service2.doMyService() ; + + return str1 + "_" + str2 ; + } + + public String callOtherService_2() { + + String str1 = service3.doMyService() ; + String str2 = service4.doMyService() ; + + return str1 + "_" + str2 ; + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientE.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientE.java new file mode 100644 index 0000000000..78896eb607 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientE.java @@ -0,0 +1,30 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyClientE { + + String callOtherServices() ; + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientEImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientEImpl.java new file mode 100644 index 0000000000..199e975017 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyClientEImpl.java @@ -0,0 +1,67 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyClientE.class) +public class MyClientEImpl implements MyClientE { + + + @Reference + protected MyService[] myservices ; + + @Reference + protected MyService myservice ; + + + public String callOtherServices() { + + StringBuffer buf = new StringBuffer() ; + String str ; +// for (MyService s: bService) { + for (int i = 0 ; i < myservices.length ; i ++) { + + buf.append(myservices[i].doMyService()) ; + buf.append("_") ; +// System.out.println(s.doMyService()); + } + buf.append(myservice.doMyService()) ; + buf.append("_") ; + + str = buf.toString() ; + if (str.length() > 0) { + str = str.substring(0, str.length() -1) ; + } + + System.out.println(str); + + return str ; +// return bService.doMyService() ; + + } + + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyService.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyService.java new file mode 100644 index 0000000000..d1ca487168 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyService.java @@ -0,0 +1,29 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +/** + * + * + */ +public interface MyService { + + String doMyService() ; + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl.java new file mode 100644 index 0000000000..b6bb38500a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl.java @@ -0,0 +1,34 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyService.class) +public class MyServiceImpl implements MyService{ + + public String doMyService() { + + return "MyService" ; + } +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl2.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl2.java new file mode 100644 index 0000000000..d3e5881f0a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/reference/MyServiceImpl2.java @@ -0,0 +1,34 @@ +/* + * 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.tuscany.sca.vtest.assembly.component.reference; + +import org.osoa.sca.annotations.Service; + +/** + * + * + */ +@Service(MyService.class) +public class MyServiceImpl2 implements MyService{ + + public String doMyService() { + + return "MyService2" ; + } +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite new file mode 100644 index 0000000000..d113ba26c3 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + name="binding-resolution" targetNamespace="assembly-tests"> + + <component name="FComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.FServiceImpl"/> + + <service name="FService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + </service> + + <service name="FService2"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + + </service> + + <service name="FService3"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService3"/> + </service> + + + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite new file mode 100644 index 0000000000..29dc96098e --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-callback-bindings"> + + <component name="MyServiceClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.callback.MyClientImpl"/> + <reference name="myService" target="MyServiceImplComponent/MyService"> + + <callback> + <binding.sca/> + <binding.jms/> + <binding.ws uri="http://localhost:8087/MyService"/> + <binding.ws uri="http://localhost:8088/MyService"/> + </callback> + + </reference> + + </component> + + <component name="MyServiceImplComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.callback.MyServiceImpl"/> + + <service name="MyService"> + <!--<interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.callback.MyService"/>--> + <callback> + <binding.sca/> + <binding.jms/> + <binding.ws uri="http://localhost:8087/MyService"/> + </callback> + </service> + + </component> + + + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite new file mode 100644 index 0000000000..bb452feac9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + <reference name="b" target="BComponent"/> + <reference name="b2" target="B2Component"/> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite new file mode 100644 index 0000000000..0886c94a90 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceAImpl"/> + + <property name="strProperty">value1</property> + <property name="strProperty">value2</property> + + + </component> + + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite new file mode 100644 index 0000000000..5e975e5105 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceAImpl"/> + + <property name="strProperty">I am a string</property> + <property name="objProperty">I am a object</property> + + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceBImpl"/> + <property name="strProperty" type="xsd:string"> + <value>I am a string</value> + </property> + <!-- + <property name="intProperty" value="100" type="xsd:int"/> + --> + + <property name="objProperty" value="I am a object"/> + + </component> + + + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite new file mode 100644 index 0000000000..42d7234a1c --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns="http://www.example.com/Customer" targetNamespace="http://www.example.com/Customer"> + + <xsd:element name="customer" type="Customer"/> + <xsd:complexType name="Customer"> + <xsd:sequence> + <xsd:element name="firstName" type="xsd:string"/> + <xsd:element name="middleName" type="xsd:string"/> + <xsd:element name="lastName" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:schema> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceCImpl"/> + <!-- + <property name="customerInfo" xsi:type="Customer"> + + <firstName>Ku</firstName> + <middleName>Jun</middleName> + <lastName>Guo</lastName> + + </property> + --> + + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite new file mode 100644 index 0000000000..c6b0d2f245 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceCImpl"/> + + <property name="strProperty"> + I am a string + </property> + <property name="objectProperty"> + I am an object + </property> + + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite new file mode 100644 index 0000000000..3019542091 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-non-unique-name--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + </component> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite new file mode 100644 index 0000000000..0f859f908f --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="ABComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.ABServiceImpl"/> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite new file mode 100644 index 0000000000..00f3d00a2d --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> + +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + + <component name="CDComponent"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + </service> + + + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + + + + + </component> + +</composite>
\ No newline at end of file diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite new file mode 100644 index 0000000000..b4d2abc011 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="EEComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.EServiceImpl"/> + + + <service name="EEService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.EEService"/> + + </service> + + + + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite new file mode 100644 index 0000000000..3f57e56cf5 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="DComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.DServiceImpl"/> + + <service name="DService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + <service name="DService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType new file mode 100644 index 0000000000..7cc63afee1 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + + <service name="AService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.AService"/> + </service> + + <service name="AService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.BService"/> + </service> + + +</componentType>
\ No newline at end of file diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType new file mode 100644 index 0000000000..899f84b2dd --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.DServiceImpl"/> + + <service name="DService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + </service> + + + + +</componentType>
\ No newline at end of file diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType new file mode 100644 index 0000000000..86a7be9cc0 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.EServiceImpl"/> + + <service name="EEService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.EService"/> + </service> + + + + +</componentType>
\ No newline at end of file diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType new file mode 100644 index 0000000000..09cf5881a2 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.FServiceImpl"/> + + <service name="FService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService1"/> + </service> + + <service name="FService2"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + + </service> + + <service name="FService3"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService4"/> + </service> + + + +</componentType>
\ No newline at end of file diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite new file mode 100644 index 0000000000..396aa0557c --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientBImpl"/> + + <service name="MyClientB"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientB"/> + </service> + + <reference name="myservices1" target="ServiceComponent1/MyService ServiceComponent2/MyService" + multiplicity="1..1"> + </reference> + + <reference name="myservices2" target="ServiceComponent1/MyService ServiceComponent2/MyService" + multiplicity="0..1"> + </reference> + + </component> + + + + <component name="ServiceComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + <component name="ServiceComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl2"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite new file mode 100644 index 0000000000..7cf1d0b2e8 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientEImpl"/> + + <service name="MyClientE"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientE"/> + </service> + + <reference name="myservices" multiplicity="0..n" target="ServiceComponent/MyService ServiceComponent2/MyService"> + </reference> + + <reference name="myservice" multiplicity="1..n" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + <component name="ServiceComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl2"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite new file mode 100644 index 0000000000..eb4c820ca0 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientDImpl"/> + + <service name="MyClientD"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientD"/> + </service> + + <reference name="service1" multiplicity="1..n"> + </reference> + + <reference name="service2" multiplicity="1..1"> + </reference> + + <reference name="service3" multiplicity="1..n" target="ServiceComponent/MyService"> + </reference> + + <reference name="service4" multiplicity="1..1" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite new file mode 100644 index 0000000000..0895f2b7ce --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientCImpl"/> + + <service name="MyClientC"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientC"/> + </service> + + <reference name="service1" multiplicity="0..1"> + </reference> + + <reference name="service2" multiplicity="0..n"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite new file mode 100644 index 0000000000..e5e492f34b --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService" wiredByImpl="true"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + + </component> + + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + + + + + + + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite new file mode 100644 index 0000000000..9544c947d1 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite new file mode 100644 index 0000000000..e7445c4a2a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite new file mode 100644 index 0000000000..bf39310764 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + + <component name="ClientComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite new file mode 100644 index 0000000000..e2ef1947e8 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<!--to test the reference name matched with implementation--> + +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite new file mode 100644 index 0000000000..5ef8367193 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * 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. +--> +<!--to test the reference name not matched with implementation--> + +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="bb" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite new file mode 100644 index 0000000000..9460f5a2e1 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + <reference name="b" target="BComponent"/> + <reference name="b2" target="B2Component"/> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + <service name="BService"/> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite new file mode 100644 index 0000000000..085d84f40e --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithbinding-Composite"> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + <binding.sca/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite new file mode 100644 index 0000000000..cc915fbde5 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + </service> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite new file mode 100644 index 0000000000..9465cedaf9 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-zero-components-Composite"> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite new file mode 100644 index 0000000000..8629f3817a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-zeroimplelements-Composite"> + + <component name="AComponent"> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java new file mode 100644 index 0000000000..69b7377986 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java @@ -0,0 +1,363 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.net.URL; +import java.net.URLConnection; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.callback.MyClient; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Test; +import org.junit.Ignore; +import org.osoa.sca.ServiceRuntimeException; + +/** + * Test the basic functionalities of the component + * + */ +public class ComponentBasicTestCase { + + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * Lines 92-96: + * <p> + * Components are configured instances of implementations. Components + * provide and consume services. More than one component can use and + * configure the same implementation, where each component configures the + * implementation differently. + */ + @Test + public void components1() throws Exception { + initDomain("component.composite"); + AService service = ServiceFinder.getService(AService.class, "AComponent/AService"); + Assert.assertEquals("some b component value", service.getBProperty()); + Assert.assertEquals("some b2 component value", service.getB2Property()); + cleanupDomain(); + } + + /** + * Lines 96-97: + * <p> + * There can be zero or more component elements within a composite. + */ + @Test + public void components2() throws Exception { + initDomain("zerocomponents.composite"); + cleanupDomain(); + } + + /** + * Lines 142-143: + * <p> + * name (required) ?the name of the component. The name must be unique + * across all the components in the composite. + */ + @Test(expected = ServiceRuntimeException.class) + //@Ignore("TUSCANY-2455") + public void components3() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + } + + /** + * Lines 154-158: + * <p> + * A component element has zero or one implementation element as its child, + * which points to the implementation used by the component. A component + * with no implementation element is not runnable, but components of this + * kind may be useful during a "top-down" development process as a means of + * defining the characteristics required of the implementation before the + * implementation is written. + */ + @Test + public void components4() throws Exception { + initDomain("zeroimplelements.composite"); + cleanupDomain(); + } + + /** + * Lines 159-160: + * <p> + * The component element can have zero or more service elements as children + * which are used to configure the services of the component. + */ + @Test + public void components5() throws Exception { + initDomain("serviceelement.composite"); + cleanupDomain(); + } + + /** + * Lines 174-179: + * <p> + * A service has zero or one interface, which describes the operations + * provided by the service. The interface is described by an interface + * element which is a child element of the service element. If no interface + * is specified, then the interface specified for the service by the + * implementation is in effect. If an interface is specified it must provide + * a compatible subset of the interface provided by the implementation, i.e. + * provide a subset of the operations defined by the implementation for the + * service. + */ + @Test + public void components6() throws Exception { + initDomain("servicewithinterface.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 180-182: + * <p> + * A service element has one or more binding elements as children. If no + * bindings are specified, then the bindings specified for the service by + * the implementation are in effect. If bindings are specified, then those + * bindings override the bindings specified by the implementation. + */ + @Test + public void components7() throws Exception { + initDomain("servicewithbinding.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 142-143: + * <p> + * OSOA: + * the name of the component. The name must be unique across all the + * components in the composite. + * <p> + * ASM50001 + * <p> + * OASIS: + * the name of the component. The name must be unique across all + * the components in the composite. + * + */ + @Test(expected=ServiceRuntimeException.class) + public void testComponentnameUnique() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + + } + + /** + * Lines 1498-1499: + * <p> + * OSOA: + * the name of the service, the name MUST BE unique across all the + * composite services in the composite + * <p> + * ASM50002 + * <p> + * OASIS: + * The @name attribute of a service element of a <component/> MUST be unique amongst + * the service elements of that <component/> + * + */ + @Test(expected=ServiceRuntimeException.class) + public void testServicenameUnique() throws Exception { + initDomain("nonuniqueservicenameincomposite.composite"); + DService service = ServiceFinder.getService(DService.class, "CDComponent/CServiceImpl"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * <p> + * Not mentioned in OSOA + * <p> + * ASM50003 + * <p> + * OASIS + * The @name attribute of a service element of a <component/> MUST match the + * @name attribute of a service element of the componentType of the + * <implementation/> child element of the component. + * <p> + * For the service name, OSOA says(1598-1500): + * name (required) - the name of the service, the name MUST BE unique across all the + * composite services in the composite. The name of the composite service can be different + * from the name of the promoted component service. + */ + @Test(expected=ServiceRuntimeException.class) + public void testServicenameNotmatch() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService1"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * <p> + * Not mentioned in OSOA + * <p> + * ASM50003 + * <p> + * OASIS + * The @name attribute of a service element of a <component/> MUST match the + * @name attribute of a service element of the componentType of the + * <implementation/> child element of the component. + * + */ + public void testServicenameMatch() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + + /** + * Lines 177-178: + * <p> + * OSOA: + * If an interface is specified it must provide a compatible subset of the + * interface provided by the implementation + * <p> + * ASM50004 + * <p> + * OASIS: + * If a <service/> element has an interface subelement specified, the interface MUST + * provide a compatible subset of the interface declared on the componentType of the + * implementation. + */ + @Test(expected=ServiceRuntimeException.class) + public void testInterfaceCompatible() throws Exception { + //for this case, if you remove the method3() in the EEService + //the EEService will be a compatible subset of EService. + initDomain("notcompatibleinterface.composite"); + EEService service = ServiceFinder.getService(EEService.class, "EEComponent/EEService"); + Assert.assertEquals("method1", service.method1()); + cleanupDomain(); + } + + /** + * This method helps to check if the binding.ws is working. + * if the http response contains the "wsdl:definitions", + * we can regard it as a wsdl message, then the wsdlURL is valid. + * @param wsdlURL + * @return + */ + private boolean isValidWebService(String wsdlURL) { + + try { + URL url = new URL(wsdlURL) ; + URLConnection conn = url.openConnection() ; + BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream())) ; + String lineStr ; + while ((lineStr = reader.readLine()) != null) { + if (lineStr.indexOf("wsdl:definitions") != -1 ) { + return true ; + } + } + + } catch (Exception e) { + e.printStackTrace() ; + } + + return false ; + } + + /** + * <p> + * No matched OSOA statements found + * <p> + * ASM50005 + * <p> + * OASIS: + * If no binding elements are specified for the service, then the bindings specified for + * the equivalent service in the componentType of the implementation MUST be used, + * but if the componentType also has no bindings specified, then <binding.sca/> + * MUST be used as the binding. If binding elements are specified for the service, then + * those bindings MUST be used and they override any bindings specified for the + * equivalent service in the componentType of the implementation. + */ + @Test + // @Ignore("broken, see TUSCANY-2946") + public void testServiceBinding() throws Exception { + + initDomain("binding_resolution.composite"); + + FService service ; + //test no binding in component + service = ServiceFinder.getService(FService.class, "FComponent/FService1"); + Assert.assertEquals("hello", service.sayHello()); + Assert.assertEquals(true , isValidWebService("http://localhost:8085/FService1?wsdl")) ; + //test no binding in componentType + service = ServiceFinder.getService(FService.class, "FComponent/FService2"); + Assert.assertEquals("hello", service.sayHello()); + //test binding overriding + service = ServiceFinder.getService(FService.class, "FComponent/FService3"); + Assert.assertEquals("hello", service.sayHello()); + Assert.assertEquals(true , isValidWebService("http://localhost:8085/FService3?wsdl")) ; + + cleanupDomain(); + } + + /** + * Line 1526-1529: + * <P> + * OSOA: + * A service element has an optional callback element used if the interface + * has a callback defined, which has one or more binding elements as children. + * The callback and its binding child elements are specified if there is a need + * to have binding details used to handle callbacks. If the callback element is not present, + * the behaviour is runtime implementation dependent. + * <p> + * ASM50006 + * <p> + * If the callback element is present and contains one or more binding + * child elements,then those bindings MUST be used for the callback. + * + */ + @Test + public void testCallbackBindings() throws Exception{ + + initDomain("callback_bindings.composite"); + MyClient client = ServiceFinder.getService(MyClient.class, "MyServiceClientComponent/MyClient"); + client.callService() ; + + cleanupDomain(); + } + + + + + + + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java new file mode 100644 index 0000000000..6cf8b49e4f --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java @@ -0,0 +1,166 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceA; +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceB; +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceC; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; + +/** + * This test case covers the main functionalities of component property. + * + */ +public class ComponentPropertyTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * + * <p> + * OSOA + * The property has no @value attribute now. + * <p> + * ASM50027 + * <p> + * OASIS: + * If the @value attribute of a component property element is declared, the type of the + * property MUST be an XML Schema simple type and the @value attribute MUST + * contain a single value of that type + */ + @Test + @Ignore("It will be implemented in SCA 2.x codebase") + public void testValueAttibuteValid_1() { + + initDomain("component_property_1.composite"); + ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ; + Assert.assertEquals("I am a string" ,service.getStrProperty()) ; + Assert.assertEquals("I am a object" ,service.getObjProperty()) ; + cleanupDomain(); + + } + + /** + * <p> + * OSOA + * The property has no @value attribute now. + * <p> + * ASM50027 + * <p> + * OASIS: + * If the @value attribute of a component property element is declared, the type of the + * property MUST be an XML Schema simple type and the @value attribute MUST + * contain a single value of that type + */ + @Test + @Ignore("It will be implemented in SCA 2.x codebase") + public void testValueAttibuteValid_2() { + + initDomain("component_property_1.composite"); + ServiceB service = ServiceFinder.getService(ServiceB.class , "BComponent/ServiceB") ; +// Assert.assertEquals("I am a object" ,service.getObjProperty()) ; + //It will fail to get the value from composite file, so it will be an empty string + System.out.println("::::" + service.getStrProperty()); +// System.out.println("::::" + service.getIntProperty()); +// Assert.assertEquals("I am a string" ,service.getStrProperty()) ; + + Assert.assertEquals("" ,service.getObjProperty()) ; + cleanupDomain(); + + } + + /** + * <p> + * OSOA + * Not mentioned in OSOA + * <p> + * ASM50030 + * <p> + * OASIS: + * A <component/> element MUST NOT contain two <property/> subelements with the + * same value of the @name attribute + */ + @Test + @Ignore("TUSCANY-2863") + public void testDuplicateProperty() { + + initDomain("component_duplicate_property.composite"); + ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ; +// System.out.println(service.getStrProperty()) ; + Assert.assertEquals("value1", service.getStrProperty()) ; + cleanupDomain(); + + } + + /** + * <p> + * OSOA + * No corresponding statements in OSOA. + * <p> + * ASM50031 + * <p> + * OASIS: + * The name attribute of a component property MUST match the name of a property + * element in the component type of the component implementation. + */ + @Test + public void testPropertyNameMatched() { + + initDomain("component_property_3.composite"); + ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ; + Assert.assertEquals("I am a string" , service.getStrProperty()) ; + cleanupDomain(); + + } + + /** + * <p> + * OSOA + * No corresponding statements in OSOA. + * <p> + * ASM50031 + * <p> + * OASIS: + * The name attribute of a component property MUST match the name of a property + * element in the component type of the component implementation. + */ + @Test + public void testPropertyNameNotMatched() { + + initDomain("component_property_3.composite"); + ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ; + Assert.assertNull(service.getObjProperty()) ; + cleanupDomain(); + + } + + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java new file mode 100644 index 0000000000..d62d10965a --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java @@ -0,0 +1,259 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientB; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientC; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientD; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientE; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; +import org.osoa.sca.ServiceRuntimeException; + +/** + * Test the reference name, wire, wireByImpl, autowire and so on. + * + */ +public class ComponentReferenceTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * Line 1325-1326: + * <p> + * OSOA: + * the name of the reference. The name must be unique across all the + * composite references in the composite. + * <p> + * ASM50007 + * <p> + * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * The @name attribute of a reference element of a <component/> MUST be unique amongst the + * reference elements of that <component/> + */ + @Test + public void testReferenceNameUnique() { + + initDomain("referencename_1.composite"); + + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent1/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + + cleanupDomain(); + } + + /** + * Line 1325-1326: + * <p> + * OSOA: + * the name of the reference. The name must be unique across all the + * composite references in the composite. + * <p> + * ASM50007 + * <p> + * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * The @name attribute of a reference element of a <component/> MUST be unique amongst the + * reference elements of that <component/> + */ + @Test + public void testReferenceNameDuplicated() { + //for this case, the reference of "b" in MyClientImpl is null. + try { + initDomain("referencename_2.composite"); + } catch (ServiceRuntimeException ex){ + Assert.assertEquals("Duplicate component reference name: Component = ClientComponent2 Reference = b", ex.getMessage()); + return; + } + Assert.fail(); + cleanupDomain(); + } + + /** + * Line 192-193: + * <p> + * OSOA: + * the name of the reference. Has to match a name of a reference + * defined by the implementation. + * <p> + * ASM50008 + * <p> + * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * + */ + @Test + public void testComponentReferenceNameMatched() { + initDomain("referencename_3.composite"); + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent1/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + cleanupDomain(); + } + + /** + * Line 192-193: + * <p> + * OSOA: + * the name of the reference. Has to match a name of a reference + * defined by the implementation. + * <p> + * ASM50008 + * <p> + * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * + */ + @Test + public void testComponentReferenceNameValid() { + + try { + initDomain("referencename_4.composite"); + } catch (ServiceRuntimeException ex){ + Assert.assertEquals("Reference not found for component reference: Component = ClientComponent1 Reference = bb", ex.getMessage()); + return; + } + + Assert.fail(); + cleanupDomain(); + + } + + /** + * + * <p> + * ASM50010 + * <p> + * OASIS: + * If @wiredByImpl="true" is set for a reference, then the reference MUST NOT be + * wired statically within a composite, but left unwired + */ + @Test + @Ignore("Not implemented in SCA 1.x codebase.") + public void testWiredByImpl() { + initDomain("reference_wiredbyimpl.composite"); + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + cleanupDomain(); + } + + + /** + * Line 208: + * <p> + * OSOA: + * zero or one wire can have the reference as a source + * <p> + * ASM50018 + * <p> + * OASIS + * A reference with multiplicity 0..1 or 0..n MAY have no target + * service defined. + * + */ + @Test + public void testMultiplicity_1() { + + initDomain("reference_multiplicity_zerotarget.composite"); + MyClientC service = ServiceFinder.getService(MyClientC.class, "ClientComponent/MyClientC"); + Assert.assertEquals("MyService_MyService" , service.callOtherService()) ; + cleanupDomain(); + } + + /** + * Line 208: + * OSOA: + * zero or one wire can have the reference as a source + * <p> + * ASM50019 + * <p> + * OASIS: + * A reference with multiplicity 0..1 or 1..1 MUST NOT have more than one target service + * defined. + */ + @Test + @Ignore("TUSCANY-2720") + public void testMultiplicity_2() { + + initDomain("reference_multiplicity_moretargets.composite"); + MyClientB service = ServiceFinder.getService(MyClientB.class, "ClientComponent/MyClientB"); + Assert.assertEquals("MyService_MyService2_MyService_MyService2" , service.callOtherServices()) ; + cleanupDomain(); + } + + /** + * Line 207,209 + * <p> + * OSOA: + * 1..1 – one wire can have the reference as a source + * 1..n – one or more wires can have the reference as a source + * <p> + * ASM50020 + * <p> + * OASIS: + * A reference with multiplicity 1..1 or 1..n MUST have at least one target + * service defined. + */ + @Test + public void testMultiplicity_3() { + + initDomain("reference_multiplicity_ntargets.composite"); + MyClientD service = ServiceFinder.getService(MyClientD.class, "ClientComponent/MyClientD"); + Assert.assertEquals("MyService_MyService" , service.callOtherService_1()) ; + Assert.assertEquals("MyService_MyService" , service.callOtherService_2()) ; + + cleanupDomain(); + } + + /** + * Line 209-210 + * <p> + * OSOA + * 1..n – one or more wires can have the reference as a source + * 0..n - zero or more wires can have the reference as a source + * <p> + * ASM50020 + * <p> + * OASIS: + * A reference with multiplicity 0..n or 1..n MAY have one or more + * target services defined. + */ + @Test + public void testMultiplicity_4() { + + initDomain("reference_multiplicity_multitargets.composite"); + MyClientE service = ServiceFinder.getService(MyClientE.class, "ClientComponent/MyClientE"); + Assert.assertEquals("MyService_MyService2_MyService" , service.callOtherServices()) ; + + cleanupDomain(); + } + +} diff --git a/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java new file mode 100644 index 0000000000..2d245d10a8 --- /dev/null +++ b/branches/sca-java-1.5.1/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java @@ -0,0 +1,230 @@ +/* + * 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.tuscany.sca.vtest.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; +import org.osoa.sca.ServiceRuntimeException; + +/** + * + */ +public class ComponentTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + + + /** + * Lines 92-96: + * <p> + * Components are configured instances of implementations. Components + * provide and consume services. More than one component can use and + * configure the same implementation, where each component configures the + * implementation differently. + */ + @Test + public void components1() throws Exception { + initDomain("component.composite"); + AService service = ServiceFinder.getService(AService.class, "AComponent/AService"); + Assert.assertEquals("some b component value", service.getBProperty()); + Assert.assertEquals("some b2 component value", service.getB2Property()); + cleanupDomain(); + } + + /** + * Lines 96-97: + * <p> + * There can be zero or more component elements within a composite. + */ + @Test + public void components2() throws Exception { + initDomain("zerocomponents.composite"); + cleanupDomain(); + } + + /** + * Lines 142-143: + * <p> + * name (required) ?the name of the component. The name must be unique + * across all the components in the composite. + */ + @Test(expected = ServiceRuntimeException.class) + //@Ignore("TUSCANY-2455") + public void components3() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + } + + /** + * Lines 154-158: + * <p> + * A component element has zero or one implementation element as its child, + * which points to the implementation used by the component. A component + * with no implementation element is not runnable, but components of this + * kind may be useful during a "top-down" development process as a means of + * defining the characteristics required of the implementation before the + * implementation is written. + */ + @Test + public void components4() throws Exception { + initDomain("zeroimplelements.composite"); + cleanupDomain(); + } + + /** + * Lines 159-160: + * <p> + * The component element can have zero or more service elements as children + * which are used to configure the services of the component. + */ + @Test + public void components5() throws Exception { + initDomain("serviceelement.composite"); + cleanupDomain(); + } + + /** + * Lines 174-179: + * <p> + * A service has zero or one interface, which describes the operations + * provided by the service. The interface is described by an interface + * element which is a child element of the service element. If no interface + * is specified, then the interface specified for the service by the + * implementation is in effect. If an interface is specified it must provide + * a compatible subset of the interface provided by the implementation, i.e. + * provide a subset of the operations defined by the implementation for the + * service. + */ + @Test + public void components6() throws Exception { + initDomain("servicewithinterface.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 180-182: + * <p> + * A service element has one or more binding elements as children. If no + * bindings are specified, then the bindings specified for the service by + * the implementation are in effect. If bindings are specified, then those + * bindings override the bindings specified by the implementation. + */ + @Test + public void components7() throws Exception { + initDomain("servicewithbinding.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 599-601: + * <p> + * ASM50001 + * <p> + * The @name attribute of a <service/> child element of a <componentType/> MUST + * be unique amongst the service elements of that <componentType/> + * + */ + @Test(expected=ServiceRuntimeException.class) + @Ignore("TUSCANY-2675") + public void ASM50001() throws Exception { + initDomain("nonuniqueservicenameincomponenttype.composite"); + AService service = ServiceFinder.getService(AService.class, "ABComponent/AService"); + Assert.assertEquals("OK", service.getState()); + cleanupDomain(); + } + + /** + * Lines 695-697: + * <p> + * ASM50002 + * <p> + * The @name attribute of a service element of a <component/> MUST be unique amongst + * the service elements of that <component/> + * + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50002() throws Exception { + initDomain("nonuniqueservicenameincomposite.composite"); + DService service = ServiceFinder.getService(DService.class, "CDComponent/CServiceImpl"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * Lines 697-699: + * <p> + * ASM50003 + * <p> + * OSOA + * The @name attribute of a service element of a <component/> MUST match the + * @name attribute of a service element of the componentType of the <implementation/> child element of the component. + * <p> + * OASIS + * the name of the service has to match a name of a service defined by the implementation + * + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50003() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService1"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * Lines 709-715: + * <p> + * ASM50004 + * <p> + * If a <service/> element has an interface subelement specified, the interface MUST + * provide a compatible subset of the interface declared on the componentType of the + * implementation. + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50004() throws Exception { + //for this case, if you remove the method3() in the EEService + //the EEService will be a compatible subset of EService. + initDomain("notcompatibleinterface.composite"); + EEService service = ServiceFinder.getService(EEService.class, "EEComponent/EEService"); + Assert.assertEquals("method1", service.method1()); + cleanupDomain(); + } + + + + +} |