2 * Copyright 2008 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.wamblee.system.graph.component;
18 import junit.framework.TestCase;
20 import org.wamblee.system.container.Application;
21 import org.wamblee.system.container.Container;
22 import org.wamblee.system.core.Component;
23 import org.wamblee.system.core.DefaultRequiredInterface;
24 import org.wamblee.system.graph.DefaultEdge;
25 import org.wamblee.system.graph.DefaultNode;
26 import org.wamblee.system.graph.Edge;
27 import org.wamblee.system.graph.EdgeFilter;
28 import org.wamblee.system.graph.Node;
37 public class ConnectRequiredExternallyRequiredEdgeFilterTest extends TestCase {
41 private Component<?> comp;
46 private Container container;
56 * @throws Exception DOCUMENT ME!
59 protected void setUp() throws Exception {
60 comp = new Application();
61 container = new Container("container").addRequiredInterface(new DefaultRequiredInterface(
64 Node req = new RequiredInterfaceNode(comp,
65 comp.getRequiredInterfaces().get(0));
66 Node external = new ExternalRequiredInterfaceNode(container,
67 container.getRequiredInterfaces().get(0));
68 edge = new DefaultEdge(req, external);
74 public void testRightComponentRightInterface() {
75 EdgeFilter filter = new ConnectRequiredExternallyRequiredEdgeFilter(comp
76 .getName(), comp.getRequiredInterfaces().get(0).getName(),
77 container.getRequiredInterfaces().get(0).getName());
78 assertFalse(filter.isViolated(edge));
84 public void testWrongInterface() {
85 EdgeFilter filter = new ConnectRequiredExternallyRequiredEdgeFilter(comp
87 comp.getRequiredInterfaces().get(0).getName() + "xx",
88 container.getRequiredInterfaces().get(0).getName());
89 assertFalse(filter.isViolated(edge));
95 public void testWrongComponent() {
96 EdgeFilter filter = new ConnectRequiredExternallyRequiredEdgeFilter(comp
98 comp.getRequiredInterfaces().get(0).getName(),
99 container.getRequiredInterfaces().get(0).getName());
100 assertFalse(filter.isViolated(edge));
106 public void testWrongExternalInterface() {
107 EdgeFilter filter = new ConnectRequiredExternallyRequiredEdgeFilter(comp
108 .getName(), comp.getRequiredInterfaces().get(0).getName(),
109 container.getRequiredInterfaces().get(0).getName() + "xx");
110 assertTrue(filter.isViolated(edge));
116 public void testWrongEdgeType() {
117 DefaultEdge edge = new DefaultEdge(new DefaultNode("x"),
118 new DefaultNode("y"));
119 EdgeFilter filter = new ConnectRequiredExternallyRequiredEdgeFilter(comp
120 .getName(), comp.getRequiredInterfaces().get(0).getName(),
121 container.getRequiredInterfaces().get(0).getName());
122 assertFalse(filter.isViolated(edge));