pkg/utils/hwaddr tests: cover v4 in v6 addr

This commit is contained in:
Stefan Junker 2016-08-01 16:50:40 -07:00
parent 5a52316ab5
commit c0ac3913a1

View File

@ -42,6 +42,10 @@ var _ = Describe("Hwaddr", func() {
ip: net.ParseIP("172.17.0.2"), ip: net.ParseIP("172.17.0.2"),
expectedMAC: (net.HardwareAddr)(append(hwaddr.PrivateMACPrefix, 0xac, 0x11, 0x00, 0x02)), expectedMAC: (net.HardwareAddr)(append(hwaddr.PrivateMACPrefix, 0xac, 0x11, 0x00, 0x02)),
}, },
{
ip: net.IPv4(byte(172), byte(17), byte(0), byte(2)),
expectedMAC: (net.HardwareAddr)(append(hwaddr.PrivateMACPrefix, 0xac, 0x11, 0x00, 0x02)),
},
} }
for _, tc := range testCases { for _, tc := range testCases {