blob: c37a15cb878a74ebcba622d31f9dcf75b101b139 [file] [log] [blame]
tom3065d122014-09-03 21:56:43 -07001package org.onlab.onos.net;
2
3import com.google.common.testing.EqualsTester;
4import org.junit.Test;
5import org.onlab.onos.net.provider.ProviderId;
6
tom3065d122014-09-03 21:56:43 -07007import static org.junit.Assert.assertEquals;
8import static org.onlab.onos.net.Device.Type.SWITCH;
tomca20e0c2014-09-03 23:22:24 -07009import static org.onlab.onos.net.DeviceId.deviceId;
tom3065d122014-09-03 21:56:43 -070010
11/**
12 * Test of the default device model entity.
13 */
14public class DefaultDeviceTest {
15
16 private static final ProviderId PID = new ProviderId("foo");
tomca20e0c2014-09-03 23:22:24 -070017 private static final DeviceId DID1 = deviceId("of:foo");
18 private static final DeviceId DID2 = deviceId("of:bar");
tom3065d122014-09-03 21:56:43 -070019 private static final String MFR = "whitebox";
20 private static final String HW = "1.1.x";
21 private static final String SW = "3.9.1";
22 private static final String SN1 = "43311-12345";
23 private static final String SN2 = "42346-43512";
24
25
26 @Test
27 public void testEquality() {
28 Device d1 = new DefaultDevice(PID, DID1, SWITCH, MFR, HW, SW, SN1);
29 Device d2 = new DefaultDevice(PID, DID1, SWITCH, MFR, HW, SW, SN1);
30 Device d3 = new DefaultDevice(PID, DID2, SWITCH, MFR, HW, SW, SN2);
31 Device d4 = new DefaultDevice(PID, DID2, SWITCH, MFR, HW, SW, SN2);
32 Device d5 = new DefaultDevice(PID, DID2, SWITCH, MFR, HW, SW, SN1);
33
34 new EqualsTester().addEqualityGroup(d1, d2)
35 .addEqualityGroup(d3, d4)
36 .addEqualityGroup(d5)
37 .testEquals();
38 }
39
40 @Test
41 public void basics() {
42 Device device = new DefaultDevice(PID, DID1, SWITCH, MFR, HW, SW, SN1);
43 assertEquals("incorrect provider", PID, device.providerId());
44 assertEquals("incorrect id", DID1, device.id());
45 assertEquals("incorrect type", SWITCH, device.type());
46 assertEquals("incorrect manufacturer", MFR, device.manufacturer());
47 assertEquals("incorrect hw", HW, device.hwVersion());
48 assertEquals("incorrect sw", SW, device.swVersion());
49 assertEquals("incorrect serial", SN1, device.serialNumber());
50 assertEquals("incorrect serial", SN1, device.serialNumber());
51 }
52
53}