Author: lresende
Date: Wed May 28 10:16:47 2008
New Revision: 661024

URL: http://svn.apache.org/viewvc?rev=661024&view=rev
Log:
TUSCANY-2345 - Applying Ram's patch

Added:
    
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/
    
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/
    
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
   (with props)
    
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/
    
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
   (with props)
    incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/
    
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
   (with props)
    
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
   (with props)

Added: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite?rev=661024&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
 (added)
+++ 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
 Wed May 28 10:16:47 2008
@@ -0,0 +1,30 @@
+<?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:tuscany="http://tuscany.apache.org/xmlns/sca/1.0";
+       targetNamespace="http://sample/resource";
+       xmlns:sr="http://sample/resource";
+       name="resource">
+
+    <component name="ResourceServiceComponent">
+        <tuscany:implementation.resource location="contents"/>
+    </component>
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite?rev=661024&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
 (added)
+++ 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
 Wed May 28 10:16:47 2008
@@ -0,0 +1,30 @@
+<?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:tuscany="http://tuscany.apache.org/xmlns/sca/1.0";
+       targetNamespace="http://sample/resource";
+       xmlns:sr="http://sample/resource";
+       name="resource">
+
+    <component name="ResourceServiceComponent">
+        <tuscany:implementation.resource/>
+    </component>
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/main/resources/impl/resource/LocationAttributeMissing/resource.composite
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java?rev=661024&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
 (added)
+++ 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
 Wed May 28 10:16:47 2008
@@ -0,0 +1,59 @@
+/*
+ * 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 impl.resource;
+
+import junit.framework.TestCase;
+import org.apache.tuscany.sca.monitor.Monitor;
+import org.apache.tuscany.sca.monitor.Problem;
+import org.apache.tuscany.sca.monitor.impl.DefaultLoggingMonitorImpl;
+
+import domain.CustomCompositeBuilder;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class CouldNotResolveLocationTestCase extends TestCase {
+
+    private CustomCompositeBuilder customDomain;
+       
+    @Override
+    protected void setUp() throws Exception 
+    {
+        customDomain = CustomCompositeBuilder.getInstance();
+        try {
+            
customDomain.loadContribution("src/main/resources/impl/resource/CouldNotResolveLocation/resource.composite",
 
+                      "TestContribution", 
"src/main/resources/impl/resource/CouldNotResolveLocation/");
+        } catch (Exception ex){
+            //throw ex;
+        }
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+       //nothing to do
+    }
+
+    public void testCalculator() {
+        Monitor monitor = customDomain.getMonitorInstance();
+        Problem problem = 
((DefaultLoggingMonitorImpl)monitor).getLastLoggedProblem();
+        
+        assertNotNull(problem);
+        assertEquals("CouldNotResolveLocation", problem.getMessageId());
+    }
+}

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/CouldNotResolveLocationTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java?rev=661024&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
 (added)
+++ 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
 Wed May 28 10:16:47 2008
@@ -0,0 +1,59 @@
+/*
+ * 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 impl.resource;
+
+import junit.framework.TestCase;
+import org.apache.tuscany.sca.monitor.Monitor;
+import org.apache.tuscany.sca.monitor.Problem;
+import org.apache.tuscany.sca.monitor.impl.DefaultLoggingMonitorImpl;
+
+import domain.CustomCompositeBuilder;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class LocationAttributeMissingTestCase extends TestCase {
+
+    private CustomCompositeBuilder customDomain;
+       
+    @Override
+    protected void setUp() throws Exception 
+    {
+        customDomain = CustomCompositeBuilder.getInstance();
+        try {
+            
customDomain.loadContribution("src/main/resources/impl/resource/LocationAttributeMissing/resource.composite",
 
+                      "TestContribution", 
"src/main/resources/impl/resource/LocationAttributeMissing/");
+        } catch (Exception ex){
+            //throw ex;
+        }
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+       //nothing to do
+    }
+
+    public void testCalculator() {
+        Monitor monitor = customDomain.getMonitorInstance();
+        Problem problem = 
((DefaultLoggingMonitorImpl)monitor).getLastLoggedProblem();
+        
+        assertNotNull(problem);
+        assertEquals("LocationAttributeMissing", problem.getMessageId());
+    }
+}

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/itest/validation/src/test/java/impl/resource/LocationAttributeMissingTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date


Reply via email to