Author: enolan
Date: Tue May 19 16:49:00 2009
New Revision: 776382
URL: http://svn.apache.org/viewvc?rev=776382&view=rev
Log:
SMXCOMP-519 - Add new junit tests for the packaging package
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java
(with props)
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java
(with props)
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java
(with props)
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml
(with props)
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/lib/
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/lib/classpath.zip
(with props)
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml
(with props)
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java?rev=776382&view=auto
==============================================================================
---
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java
(added)
+++
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java
Tue May 19 16:49:00 2009
@@ -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.servicemix.common.packaging;
+
+import javax.jbi.messaging.MessageExchange.Role;
+import javax.jbi.messaging.MessageExchange;
+import javax.xml.namespace.QName;
+
+import org.apache.servicemix.common.endpoints.ConsumerEndpoint;
+
+public class ConsumerBeanEndpoint extends ConsumerEndpoint {
+
+ public void process(MessageExchange exchange) throws Exception {
+ }
+
+ public String getLocationURI() {
+ return null;
+ }
+
+}
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ConsumerBeanEndpoint.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java?rev=776382&view=auto
==============================================================================
---
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java
(added)
+++
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java
Tue May 19 16:49:00 2009
@@ -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.servicemix.common.packaging;
+
+import javax.jbi.messaging.MessageExchange.Role;
+import javax.jbi.messaging.MessageExchange;
+import javax.xml.namespace.QName;
+
+import org.apache.servicemix.common.endpoints.ProviderEndpoint;
+
+public class ProviderBeanEndpoint extends ProviderEndpoint {
+
+ public void process(MessageExchange exchange) throws Exception {
+ }
+
+}
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ProviderBeanEndpoint.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java?rev=776382&view=auto
==============================================================================
---
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java
(added)
+++
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java
Tue May 19 16:49:00 2009
@@ -0,0 +1,178 @@
+/*
+ * 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.servicemix.common.packaging;
+
+import java.io.File;
+import java.net.URL;
+import java.util.Iterator;
+import java.util.List;
+import java.util.ArrayList;
+
+import javax.jbi.messaging.MessageExchange;
+import javax.xml.namespace.QName;
+
+import org.apache.servicemix.common.DefaultComponent;
+import org.apache.servicemix.common.Endpoint;
+import org.apache.servicemix.common.packaging.Consumes;
+import org.apache.servicemix.common.ServiceMixComponent;
+import org.apache.servicemix.common.ServiceUnit;
+import org.apache.servicemix.common.xbean.AbstractXBeanDeployer;
+import org.apache.servicemix.common.xbean.AbstractXBeanServiceUnitAnalyzer;
+
+import junit.framework.TestCase;
+
+public class ServiceUnitAnalyzerTest extends TestCase {
+
+ // Test to Analyze a Service Unit
+ public void testAnalyze() throws Exception {
+ MyDeployer deployer = new MyDeployer(new MyComponent() { });
+ ServiceUnit su = deployer.deploy("xbean-cp",
getServiceUnitPath("org/apache/servicemix/common/packaging/consumes"));
+ assertNotNull(su);
+ ClassLoader cl = su.getConfigurationClassLoader();
+ assertNotNull(cl);
+ Iterator<Endpoint> iter = su.getEndpoints().iterator();
+ MyServiceUnitAnalyzer myServiceUnitAnalyzer = new
MyServiceUnitAnalyzer();
+
myServiceUnitAnalyzer.init(getServiceUnitPath("org/apache/servicemix/common/packaging/consumes"));
+ while (iter.hasNext()) {
+ Endpoint endpoint = (Endpoint)iter.next();
+ if (endpoint instanceof ConsumerBeanEndpoint) {
+ List<Consumes> consumes =
myServiceUnitAnalyzer.getConsumes(endpoint);
+ assertNotNull(consumes);
+ assertEquals("serviceConsumer",
consumes.get(0).getServiceName().getLocalPart());
+ assertEquals("endpointConsumer",
consumes.get(0).getEndpointName());
+ assertEquals("Greeter",
consumes.get(0).getInterfaceName().getLocalPart());
+ assertEquals(2, consumes.get(0).getLinkType());
+ assertEquals(true, consumes.get(0).isValid());
+ } else if (endpoint instanceof ProviderBeanEndpoint) {
+ List<Provides> provides =
myServiceUnitAnalyzer.getProvides();
+ assertNotNull(provides);
+ assertEquals("serviceProvider",
provides.get(0).getServiceName().getLocalPart());
+ assertEquals("endpointProvider",
provides.get(0).getEndpointName());
+ assertEquals("GreeterProvider",
provides.get(0).getInterfaceName().getLocalPart());
+ }
+ }
+
+ }
+
+ public void testConsumes() throws Exception {
+ List<Consumes> consumesList = new ArrayList<Consumes>();
+ Consumes consume = new Consumes();
+ consume.setEndpointName("endpointConsumer");
+ consume.setInterfaceName(new QName("urn:test", "Greeter", ""));
+ consume.setLinkType(1);
+ consumesList.add(consume);
+ Consumes consume2 = new Consumes();
+ consume2.setEndpointName("endpointConsumerTwo");
+ consume2.setLinkType(1);
+ consumesList.add(consume2);
+
+ Iterator<Consumes> iter = consumesList.iterator();
+ while (iter.hasNext()) {
+ Consumes consumes = (Consumes)iter.next();
+ if ("endpointConsumer".equals(consumes.getEndpointName())) {
+ assertEquals("endpointConsumer", consumes.getEndpointName());
+ assertEquals("Greeter",
consumes.getInterfaceName().getLocalPart());
+ assertEquals(1, consumes.getLinkType());
+ assertEquals(true, consumes.isValid());
+ } else if
("endpointConsumerTwo".equals(consumes.getEndpointName())) {
+ assertEquals("endpointConsumerTwo",
consumes.getEndpointName());
+ assertEquals(1, consumes.getLinkType());
+ assertEquals(false, consumes.isValid());
+ }
+ }
+
+ }
+
+ /**
+ * Implementation of a ServiceUnitAnalyzer that is used to provide a
+ * way to parse the artifact for the service unit and provide a list of
consumes
+ * and provides
+ *
+ * @see org.apache.servicemix.common.packaging.ServiceUnitAnalyzer
+ *
+ */
+ public class MyServiceUnitAnalyzer extends
AbstractXBeanServiceUnitAnalyzer {
+
+ public void init(String explodedServiceUnitRoot) {
+ init(new File (explodedServiceUnitRoot));
+ }
+
+ protected List<Consumes> getConsumes(Endpoint endpoint) {
+ List<Consumes> consumesList = new ArrayList<Consumes>();
+ Consumes consumes;
+ if (endpoint.getRole().equals(MessageExchange.Role.CONSUMER)) {
+ consumes = new Consumes();
+ ConsumerBeanEndpoint myEndpoint = (ConsumerBeanEndpoint)
endpoint;
+ consumes.setEndpointName(myEndpoint.getEndpoint());
+ consumes.setInterfaceName(myEndpoint.getInterfaceName());
+ consumes.setServiceName(myEndpoint.getService());
+ consumes.setLinkType(2);
+ if (consumes.isValid())
+ consumesList.add(consumes);
+ else {
+ consumes = new Consumes();
+ consumes.setEndpointName(endpoint.getEndpoint());
+ consumes.setInterfaceName(endpoint.getInterfaceName());
+ consumes.setServiceName(endpoint.getService());
+ consumes.setLinkType(1);
+ consumesList.add(consumes);
+ }
+ }
+
+ return consumesList;
+ }
+
+ protected String getXBeanFile() {
+ return "xbean.xml";
+ }
+
+ protected boolean isValidEndpoint(Object bean) {
+ return bean instanceof ConsumerBeanEndpoint || bean instanceof
ProviderBeanEndpoint;
+ }
+
+ }
+
+ public static class MyDeployer extends AbstractXBeanDeployer {
+
+ public MyDeployer(ServiceMixComponent component) {
+ super(component);
+ }
+
+ }
+
+ protected class MyComponent extends DefaultComponent {
+ public MyComponent() {
+ super();
+ }
+
+ public List getConfiguredEndpoints() {
+ return null;
+ }
+
+ public Class[] getEndpointClasses() {
+ return new Class[1];
+ }
+ }
+
+ protected String getServiceUnitPath(String name) {
+ URL url = getClass().getClassLoader().getResource(name + "/xbean.xml");
+ File path = new File(url.getFile());
+ path = path.getParentFile();
+ return path.getAbsolutePath();
+ }
+
+}
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/java/org/apache/servicemix/common/packaging/ServiceUnitAnalyzerTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml?rev=776382&view=auto
==============================================================================
---
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml
(added)
+++
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml
Tue May 19 16:49:00 2009
@@ -0,0 +1,27 @@
+<?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.
+
+-->
+<beans>
+
+ <classpath>
+ <location>.</location>
+ <location>lib/classpath.zip</location>
+ </classpath>
+
+</beans>
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/classpath.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/lib/classpath.zip
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/lib/classpath.zip?rev=776382&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/lib/classpath.zip
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml?rev=776382&view=auto
==============================================================================
---
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml
(added)
+++
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml
Tue May 19 16:49:00 2009
@@ -0,0 +1,60 @@
+<?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.
+
+-->
+
+<beans>
+
+ <bean id="consumerBean"
class="org.apache.servicemix.common.packaging.ConsumerBeanEndpoint">
+ <property name="service" value="serviceConsumer"/>
+ <property name="endpoint" value="endpointConsumer" />
+ <property name="interfaceName" value="Greeter" />
+ <property name="targetService" value="targetGreeterConsumerService"/>
+ </bean>
+
+ <bean id="providerBean"
class="org.apache.servicemix.common.packaging.ProviderBeanEndpoint">
+ <property name="service" value="serviceProvider"/>
+ <property name="endpoint" value="endpointProvider" />
+ <property name="interfaceName" value="GreeterProvider" />
+ </bean>
+
+</beans>
+
+
+ <!-- <bean class="org.apache.servicemix.common.packaging.MyEndpoint">
+ <property name="service" value="service"/>
+ <property name="endpoint" value="endpoint" />
+ <property name="interfaceName" value="Greeter" />
+ <property name ="role" value="MessageExchange.Role.CONSUMER"/>
+ <property name="prop" value="${prop}" />
+
+ </bean>
+
+ <bean class="org.apache.servicemix.common.packaging.MyEndpoint">
+ <property name="service" value="serviceTwo"/>
+ <property name="endpoint" value="endpointTwo" />
+ <property name="interfaceName" value="GreeterTwo" />
+ <property name ="role" ref="exchange"/>
+ <property name="prop" value="${prop}" />
+ </bean>
+
+ <bean class="javax.jbi.messaging.MessageExchange" name="exchange">
+ <property name="MessageExchange.Role" value="PROVIDER"/>
+ </bean>
+
+</beans> -->
Propchange:
servicemix/smx3/branches/servicemix-3.2/common/servicemix-common/src/test/resources/org/apache/servicemix/common/packaging/consumes/xbean.xml
------------------------------------------------------------------------------
svn:eol-style = native