View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *     http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.scxml2.model;
18  
19  import org.apache.commons.scxml2.SCXMLExecutor;
20  import org.apache.commons.scxml2.SCXMLTestHelper;
21  import org.junit.Assert;
22  import org.junit.Test;
23  
24  public class ParallelTest {
25  
26      @Test
27      public void testParallel01() throws Exception {
28          SCXMLExecutor exec = SCXMLTestHelper.getExecutor("org/apache/commons/scxml2/model/parallel-01.xml");
29          exec.go();
30          SCXMLTestHelper.assertPostTriggerState(exec, "foo", "end");
31      }
32      
33      @Test
34      public void testParallel02() throws Exception {
35          SCXMLExecutor exec = SCXMLTestHelper.getExecutor("org/apache/commons/scxml2/model/parallel-02.xml");
36          exec.go();
37          SCXMLTestHelper.assertPostTriggerStates(exec, "dummy.event", new String[] { "state01", "state02" });
38          SCXMLTestHelper.assertPostTriggerState(exec, "event1", "state1");
39      }
40      
41      @Test
42      public void testParallel03() throws Exception {
43          SCXMLExecutor exec = SCXMLTestHelper.getExecutor("org/apache/commons/scxml2/model/parallel-03.xml");
44          exec.go();
45          SCXMLTestHelper.assertPostTriggerStates(exec, "dummy.event", new String[] { "para11", "para21" });
46          Object count = exec.getEvaluator().eval(exec.getGlobalContext(),"Data('string(root/root/count)')");
47          Assert.assertEquals("5.0", count.toString());
48          SCXMLTestHelper.assertPostTriggerStates(exec, "foo", new String[] { "para12", "para21" });
49          count = exec.getEvaluator().eval(exec.getGlobalContext(),"Data('string(root/root/count)')");
50          Assert.assertEquals("7.0", count.toString());
51          SCXMLTestHelper.assertPostTriggerState(exec, "bar", "end");
52          count = exec.getEvaluator().eval(exec.getGlobalContext(),"Data('string(root/root/count)')");
53          Assert.assertEquals("14.0", count.toString());
54      }
55  }