blob: 3fbd2b35738451017fa67f8ebd2802454238b6e5 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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'Connorf3d06162014-10-02 15:54:12 -070016package org.onlab.onos.net.intent;
17
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 /**
29 * Checks that the MultiPointToSinglePointIntent class is immutable.
30 */
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());
Brian O'Connorf3d06162014-10-02 15:54:12 -070043 }
44
45 @Override
46 protected PointToPointIntent createOne() {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070047 return new PointToPointIntent(APPID, MATCH, NOP, P1, P2);
Brian O'Connorf3d06162014-10-02 15:54:12 -070048 }
49
50 @Override
51 protected PointToPointIntent createAnother() {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070052 return new PointToPointIntent(APPID, MATCH, NOP, P2, P1);
Brian O'Connorf3d06162014-10-02 15:54:12 -070053 }
54}