VLANIDTest.java
1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package org.onlab.packet;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import com.google.common.testing.EqualsTester;
public class VLANIDTest {
@Test
public void testEquality() {
VLANID vlan1 = VLANID.vlanId((short) -1);
VLANID vlan2 = VLANID.vlanId((short) 100);
VLANID vlan3 = VLANID.vlanId((short) 100);
new EqualsTester().addEqualityGroup(VLANID.vlanId(), vlan1)
.addEqualityGroup(vlan2, vlan3)
.addEqualityGroup(VLANID.vlanId((short) 10));
}
@Test
public void basics() {
// purposefully create UNTAGGED VLAN
VLANID vlan1 = VLANID.vlanId((short) 10);
VLANID vlan2 = VLANID.vlanId((short) -1);
assertEquals("incorrect VLAN value", 10, vlan1.toShort());
assertEquals("invalid untagged value", VLANID.UNTAGGED, vlan2.toShort());
}
@Test(expected = IllegalArgumentException.class)
public void testIllicitVLAN() {
VLANID.vlanId((short) 5000);
}
}