]> git.argeo.org Git - gpl/argeo-slc.git/commitdiff
Introduce Manager bundle
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 24 Feb 2009 16:00:56 +0000 (16:00 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 24 Feb 2009 16:00:56 +0000 (16:00 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@2171 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

13 files changed:
demo/org.argeo.slc.demo.manager/.classpath [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/.project [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/.springBeans [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/pom.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/META-INF/MANIFEST.MF [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/BasicExecutionFlow.groovy [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/basic.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/common.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/main.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/slc.properties [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/test.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-001.xml [new file with mode: 0644]
demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-002.xml [new file with mode: 0644]

diff --git a/demo/org.argeo.slc.demo.manager/.classpath b/demo/org.argeo.slc.demo.manager/.classpath
new file mode 100644 (file)
index 0000000..df54f15
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+       <classpathentry kind="src" path="src/main/resources"/>
+       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+       <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+       <classpathentry kind="output" path="target/classes"/>
+</classpath>
diff --git a/demo/org.argeo.slc.demo.manager/.project b/demo/org.argeo.slc.demo.manager/.project
new file mode 100644 (file)
index 0000000..6a65410
--- /dev/null
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>org.argeo.slc.demo.basic</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+               <buildCommand>
+                       <name>org.maven.ide.eclipse.maven2Builder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+               <buildCommand>
+                       <name>org.springframework.ide.eclipse.core.springbuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.springframework.ide.eclipse.core.springnature</nature>
+               <nature>org.maven.ide.eclipse.maven2Nature</nature>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+       </natures>
+</projectDescription>
diff --git a/demo/org.argeo.slc.demo.manager/.springBeans b/demo/org.argeo.slc.demo.manager/.springBeans
new file mode 100644 (file)
index 0000000..c11d814
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beansProjectDescription>
+       <version>1</version>
+       <pluginVersion><![CDATA[2.2.1.v200811281800]]></pluginVersion>
+       <configSuffixes>
+               <configSuffix><![CDATA[xml]]></configSuffix>
+       </configSuffixes>
+       <enableImports><![CDATA[true]]></enableImports>
+       <configs>
+       </configs>
+       <configSets>
+       </configSets>
+</beansProjectDescription>
diff --git a/demo/org.argeo.slc.demo.manager/pom.xml b/demo/org.argeo.slc.demo.manager/pom.xml
new file mode 100644 (file)
index 0000000..33d29dd
--- /dev/null
@@ -0,0 +1,60 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.slc</groupId>
+               <artifactId>argeo-slc</artifactId>
+               <version>0.11.3-SNAPSHOT</version>
+               <relativePath>../../org.argeo.slc</relativePath>
+       </parent>
+       <groupId>org.argeo.slc.demo</groupId>
+       <artifactId>org.argeo.slc.demo.basic</artifactId>
+       <name>SLC Demo Basic Test Module</name>
+       <packaging>jar</packaging>
+       <properties></properties>
+       <build>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-jar-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.felix</groupId>
+                               <artifactId>maven-bundle-plugin</artifactId>
+                               <version>${version.maven-bundle-plugin}</version>
+                               <configuration>
+                                       <instructions>
+                                               <Import-Package>org.apache.commons.logging,org.springframework.beans.factory.config</Import-Package>
+                                               <Require-Bundle>org.argeo.slc.execution,org.argeo.slc.specs,org.argeo.slc.support.simple,org.springframework.aop,com.springsource.net.sf.cglib,com.springsource.org.aopalliance</Require-Bundle>
+                                               <Spring-Context>conf/main.xml</Spring-Context>
+                                       </instructions>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.execution</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.support.simple</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc</groupId>
+                       <artifactId>org.argeo.slc.detached.launcher</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.eclipse.osgi</groupId>
+                       <artifactId>org.eclipse.osgi</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.springframework.osgi</groupId>
+                       <artifactId>org.springframework.osgi.extender</artifactId>
+               </dependency>
+       </dependencies>
+</project>
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/META-INF/MANIFEST.MF b/demo/org.argeo.slc.demo.manager/src/main/resources/META-INF/MANIFEST.MF
new file mode 100644 (file)
index 0000000..d0c3f3d
--- /dev/null
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0\r
+Private-Package: conf;version="0.11.3-SNAPSHOT",conf.testCases;version\r
+ ="0.11.3-SNAPSHOT"\r
+Tool: Bnd-0.0.255\r
+Bundle-Name: SLC Sandbox Execution Flow\r
+Created-By: 1.6.0_0 (Sun Microsystems Inc.)\r
+Require-Bundle: org.argeo.slc.execution,org.argeo.slc.specs,org.argeo.\r
+ slc.support.simple,org.springframework.aop,com.springsource.net.sf.cg\r
+ lib,com.springsource.org.aopalliance\r
+Bundle-Vendor: Argeo\r
+Bundle-Version: 0.11.3.SNAPSHOT\r
+Spring-Context: conf/main.xml\r
+Bundle-ManifestVersion: 2\r
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt\r
+Import-Package: org.apache.commons.logging;version="1.1",org.springfra\r
+ mework.beans.factory.config\r
+Bundle-SymbolicName: org.argeo.slc.sandbox.executionflow\r
+Bundle-DocURL: http://www.argeo.org\r
+Originally-Created-By: 1.6.0_0 (Sun Microsystems Inc.)\r
+\r
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/BasicExecutionFlow.groovy b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/BasicExecutionFlow.groovy
new file mode 100644 (file)
index 0000000..da3926e
--- /dev/null
@@ -0,0 +1,12 @@
+import org.argeo.slc.test.*;
+
+public class BasicExecutionFlow implements org.argeo.slc.executionflow.ExecutionFlow {
+
+       ExecutableTestRun firstSubTest = null;
+       ExecutableTestRun secondSubTest = null;
+
+       void execute(){
+               firstSubTest?.execute();
+               secondSubTest?.execute();
+       }
+}
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/basic.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/basic.xml
new file mode 100644 (file)
index 0000000..c2077f5
--- /dev/null
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+       xmlns:aop="http://www.springframework.org/schema/aop"\r
+       xsi:schemaLocation="\r
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd\r
+       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">\r
+\r
+       <bean id="basic.executionSpec" class="org.argeo.slc.execution.SimpleExecutionSpec">\r
+               <property name="attributes">\r
+                       <map>\r
+                               <entry key="testedComponentId">\r
+                                       <bean parent="specAttribute" p:value="100" />\r
+                               </entry>\r
+                               <entry key="testData1">\r
+                                       <bean parent="refAttribute" p:targetClass="org.argeo.slc.core.test.BasicTestData" />\r
+                               </entry>\r
+                               <entry key="testData2">\r
+                                       <bean parent="refAttribute" p:targetClass="org.argeo.slc.core.test.BasicTestData" />\r
+                               </entry>\r
+                       </map>\r
+               </property>\r
+       </bean>\r
+\r
+       <bean id="basic.ref" factory-bean="basic.executionSpec"\r
+               factory-method="createRef" abstract="true" />\r
+\r
+       <bean id="basic.executionFlowTemplate" class="org.argeo.slc.execution.SimpleExecutionFlow"\r
+               abstract="true">\r
+               <property name="executionSpec" ref="basic.executionSpec" />\r
+               <property name="executables">\r
+                       <list>\r
+                               <ref bean="echo1" />\r
+                               <bean parent="testRun">\r
+                                       <property name="testDefinition" ref="testDef" />\r
+                                       <property name="testData">\r
+                                               <bean parent="basic.ref">\r
+                                                       <constructor-arg value="testData1" />\r
+                                               </bean>\r
+                                       </property>\r
+                               </bean>\r
+                               <bean parent="testRun">\r
+                                       <property name="testDefinition" ref="testDef" />\r
+                                       <property name="testData" ref="ref1" />\r
+                               </bean>\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+\r
+       <bean id="ref1" parent="basic.ref" scope="prototype">\r
+               <constructor-arg value="testData2" />\r
+       </bean>\r
+\r
\r
+       <bean id="basic.testData" class="org.argeo.slc.core.test.BasicTestData"\r
+               >\r
+               <aop:scoped-proxy />\r
+               <property name="expected" value="tata" />\r
+               <property name="reached" value="tata" />\r
+       </bean>\r
\r
\r
+       <bean id="testDef" class="org.argeo.slc.core.test.BasicTestDefinition"\r
+               scope="prototype" />\r
+\r
+       <bean id="testResult" parent="slcDefault.test.basicSimpleTestResult" />\r
+\r
+       <bean id="testRun" class="org.argeo.slc.core.test.SimpleTestRun"\r
+               abstract="true">\r
+               <property name="testResult" ref="testResult" />\r
+       </bean>\r
+\r
+       <!--\r
+               <bean class="org.springframework.aop.framework.ProxyFactoryBean">\r
+               <property name="targetClass"\r
+               value="org.argeo.slc.core.test.BasicTestData" /> <property\r
+               name="targetSource"> <bean\r
+               class="org.argeo.slc.executionflow.ExecutionTargetSource"> <property\r
+               name="name" value="testData" /> <property name="targetClass"\r
+               value="org.argeo.slc.core.test.BasicTestData" /> </bean> </property>\r
+               <property name="proxyTargetClass" value="true" /> </bean>\r
+       -->\r
+\r
+</beans>
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/common.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/common.xml
new file mode 100644 (file)
index 0000000..4495b2f
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+       xmlns:aop="http://www.springframework.org/schema/aop"\r
+       xsi:schemaLocation="\r
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd\r
+       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">\r
+\r
+       <import\r
+               resource="classpath:/org/argeo/slc/core/test/spring/applicationContext.xml" />\r
+\r
+       <bean id="specAttribute" class="org.argeo.slc.execution.SimpleSpecAttribute"\r
+               abstract="true" />\r
+\r
+       <bean id="refAttribute" class="org.argeo.slc.execution.RefSpecAttribute"\r
+               abstract="true" />\r
+\r
+</beans>
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/main.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/main.xml
new file mode 100644 (file)
index 0000000..aab3785
--- /dev/null
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+       xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"\r
+       xsi:schemaLocation="\r
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd\r
+       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-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="common.xml" />\r
+\r
+       <import resource="basic.xml" />\r
+       <import resource="testCases/basic-001.xml" />\r
+       <import resource="testCases/basic-002.xml" />\r
+\r
+       <bean id="testLaunch" class="org.argeo.slc.execution.TestLaunch"\r
+               p:flowName="main" init-method="launch"/>\r
+\r
+       <bean id="main" class="org.argeo.slc.execution.SimpleExecutionFlow">\r
+               <property name="executionSpec">\r
+                       <bean class="org.argeo.slc.execution.SimpleExecutionSpec">\r
+                               <property name="attributes">\r
+                                       <map>\r
+                                               <entry key="testKey">\r
+                                                       <bean parent="specAttribute" p:value="660" />\r
+                                               </entry>\r
+                                       </map>\r
+                               </property>\r
+                       </bean>\r
+               </property>\r
+               <property name="executables">\r
+                       <list>\r
+                               <ref local="echo1" />\r
+                               <ref bean="basic.001" />\r
+                               <ref bean="basic.001" />\r
+                               <ref bean="basic.002" />\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+\r
+       <bean id="echo1" parent="echoTemplate" scope="execution">\r
+               <property name="message"\r
+                       value="From main! @{testKey}, slc.flows=@{slc.flows}" />\r
+               <aop:scoped-proxy />\r
+       </bean>\r
+\r
+       <bean id="echoTemplate" class="org.argeo.slc.execution.tasks.Echo"\r
+               abstract="true">\r
+       </bean>\r
+\r
+       <context:annotation-config />\r
+       <bean class="org.argeo.slc.execution.ExecutionRegister" />\r
+\r
+\r
+       <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">\r
+               <property name="scopes">\r
+                       <map>\r
+                               <entry key="execution">\r
+                                       <bean class="org.argeo.slc.execution.ExecutionScope" />\r
+                               </entry>\r
+                       </map>\r
+               </property>\r
+       </bean>\r
+\r
+       <bean\r
+               class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />\r
+       <bean class="org.argeo.slc.execution.ExecutionParameterPostProcessor" />\r
+       <bean class="org.argeo.slc.execution.InstantiationPostProcessor" />\r
+       <bean class="org.argeo.slc.execution.Executor" />\r
+\r
+       <bean class="org.argeo.slc.execution.ExecutionAspect"></bean>\r
+       <aop:aspectj-autoproxy />\r
+\r
+</beans>
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/slc.properties b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/slc.properties
new file mode 100644 (file)
index 0000000..b18dce1
--- /dev/null
@@ -0,0 +1,16 @@
+log4j.rootLogger=WARN, console
+
+## Levels
+log4j.logger.org.argeo=DEBUG
+log4j.logger.org.argeo.slc.executionflow.ExecutionParameterPostProcessor=TRACE
+log4j.logger.org.argeo.slc.executionflow.ExecutionContext=TRACE
+
+## Appenders
+# console is set to be a ConsoleAppender.
+log4j.appender.console=org.apache.log4j.ConsoleAppender
+
+# console uses PatternLayout.
+log4j.appender.console.layout=org.apache.log4j.PatternLayout
+log4j.appender.console.layout.ConversionPattern= %-5p %d{ISO8601} %m - %c%n
+
+testCase=002
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/test.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/test.xml
new file mode 100644 (file)
index 0000000..6cc40e8
--- /dev/null
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+       xmlns:lang="http://www.springframework.org/schema/lang"\r
+       xsi:schemaLocation="\r
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd\r
+       ">\r
+\r
+       <import\r
+               resource="classpath:/org/argeo/slc/core/test/spring/applicationContext.xml" />\r
+\r
+       <import resource="testCases/basic-001.xml" />\r
+       <import resource="testCases/basic-002.xml" />\r
+\r
+       <bean id="executionFlow.basic1" class="org.argeo.slc.executionflow.SimpleExecutionFlow">\r
+               <meta key="meta1" value="mata1Value" />\r
+               <qualifier>\r
+                       <attribute key="qual1" value="qual1value" />\r
+               </qualifier>\r
+               <property name="executables">\r
+                       <list>\r
+                               <ref local="testGroovyImpl" />\r
+                               <ref local="testBshImpl" />\r
+                               <bean parent="testRun" p:testDefinition-ref="testDef"\r
+                                       p:testData-ref="testData-${testCase}" />\r
+                               <bean parent="testRun" p:testDefinition-ref="testDef"\r
+                                       p:testData-ref="testData-${testCase}" />\r
+                       </list>\r
+               </property>\r
+       </bean>\r
+\r
+       <lang:groovy id="executionFlow.groovy1" script-source="src/slc/conf/BasicExecutionFlow.groovy">\r
+               <lang:property name="firstSubTest">\r
+                       <bean parent="testRun" p:testDefinition-ref="testDef"\r
+                               p:testData-ref="testData-${testCase}" />\r
+               </lang:property>\r
+       </lang:groovy>\r
+\r
+       <bean id="testGroovyImpl" parent="testGroovy">\r
+               <property name="message" value="Hello World! Groovy" />\r
+       </bean>\r
+       <bean id="testBshImpl" parent="testBsh">\r
+               <property name="message" value="Hello World! Beanshell" />\r
+       </bean>\r
+\r
+       <bean id="testDef" class="org.argeo.slc.core.test.BasicTestDefinition"\r
+               scope="prototype" />\r
+\r
+       <bean\r
+               class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />\r
+\r
+       <bean id="testResult" parent="slcDefault.test.basicSimpleTestResult">\r
+       </bean>\r
+\r
+       <bean id="testRun" class="org.argeo.slc.core.test.SimpleTestRun"\r
+               abstract="true">\r
+               <property name="testResult" ref="testResult" />\r
+       </bean>\r
+\r
+       <lang:groovy id="testGroovyBean">\r
+               <lang:inline-script><![CDATA[\r
+               class Message {\r
+               String message = 'test'\r
+               \r
+               public String getMessage(){\r
+                       return message;\r
+               }\r
+               }\r
+               ]]></lang:inline-script>\r
+       </lang:groovy>\r
+\r
+       <lang:groovy id="testGroovy">\r
+               <lang:inline-script><![CDATA[\r
+               class GroovyMessenger extends org.argeo.slc.core.test.SimpleTestRun {\r
+       \r
+               String message = 'test'\r
+       \r
+                       void execute(){\r
+                               println(message);\r
+                       }\r
+               }\r
+               ]]></lang:inline-script>\r
+       </lang:groovy>\r
+\r
+       <lang:bsh id="testBsh" script-interfaces="org.argeo.slc.test.ExecutableTestRun">\r
+               <lang:inline-script><![CDATA[\r
+               setStrictJava(true);\r
+\r
+               class BshMessenger extends org.argeo.slc.core.test.SimpleTestRun {\r
+\r
+                       String message = "test";\r
+\r
+                       public void execute(){\r
+                               System.out.println(message);\r
+                       }\r
+                       \r
+                       public void setMessage(String message){\r
+                               this.message = message;\r
+                       }\r
+               }\r
+               ]]></lang:inline-script>\r
+       </lang:bsh>\r
+\r
+</beans>
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-001.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-001.xml
new file mode 100644 (file)
index 0000000..a542664
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+       xmlns:aop="http://www.springframework.org/schema/aop"\r
+       xsi:schemaLocation="\r
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd\r
+       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd\r
+       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">\r
+\r
+       <bean id="basic.001" parent="basic.executionFlowTemplate">\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="testData1" value-ref="basic.001.testData" />\r
+                               <entry key="testData2">\r
+                                       <bean class="org.argeo.slc.core.test.BasicTestData" scope="execution">\r
+                                               <aop:scoped-proxy />\r
+                                               <property name="expected" value="tata101" />\r
+                                               <property name="reached" value="tata@{testKey}" />\r
+                                       </bean>\r
+                               </entry>\r
+                       </map>\r
+               </constructor-arg>\r
+       </bean>\r
+\r
+       <bean id="basic.001.testData" class="org.argeo.slc.core.test.BasicTestData"\r
+               scope="execution">\r
+               <aop:scoped-proxy />\r
+               <property name="expected" value="tata100" />\r
+               <property name="reached" value="tata@{testedComponentId}" />\r
+       </bean>\r
+\r
+       <bean id="basic.001.testData2" class="org.argeo.slc.core.test.context.DefaultContextTestData">\r
+       </bean>\r
+\r
+</beans>
\ No newline at end of file
diff --git a/demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-002.xml b/demo/org.argeo.slc.demo.manager/src/main/resources/conf/testCases/basic-002.xml
new file mode 100644 (file)
index 0000000..c2946fd
--- /dev/null
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<beans xmlns="http://www.springframework.org/schema/beans"\r
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"\r
+\r
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">\r
+\r
+       <bean id="basic.002" parent="basic.executionFlowTemplate">\r
+               <constructor-arg>\r
+                       <map>\r
+                               <entry key="testData1">\r
+                                       <bean class="org.argeo.slc.core.test.BasicTestData">\r
+                                               <property name="expected" value="toto" />\r
+                                               <property name="reached" value="toto" />\r
+                                       </bean>\r
+                               </entry>\r
+                               <entry key="testData2">\r
+                                       <bean class="org.argeo.slc.core.test.BasicTestData">\r
+                                               <property name="expected" value="tata" />\r
+                                               <property name="reached" value="toto" />\r
+                                       </bean>\r
+                               </entry>\r
+                       </map>\r
+               </constructor-arg>\r
+       </bean>\r
+</beans>
\ No newline at end of file