blob: d4e82a148fa76349452ef117b78ae3176c0cbd28 [file] [log] [blame]
Ray Milkeyc9166992017-05-08 12:02:26 -07001/*
2 * Copyright 2017-present 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 */
16
17package org.onosproject.net.behaviour.protection;
18
19import java.util.List;
20
21import org.junit.Test;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.NetTestTools;
24
25import com.google.common.collect.ImmutableList;
26import com.google.common.testing.EqualsTester;
27
28import static org.hamcrest.Matchers.is;
29import static org.hamcrest.Matchers.notNullValue;
30import static org.junit.Assert.assertThat;
31
32/**
33 * Unit tests for protected transport endpoint description.
34 */
35public class ProtectedTransportEndpointDescriptionTest {
36
37 @Test
38 public void testConstruction() {
39 List<TransportEndpointDescription> paths = ImmutableList.of();
40 DeviceId peer = NetTestTools.did("d1");
41 String fingerprint = "aaa";
42
43 ProtectedTransportEndpointDescription pted =
44 ProtectedTransportEndpointDescription.buildDescription(paths, peer,
45 fingerprint);
46 assertThat(pted, notNullValue());
47 assertThat(pted.paths(), is(paths));
48 assertThat(pted.peer(), is(peer));
49 assertThat(pted.fingerprint(), is(fingerprint));
50 }
51
52 @Test
53 public void testEquals() {
54 List<TransportEndpointDescription> paths = ImmutableList.of();
55 DeviceId peer = NetTestTools.did("d1");
56 String fingerprint = "aaa";
57
58 ProtectedTransportEndpointDescription a =
59 ProtectedTransportEndpointDescription.of(paths, peer,
60 fingerprint);
61 ProtectedTransportEndpointDescription b =
62 ProtectedTransportEndpointDescription.of(paths, peer,
63 fingerprint);
64 new EqualsTester()
65 .addEqualityGroup(a)
66 .addEqualityGroup(b)
67 .testEquals();
68 }
69
70}