blob: 8d0f9000eb739892274ffb30049a2ac698cd33eb [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 Milkey37f6a382014-11-25 14:54:42 -080021import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutableBaseClass;
Brian O'Connorf3d06162014-10-02 15:54:12 -070022
23/**
24 * Suite of tests of the point-to-point intent descriptor.
25 */
26public class PointToPointIntentTest extends ConnectivityIntentTest {
27
Ray Milkey37f6a382014-11-25 14:54:42 -080028 /**
helenyrwu2a674902016-07-20 09:48:04 -070029 * Checks that the PointToPointIntent class is immutable.
Ray Milkey37f6a382014-11-25 14:54:42 -080030 */
31 @Test
32 public void checkImmutability() {
33 assertThatClassIsImmutableBaseClass(PointToPointIntent.class);
34 }
35
Brian O'Connorf3d06162014-10-02 15:54:12 -070036 @Test
37 public void basics() {
38 PointToPointIntent 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", P2, intent.egressPoint());
Luca Prete670ac5d2017-02-03 15:55:43 -080043
44 intent = createWithResourceGroup();
45 assertEquals("incorrect id", APPID, intent.appId());
46 assertEquals("incorrect match", MATCH, intent.selector());
47 assertEquals("incorrect ingress", P1, intent.ingressPoint());
48 assertEquals("incorrect egress", P2, intent.egressPoint());
49 assertEquals("incorrect resource group", RESOURCE_GROUP, intent.resourceGroup());
Brian O'Connorf3d06162014-10-02 15:54:12 -070050 }
51
Pier Ventreffe88d62016-10-13 14:34:40 -070052 @Test
53 public void filtered() {
54 PointToPointIntent intent = createOneFiltered();
55 assertEquals("incorrect id", APPID, intent.appId());
56 assertEquals("incorrect match", MATCH, intent.selector());
57 assertEquals("incorrect ingress", FP1, intent.filteredIngressPoint());
58 assertEquals("incorrect egress", FP2, intent.filteredEgressPoint());
59 }
60
Brian O'Connorf3d06162014-10-02 15:54:12 -070061 @Override
62 protected PointToPointIntent createOne() {
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070063 return PointToPointIntent.builder()
64 .appId(APPID)
65 .selector(MATCH)
66 .treatment(NOP)
67 .ingressPoint(P1)
68 .egressPoint(P2)
69 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070070 }
71
Luca Prete670ac5d2017-02-03 15:55:43 -080072 protected PointToPointIntent createWithResourceGroup() {
73 return PointToPointIntent.builder()
74 .appId(APPID)
75 .selector(MATCH)
76 .treatment(NOP)
77 .ingressPoint(P1)
78 .egressPoint(P2)
79 .resourceGroup(RESOURCE_GROUP)
80 .build();
81 }
82
Brian O'Connorf3d06162014-10-02 15:54:12 -070083 @Override
84 protected PointToPointIntent createAnother() {
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070085 return PointToPointIntent.builder()
86 .appId(APPID)
87 .selector(MATCH)
88 .treatment(NOP)
89 .ingressPoint(P2)
90 .egressPoint(P1)
91 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070092 }
Pier Ventreffe88d62016-10-13 14:34:40 -070093
94 protected PointToPointIntent createOneFiltered() {
95 return PointToPointIntent.builder()
96 .appId(APPID)
97 .selector(MATCH)
98 .treatment(NOP)
99 .filteredIngressPoint(FP1)
100 .filteredEgressPoint(FP2)
101 .build();
102 }
Brian O'Connorf3d06162014-10-02 15:54:12 -0700103}