blob: 9061418c8f4d2645faefd1e394cc297b7bcda99a [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.assertThatClassIsImmutable;
Brian O'Connorf3d06162014-10-02 15:54:12 -070022
23/**
24 * Suite of tests of the multi-to-single point intent descriptor.
25 */
26public class MultiPointToSinglePointIntentTest extends ConnectivityIntentTest {
27
Ray Milkey37f6a382014-11-25 14:54:42 -080028 /**
29 * Checks that the MultiPointToSinglePointIntent class is immutable.
30 */
31 @Test
32 public void checkImmutability() {
33 assertThatClassIsImmutable(MultiPointToSinglePointIntent.class);
34 }
35
Brian O'Connorf3d06162014-10-02 15:54:12 -070036 @Test
37 public void basics() {
38 MultiPointToSinglePointIntent 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", PS1, intent.ingressPoints());
42 assertEquals("incorrect egress", P2, intent.egressPoint());
Brian O'Connorf3d06162014-10-02 15:54:12 -070043 }
44
45 @Override
46 protected MultiPointToSinglePointIntent createOne() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070047 return MultiPointToSinglePointIntent.builder()
48 .appId(APPID)
49 .selector(MATCH)
50 .treatment(NOP)
51 .ingressPoints(PS1)
52 .egressPoint(P2)
53 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070054 }
55
56 @Override
57 protected MultiPointToSinglePointIntent createAnother() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070058 return MultiPointToSinglePointIntent.builder()
59 .appId(APPID)
60 .selector(MATCH)
61 .treatment(NOP)
62 .ingressPoints(PS2)
63 .egressPoint(P1)
64 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070065 }
66}