]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.spring/ext/test/org/argeo/slc/core/execution/multipleFlow.xml
Rename SLC Core into SLC Spring.
[gpl/argeo-slc.git] / org.argeo.slc.spring / ext / test / org / argeo / slc / core / execution / multipleFlow.xml
diff --git a/org.argeo.slc.spring/ext/test/org/argeo/slc/core/execution/multipleFlow.xml b/org.argeo.slc.spring/ext/test/org/argeo/slc/core/execution/multipleFlow.xml
new file mode 100644 (file)
index 0000000..58a43e4
--- /dev/null
@@ -0,0 +1,137 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<!--\r
+\r
+    Copyright (C) 2007-2012 Argeo GmbH\r
+\r
+    Licensed under the Apache License, Version 2.0 (the "License");\r
+    you may not use this file except in compliance with the License.\r
+    You may obtain a copy of the License at\r
+\r
+            http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+    Unless required by applicable law or agreed to in writing, software\r
+    distributed under the License is distributed on an "AS IS" BASIS,\r
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+    See the License for the specific language governing permissions and\r
+    limitations under the License.\r
+\r
+-->\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+       xmlns:aop="http://www.springframework.org/schema/aop"\r
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">\r
+\r
+       <import resource="imports.xml" /> \r
+\r
+       <bean id="myTestResult" class="org.argeo.slc.core.test.SimpleTestResult" />\r
+\r
+       <bean id="myTestDef" class="org.argeo.slc.core.test.BasicTestDefinition" />\r
+\r
+       <bean id="myTestRunTemplate" class="org.argeo.slc.core.test.SimpleTestRun" abstract="true">\r
+               <property name="testDefinition" ref="myTestDef" />\r
+               <property name="testResult" ref="myTestResult"/>\r
+       </bean>         \r
+\r
+       <bean id="fileDiff.spec" parent="slcTemplate.simpleSpec">\r
+               <property name="attributes">\r
+                       <map>\r
+                               <entry key="fileName">\r
+                                       <bean parent="specAttr.primitive" p:isParameter="true" p:type="string"\r
+                                               p:isFrozen="true" />\r
+                               </entry>\r
+                       </map>\r
+               </property>\r
+       </bean>\r
+\r
+\r
+       <bean id="fileDiff.flowTemplate" parent="slcTemplate.simpleFlow"\r
+               abstract="true">\r
+               <property name="path" value="/fileDiff/testcases" />\r
+               <constructor-arg ref="fileDiff.spec" />\r
+               <property name="executables">\r
+                       <list>                  \r
+                               <bean parent="task.echo">\r
+                                       <property name="message" value="fileName=@{fileName}" />\r
+                               </bean>\r
+                               <bean parent="myTestRunTemplate">\r
+                                       <property name="testData">\r
+                                               <bean class="org.argeo.slc.core.test.BasicTestData">\r
+                                                       <property name="expected" value="file1" />\r
+                                                       <property name="reached" value="@{fileName}" />\r
+                                               </bean>\r
+                                       </property>     \r
+                               </bean>\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+       \r
+       <bean id="echo" parent="task.echo" scope="prototype">\r
+               <property name="message" value="fileName=@{fileName}" />\r
+       </bean>                 \r
+       \r
+       <bean id="flow1" parent="fileDiff.flowTemplate">\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="fileName" value="file1" />\r
+                       </map>\r
+               </constructor-arg>\r
+       </bean> \r
+\r
+       <bean id="flow2" parent="fileDiff.flowTemplate">\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="fileName" value="file2" />\r
+                       </map>\r
+               </constructor-arg>\r
+       </bean> \r
\r
\r
+ <!-- \r
+       <bean id="flow1" parent="slcTemplate.simpleFlow">\r
+               <property name="path" value="/fileDiff/testcases" />\r
+               <constructor-arg ref="fileDiff.spec" />\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="fileName" value="file1" />\r
+                       </map>\r
+               </constructor-arg>              \r
+               <property name="executables">\r
+                       <list>                  \r
+                               <bean parent="task.echo" scope="execution">\r
+                                       <property name="message" value="fileName=@{fileName}" />\r
+                                       <aop:scoped-proxy />\r
+                               </bean>\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+\r
+       <bean id="flow2" parent="slcTemplate.simpleFlow">\r
+               <property name="path" value="/fileDiff/testcases" />\r
+               <constructor-arg ref="fileDiff.spec" />\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="fileName" value="file2" />\r
+                       </map>\r
+               </constructor-arg>              \r
+               <property name="executables">\r
+                       <list>                  \r
+                               <bean parent="task.echo" scope="execution">\r
+                                       <property name="message" value="fileName=@{fileName}" />\r
+                                       <aop:scoped-proxy />\r
+                               </bean>\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+ -->\r
+<!-- \r
+       <bean id="main" parent="slcTemplate.simpleFlow">\r
+               <property name="executables">\r
+                       <list>          \r
+                               <ref bean="flow1"/>     \r
+                               <ref bean="flow2"/>     \r
+                       </list>\r
+               </property>\r
+       </bean>\r
+ -->\r
+</beans>
\ No newline at end of file