From dd4799a9809cd2ffaa2e9598a8c1408405e25202 Mon Sep 17 00:00:00 2001 From: rfeng Date: Mon, 19 Sep 2011 22:55:55 +0000 Subject: Add the support to generate the SCA diagram for a given node configuration git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1172882 13f79535-47bb-0310-9956-ffa450edef68 --- .../diagram/layout/DiagramGeneratorTestCase.java | 21 +++++++++-- .../tuscany/sca/diagram/test/HelloWorld.java | 37 +++++++++++++++++++ .../tuscany/sca/diagram/test/HelloWorld2Impl.java | 39 ++++++++++++++++++++ .../tuscany/sca/diagram/test/HelloWorldImpl.java | 42 ++++++++++++++++++++++ 4 files changed, 137 insertions(+), 2 deletions(-) create mode 100644 sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld.java create mode 100644 sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld2Impl.java create mode 100644 sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorldImpl.java (limited to 'sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache') diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/layout/DiagramGeneratorTestCase.java b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/layout/DiagramGeneratorTestCase.java index c6884b9c15..d53cecac38 100644 --- a/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/layout/DiagramGeneratorTestCase.java +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/layout/DiagramGeneratorTestCase.java @@ -19,15 +19,19 @@ package org.apache.tuscany.sca.diagram.layout; import java.io.File; +import java.io.FileWriter; import org.apache.tuscany.sca.diagram.main.Main; +import org.apache.tuscany.sca.diagram.test.HelloWorld; +import org.apache.tuscany.sca.node.NodeFactory; +import org.apache.tuscany.sca.node.configuration.NodeConfiguration; import org.junit.Test; public class DiagramGeneratorTestCase { @Test - public final void test() throws Exception { - for (File xml : new File("input").listFiles()) { + public final void testFiles() throws Exception { + for (File xml : new File("src/test/resources/input").listFiles()) { if (xml.getName().endsWith(".xml")) { System.out.println(xml); Main.generate(new File("target"), null, true, false, false, xml.toString()); @@ -35,4 +39,17 @@ public class DiagramGeneratorTestCase { } } + @Test + public final void testNode() throws Exception { + NodeConfiguration config = NodeFactory.getInstance().createNodeConfiguration(); + config.addContribution(new File("target/test-classes/contribution").toURI().toURL()); + + String svg = Main.generateDiagram(config, HelloWorld.class.getClassLoader(), null); + + System.out.println(svg); + FileWriter fw = new FileWriter("target/node.svg"); + fw.write(svg); + fw.close(); + } + } diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld.java b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld.java new file mode 100644 index 0000000000..d9ee85e2ca --- /dev/null +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld.java @@ -0,0 +1,37 @@ +/* + * 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.diagram.test; + +import org.oasisopen.sca.annotation.Remotable; + +/** + * HelloWorld interface + */ +@Remotable +public interface HelloWorld { + String hello(String name); + + Message echo(Message msg); + + public class Message { + public String name; + public String message; + } +} diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld2Impl.java b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld2Impl.java new file mode 100644 index 0000000000..22216c105e --- /dev/null +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorld2Impl.java @@ -0,0 +1,39 @@ +/* + * 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.diagram.test; + +import org.oasisopen.sca.annotation.AllowsPassByReference; + +/** + * HelloWorld2Impl + */ +@AllowsPassByReference +public class HelloWorld2Impl implements HelloWorld { + + public String hello(String name) { + String msg = "Hello " + name; + return msg; + } + + @Override + public Message echo(Message msg) { + return msg; + } +} diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorldImpl.java b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorldImpl.java new file mode 100644 index 0000000000..89a0da0093 --- /dev/null +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/test/java/org/apache/tuscany/sca/diagram/test/HelloWorldImpl.java @@ -0,0 +1,42 @@ +/* + * 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.diagram.test; + +import org.oasisopen.sca.annotation.AllowsPassByReference; +import org.oasisopen.sca.annotation.Reference; + +/** + * HelloWorldImpl + */ +@AllowsPassByReference +public class HelloWorldImpl implements HelloWorld { + @Reference + private HelloWorld delegate; + + public String hello(String name) { + String msg = delegate.hello(name); + return msg; + } + + @Override + public Message echo(Message msg) { + return delegate.echo(msg); + } +} -- cgit v1.2.3