source: trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/rules/patterns/visitors/contains/ContainsAndEndsWithEventTest.java @ 1171

Last change on this file since 1171 was 1171, checked in by adeicke, 11 years ago

Fixed test cases.

  • Property svn:mime-type set to text/plain
File size: 3.0 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.usability.rules.patterns.visitors.contains;
16
17import static de.ugoe.cs.autoquest.usability.tasktree.filters.EventTypeFilter.MOUSE_CLICK;
18import static de.ugoe.cs.autoquest.usability.tasktree.filters.EventTypeFilter.TEXT_INPUT;
19import static de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTypeFilter.SELECTION;
20import static de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTypeFilter.SEQUENCE;
21import static org.fest.assertions.api.Assertions.assertThat;
22
23import org.junit.Test;
24
25import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskModel;
26import de.ugoe.cs.autoquest.usability.rules.patterns.UsagePattern;
27import de.ugoe.cs.autoquest.usability.rules.patterns.UsagePatternBuilder;
28import de.ugoe.cs.autoquest.usability.testutil.GenerateTaskModelUtil;
29
30/**
31 * <p>
32 * TODO comment
33 * </p>
34 *
35 * @author Alexander Deicke
36 */
37public class ContainsAndEndsWithEventTest {
38
39         @Test
40    public void contains_and_ends_with_event_positive() {
41        // Given
42        String spec = "UserSession {" +
43                      "  Sequence seq1 {" +
44                      "    TextInput t1 {}" +
45                      "  }" +
46                      "}";
47        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec);
48        UsagePattern pattern = new UsagePatternBuilder().concernedNode(SEQUENCE).contains(TEXT_INPUT).endsWith(TEXT_INPUT).build();
49        // When
50        boolean patternContained = pattern.containedIn(taskTree);
51        // Then
52        assertThat(patternContained).isTrue();
53    }
54   
55   
56    @Test
57    public void contains_and_ends_with_event_negative() {
58        // Given
59        String spec = "UserSession {" +
60                      "  Iteration it1 {" +
61                      "    Sequence seq1 {" +
62                      "      EventTask t1 {}" +
63                      "      EventTask t2 {}" +
64                      "    }" +
65                      "  }" +
66                      "}";
67        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec);
68        UsagePattern pattern = new UsagePatternBuilder().concernedNode(SELECTION).contains(TEXT_INPUT).endsWith(MOUSE_CLICK).build();
69        // When
70        boolean patternContained = pattern.containedIn(taskTree);
71        // Then
72        assertThat(patternContained).isFalse();
73    }
74
75}
Note: See TracBrowser for help on using the repository browser.