blob: 36a8aaebbf74a92373d749f62b7d8d77eca12308 [file] [log] [blame]
Sho SHIMIZU15ed4fd2014-08-05 14:40:42 -07001package net.onrc.onos.api.newintent;
2
3import org.junit.Test;
4
5import static org.junit.Assert.assertEquals;
6
7/**
8 * Suite of tests of the multi-to-single point intent descriptor.
9 */
10public class MultiPointToSinglePointIntentTest extends ConnectivityIntentTest {
11
12 @Test
13 public void basics() {
14 MultiPointToSinglePointIntent intent = createOne();
15 assertEquals("incorrect id", IID, intent.getId());
16 assertEquals("incorrect match", MATCH, intent.getMatch());
17 assertEquals("incorrect ingress", PS1, intent.getIngressPorts());
18 assertEquals("incorrect egress", P2, intent.getEgressPort());
19 }
20
21 @Override
22 protected MultiPointToSinglePointIntent createOne() {
23 return new MultiPointToSinglePointIntent(IID, MATCH, NOP, PS1, P2);
24 }
25
26 @Override
27 protected MultiPointToSinglePointIntent createAnother() {
28 return new MultiPointToSinglePointIntent(IID, MATCH, NOP, PS2, P1);
29 }
30}