blob: 1aef3bb37672dbf9fbbc0c8c3436f9fae0a30d5c [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorf3d06162014-10-02 15:54:12 -070017
18import org.junit.Test;
19
20import static org.junit.Assert.assertEquals;
Ray Milkeybd4f0112015-03-02 17:07:09 -080021import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
Brian O'Connorf3d06162014-10-02 15:54:12 -070022
23/**
24 * Suite of tests of the single-to-multi point intent descriptor.
25 */
26public class SinglePointToMultiPointIntentTest extends ConnectivityIntentTest {
27
Ray Milkeybd4f0112015-03-02 17:07:09 -080028 /**
29 * Checks that the SinglePointToMultiPointIntent class is immutable.
30 */
31 @Test
32 public void testImmutability() {
33 assertThatClassIsImmutable(SinglePointToMultiPointIntent.class);
34 }
35
Brian O'Connorf3d06162014-10-02 15:54:12 -070036 @Test
37 public void basics() {
38 SinglePointToMultiPointIntent intent = createOne();
Thomas Vachuskac96058a2014-10-20 23:00:16 -070039 assertEquals("incorrect id", APPID, intent.appId());
tom85258ee2014-10-07 00:10:02 -070040 assertEquals("incorrect match", MATCH, intent.selector());
41 assertEquals("incorrect ingress", P1, intent.ingressPoint());
42 assertEquals("incorrect egress", PS2, intent.egressPoints());
Yi Tseng2a81c9d2016-09-14 10:14:24 -070043
44 intent = createAnother();
45 assertEquals("incorrect id", APPID, intent.appId());
46 assertEquals("incorrect match", MATCH, intent.selector());
47 assertEquals("incorrect ingress", P2, intent.ingressPoint());
48 assertEquals("incorrect egress", PS1, intent.egressPoints());
Luca Prete670ac5d2017-02-03 15:55:43 -080049
50 intent = createWithResourceGroup();
51 assertEquals("incorrect id", APPID, intent.appId());
52 assertEquals("incorrect match", MATCH, intent.selector());
53 assertEquals("incorrect ingress", P2, intent.ingressPoint());
54 assertEquals("incorrect egress", PS1, intent.egressPoints());
55 assertEquals("incorrect resource group", RESOURCE_GROUP, intent.resourceGroup());
Brian O'Connorf3d06162014-10-02 15:54:12 -070056 }
57
Pier Ventre27d42572016-08-29 17:37:08 -070058 @Test
Yi Tseng2a81c9d2016-09-14 10:14:24 -070059 public void filteredIntent() {
60 SinglePointToMultiPointIntent intent = createFilteredOne();
Pier Ventre27d42572016-08-29 17:37:08 -070061 assertEquals("incorrect id", APPID, intent.appId());
62 assertEquals("incorrect match", MATCH, intent.selector());
Yi Tseng2a81c9d2016-09-14 10:14:24 -070063 assertEquals("incorrect filtered ingress", FP2, intent.filteredIngressPoint());
64 assertEquals("incorrect filtered egress", FPS1, intent.filteredEgressPoints());
Pier Ventre27d42572016-08-29 17:37:08 -070065
Yi Tseng2a81c9d2016-09-14 10:14:24 -070066 intent = createAnotherFiltered();
Pier Ventre27d42572016-08-29 17:37:08 -070067 assertEquals("incorrect id", APPID, intent.appId());
68 assertEquals("incorrect match", MATCH, intent.selector());
Yi Tseng2a81c9d2016-09-14 10:14:24 -070069 assertEquals("incorrect filtered ingress", FP1, intent.filteredIngressPoint());
70 assertEquals("incorrect filtered egress", FPS2, intent.filteredEgressPoints());
Pier Ventre27d42572016-08-29 17:37:08 -070071 }
72
Brian O'Connorf3d06162014-10-02 15:54:12 -070073 @Override
74 protected SinglePointToMultiPointIntent createOne() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070075 return SinglePointToMultiPointIntent.builder()
76 .appId(APPID)
77 .selector(MATCH)
78 .treatment(NOP)
79 .ingressPoint(P1)
80 .egressPoints(PS2)
81 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070082 }
83
84 @Override
85 protected SinglePointToMultiPointIntent createAnother() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070086 return SinglePointToMultiPointIntent.builder()
87 .appId(APPID)
88 .selector(MATCH)
89 .treatment(NOP)
90 .ingressPoint(P2)
91 .egressPoints(PS1)
92 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070093 }
Pier Ventre27d42572016-08-29 17:37:08 -070094
Luca Prete670ac5d2017-02-03 15:55:43 -080095 protected SinglePointToMultiPointIntent createWithResourceGroup() {
96 return SinglePointToMultiPointIntent.builder()
97 .appId(APPID)
98 .selector(MATCH)
99 .treatment(NOP)
100 .ingressPoint(P2)
101 .egressPoints(PS1)
102 .resourceGroup(RESOURCE_GROUP)
103 .build();
104 }
105
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700106 protected SinglePointToMultiPointIntent createFilteredOne() {
Pier Ventre27d42572016-08-29 17:37:08 -0700107 return SinglePointToMultiPointIntent.builder()
108 .appId(APPID)
Pier Ventre27d42572016-08-29 17:37:08 -0700109 .treatment(NOP)
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700110 .filteredEgressPoints(FPS1)
111 .filteredIngressPoint(FP2)
Pier Ventre27d42572016-08-29 17:37:08 -0700112 .build();
113 }
114
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700115 protected SinglePointToMultiPointIntent createAnotherFiltered() {
Pier Ventre27d42572016-08-29 17:37:08 -0700116 return SinglePointToMultiPointIntent.builder()
117 .appId(APPID)
Pier Ventre27d42572016-08-29 17:37:08 -0700118 .treatment(NOP)
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700119 .filteredEgressPoints(FPS2)
120 .filteredIngressPoint(FP1)
Pier Ventre27d42572016-08-29 17:37:08 -0700121 .build();
122 }
123
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700124 protected SinglePointToMultiPointIntent createWrongIntent() {
Pier Ventre27d42572016-08-29 17:37:08 -0700125 return SinglePointToMultiPointIntent.builder()
126 .appId(APPID)
Yi Tseng2a81c9d2016-09-14 10:14:24 -0700127 .treatment(NOP)
128 .selector(VLANMATCH1)
129 .filteredEgressPoints(FPS2)
130 .filteredIngressPoint(FP1)
Pier Ventre27d42572016-08-29 17:37:08 -0700131 .build();
132 }
133
Brian O'Connorf3d06162014-10-02 15:54:12 -0700134}