]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/process/SlcExecutionTestUtils.java
Introduce H
[gpl/argeo-slc.git] / runtime / org.argeo.slc.unit / src / main / java / org / argeo / slc / unit / process / SlcExecutionTestUtils.java
index 8bf94160175e87784f2ed313bda2c8582b90af3f..65f3ec1dd271a768ce30d3369536981dd5631e95 100644 (file)
@@ -1,13 +1,34 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\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
 package org.argeo.slc.unit.process;\r
 \r
 import static junit.framework.Assert.assertEquals;\r
 import static junit.framework.Assert.assertNotNull;\r
 import static org.argeo.slc.unit.UnitUtils.assertDateSec;\r
 \r
+import java.util.ArrayList;\r
+import java.util.List;\r
 import java.util.UUID;\r
 \r
+import org.argeo.slc.execution.ExecutionFlowDescriptor;\r
+import org.argeo.slc.process.RealizedFlow;\r
 import org.argeo.slc.process.SlcExecution;\r
 import org.argeo.slc.process.SlcExecutionStep;\r
+import org.argeo.slc.unit.execution.ExecutionFlowDescriptorTestUtils;\r
 \r
 public abstract class SlcExecutionTestUtils {\r
 \r
@@ -22,6 +43,21 @@ public abstract class SlcExecutionTestUtils {
                return slcExec;\r
        }\r
 \r
+       public static SlcExecution createSlcExecutionWithRealizedFlows() {\r
+               SlcExecution slcExec = SlcExecutionTestUtils.createSimpleSlcExecution();\r
+               List<RealizedFlow> realizedFlows = new ArrayList<RealizedFlow>();\r
+               RealizedFlow realizedFlow = new RealizedFlow();\r
+               ExecutionFlowDescriptor flowDescriptor = ExecutionFlowDescriptorTestUtils\r
+                               .createSimpleExecutionFlowDescriptor();\r
+               realizedFlow.setModuleName("test.module");\r
+               realizedFlow.setModuleVersion("1.0.0");\r
+               realizedFlow.setFlowDescriptor(flowDescriptor);\r
+               realizedFlow.setExecutionSpec(flowDescriptor.getExecutionSpec());\r
+               realizedFlows.add(realizedFlow);\r
+               slcExec.setRealizedFlows(realizedFlows);\r
+               return slcExec;\r
+       }\r
+\r
        public static void assertSlcExecution(SlcExecution expected,\r
                        SlcExecution reached) {\r
                assertNotNull(reached);\r
@@ -46,6 +82,11 @@ public abstract class SlcExecutionTestUtils {
                        SlcExecutionStep stepReached = reached.getSteps().get(i);\r
                        assertSlcExecutionStep(stepExpected, stepReached);\r
                }\r
+\r
+               // FIXME: compare realized flows\r
+               // assertEquals(expected.getRealizedFlows().size(), reached\r
+               // .getRealizedFlows().size());\r
+\r
        }\r
 \r
        public static void assertSlcExecutionStep(SlcExecutionStep expected,\r
@@ -53,7 +94,13 @@ public abstract class SlcExecutionTestUtils {
                assertNotNull(reached);\r
                assertEquals(expected.getUuid(), reached.getUuid());\r
                assertEquals(expected.getType(), reached.getType());\r
-               assertDateSec(expected.getBegin(), reached.getBegin());\r
+               assertDateSec(expected.getTimestamp(), reached.getTimestamp());\r
+               assertEquals(expected.getLogLines().size(), reached.getLogLines()\r
+                               .size());\r
+               for (int i = 0; i < expected.getLogLines().size(); i++) {\r
+                       assertEquals(expected.getLogLines().get(i), reached.getLogLines()\r
+                                       .get(i));\r
+               }\r
        }\r
 \r
        private SlcExecutionTestUtils() {\r