From fd34d4342b95600825720708d7ff6917bba1ee42 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 27 Jan 2010 09:41:44 +0000 Subject: Java SCA 1.6 RC1 Release Tag git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@903579 13f79535-47bb-0310-9956-ffa450edef68 --- .../crawler/ReferenceMultiplicityTestCase.java | 134 +++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/references-collection/src/test/java/crawler/ReferenceMultiplicityTestCase.java (limited to 'sca-java-1.x/tags/1.6-RC1/itest/references-collection/src/test/java/crawler') diff --git a/sca-java-1.x/tags/1.6-RC1/itest/references-collection/src/test/java/crawler/ReferenceMultiplicityTestCase.java b/sca-java-1.x/tags/1.6-RC1/itest/references-collection/src/test/java/crawler/ReferenceMultiplicityTestCase.java new file mode 100644 index 0000000000..1fc0e758c4 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/references-collection/src/test/java/crawler/ReferenceMultiplicityTestCase.java @@ -0,0 +1,134 @@ +/* + * 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 crawler; + +import crawler.Crawler; +import crawler.CrawlerController; + +import org.apache.tuscany.sca.host.embedded.SCADomain; +import org.apache.tuscany.sca.node.SCAClient; +import org.apache.tuscany.sca.node.SCAContribution; +import org.apache.tuscany.sca.node.SCANode; +import org.apache.tuscany.sca.node.SCANodeFactory; +import org.osoa.sca.ServiceRuntimeException; + +import junit.framework.TestCase; + +public class ReferenceMultiplicityTestCase extends TestCase +{ + private final String CRAWLER_ID = "normalcrawler"; + private final String SPECIAL_CRAWLER_ID = "specialcrawler"; + + private static SCANode _scaDomain; + private CrawlerController _controller; + + /** + * {@inheritDoc} + * + * @see junit.framework.TestCase#setUp() + */ + protected void setUp() throws Exception + { + SCANodeFactory nodeFactory = SCANodeFactory.newInstance(); + _scaDomain = nodeFactory.createSCANode("test.composite", + new SCAContribution("crawler", "./target/classes")); + assertNotNull(_scaDomain); + _scaDomain.start(); + _controller = ((SCAClient)_scaDomain).getService(CrawlerController.class, "CrawlerControllerComponent"); + assertNotNull(_controller); + } + + /** + * {@inheritDoc} + * + * @see junit.framework.TestCase#tearDown() + */ + protected void tearDown() throws Exception + { + _controller = null; + if (_scaDomain != null) + { + _scaDomain.stop(); + _scaDomain = null; + } + } + + public void testGetCrawler() throws Exception + { + try + { + _controller.getCrawler(CRAWLER_ID); + fail("Expected exception"); + } + catch (ServiceRuntimeException e) + { + assertEquals("Unexpected error message", "Reference crawlers has multiplicity ONE_N", e.getMessage()); + } + catch (Exception e) + { + fail("Expected ServiceRuntimeException, not a " + e.getClass()); + } + + try + { + _controller.getCrawler(SPECIAL_CRAWLER_ID); + fail("Expected exception"); + } + catch (ServiceRuntimeException e) + { + assertEquals("Unexpected error message", "Reference crawlers has multiplicity ONE_N", e.getMessage()); + } + catch (Exception e) + { + fail("Expected ServiceRuntimeException, not a " + e.getClass()); + } + } +/* + public void testFindCrawler() throws Exception + { + try + { + Crawler crawler = _controller.findCrawler(CRAWLER_ID); + assertNotNull(crawler); + String msg = crawler.crawl(); + assertEquals("Received unexpected msg", "started crawl with id " + CRAWLER_ID, msg); + msg = crawler.close(); + assertEquals("Received unexpected msg", "ended conversation with id " + CRAWLER_ID, msg); + } + catch (Exception e) + { + fail("Unexpected Exception " + e.getClass()); + } + + try + { + Crawler crawler = _controller.findCrawler(SPECIAL_CRAWLER_ID); + assertNotNull(crawler); + String msg = crawler.crawl(); + assertEquals("Received unexpected msg", "started crawl with id " + SPECIAL_CRAWLER_ID, msg); + msg = crawler.close(); + assertEquals("Received unexpected msg", "ended conversation with id " + SPECIAL_CRAWLER_ID, msg); + } + catch (Exception e) + { + fail("Unexpected Exception " + e.getClass()); + } + } +*/ +} -- cgit v1.2.3