Added:
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java?rev=388312&view=auto
==============================================================================
---
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java
(added)
+++
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java
Thu Mar 23 17:12:40 2006
@@ -0,0 +1,157 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ *
+ * Licensed 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 org.apache.commons.scxml.model;
+
+import java.net.URL;
+import java.util.Set;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.apache.commons.scxml.SCXMLExecutor;
+import org.apache.commons.scxml.SCXMLTestHelper;
+import org.apache.commons.scxml.TriggerEvent;
+import org.apache.commons.scxml.env.jexl.JexlContext;
+import org.apache.commons.scxml.env.jexl.JexlEvaluator;
+import org.apache.commons.scxml.env.jsp.ELContext;
+import org.apache.commons.scxml.env.jsp.ELEvaluator;
+/**
+ * Unit tests [EMAIL PROTECTED] org.apache.commons.scxml.SCXMLExecutor}.
+ */
+public class DatamodelTest extends TestCase {
+ /**
+ * Construct a new instance of SCXMLExecutorTest with
+ * the specified name
+ */
+ public DatamodelTest(String name) {
+ super(name);
+ }
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(DatamodelTest.class);
+ suite.setName("SCXML Executor Tests");
+ return suite;
+ }
+
+ // Test data
+ private URL datamodel01jexl, datamodel01jsp;
+ private SCXMLExecutor exec01, exec02;
+
+ /**
+ * Set up instance variables required by this test case.
+ */
+ public void setUp() {
+ datamodel01jexl = this.getClass().getClassLoader().
+ getResource("org/apache/commons/scxml/env/jexl/datamodel-01.xml");
+ datamodel01jsp = this.getClass().getClassLoader().
+ getResource("org/apache/commons/scxml/env/jsp/datamodel-01.xml");
+ }
+
+ /**
+ * Tear down instance variables required by this test case.
+ */
+ public void tearDown() {
+ datamodel01jexl = datamodel01jsp = null;
+ }
+
+ /**
+ * Test the stateless model, simultaneous executions
+ */
+ public void testDatamodelSimultaneousJexl() {
+ exec01 = SCXMLTestHelper.getExecutor(datamodel01jexl,
+ new JexlContext(), new JexlEvaluator());
+ assertNotNull(exec01);
+ exec02 = SCXMLTestHelper.getExecutor(datamodel01jexl,
+ new JexlContext(), new JexlEvaluator());
+ assertNotNull(exec02);
+ assertFalse(exec01 == exec02);
+ runtest();
+ }
+
+ public void testDatamodelSimultaneousJsp() {
+ exec01 = SCXMLTestHelper.getExecutor(datamodel01jsp,
+ new ELContext(), new ELEvaluator());
+ assertNotNull(exec01);
+ exec02 = SCXMLTestHelper.getExecutor(datamodel01jsp,
+ new ELContext(), new ELEvaluator());
+ assertNotNull(exec02);
+ assertFalse(exec01 == exec02);
+ runtest();
+ }
+
+ private void runtest() {
+ try {
+ //// Interleaved
+ // exec01
+ Set currentStates = exec01.getCurrentStatus().getStates();
+ assertEquals(1, currentStates.size());
+ assertEquals("ten", ((State)currentStates.iterator().
+ next()).getId());
+ currentStates = fireEvent("ten.done", exec01);
+ assertEquals(1, currentStates.size());
+ assertEquals("twenty", ((State)currentStates.iterator().
+ next()).getId());
+ // exec02
+ currentStates = exec02.getCurrentStatus().getStates();
+ assertEquals(1, currentStates.size());
+ assertEquals("ten", ((State)currentStates.iterator().
+ next()).getId());
+ // exec01
+ currentStates = fireEvent("twenty.done", exec01);
+ assertEquals(1, currentStates.size());
+ assertEquals("thirty", ((State)currentStates.iterator().
+ next()).getId());
+ // exec02
+ currentStates = fireEvent("ten.done", exec02);
+ assertEquals(1, currentStates.size());
+ assertEquals("twenty", ((State)currentStates.iterator().
+ next()).getId());
+ currentStates = fireEvent("twenty.done", exec02);
+ assertEquals(1, currentStates.size());
+ assertEquals("thirty", ((State)currentStates.iterator().
+ next()).getId());
+ currentStates = fireEvent("thirty.done", exec02);
+ assertEquals(1, currentStates.size());
+ assertEquals("forty", ((State)currentStates.iterator().
+ next()).getId());
+ // exec01
+ currentStates = fireEvent("thirty.done", exec01);
+ assertEquals(1, currentStates.size());
+ assertEquals("forty", ((State)currentStates.iterator().
+ next()).getId());
+ } catch (Exception e) {
+ fail(e.getMessage());
+ }
+ }
+
+ private Set fireEvent(String name, SCXMLExecutor exec) {
+ TriggerEvent[] evts = {new TriggerEvent(name,
+ TriggerEvent.SIGNAL_EVENT, null)};
+ try {
+ exec.triggerEvents(evts);
+ } catch (Exception e) {
+ fail(e.getMessage());
+ }
+ return exec.getCurrentStatus().getStates();
+ }
+
+ public static void main(String args[]) {
+ TestRunner.run(suite());
+ }
+}
+
Propchange:
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/DatamodelTest.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified:
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/ModelTestSuite.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/ModelTestSuite.java?rev=388312&r1=388311&r2=388312&view=diff
==============================================================================
---
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/ModelTestSuite.java
(original)
+++
jakarta/commons/sandbox/scxml/trunk/src/test/java/org/apache/commons/scxml/model/ModelTestSuite.java
Thu Mar 23 17:12:40 2006
@@ -50,6 +50,7 @@
suite.addTest(ActionsTest.suite());
suite.addTest(ActionTest.suite());
suite.addTest(CustomActionTest.suite());
+ suite.addTest(DatamodelTest.suite());
suite.addTest(HistoryTest.suite());
suite.addTest(PathTest.suite());
suite.addTest(StateTest.suite());
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]