61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package common
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestParallels9Driver_impl(t *testing.T) {
|
|
var _ Driver = new(Parallels9Driver)
|
|
}
|
|
|
|
func TestIpAddress(t *testing.T) {
|
|
tf, err := ioutil.TempFile("", "packer")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
defer os.Remove(tf.Name())
|
|
|
|
d := Parallels9Driver{
|
|
dhcp_lease_file: tf.Name(),
|
|
}
|
|
|
|
// No lease should be found in an empty file
|
|
ip, err := d.IpAddress("123456789012")
|
|
if err == nil {
|
|
t.Fatalf("Found IP: \"%v\". No IP should be found!\n", ip)
|
|
}
|
|
|
|
// The most recent lease, 10.211.55.126 should be found
|
|
c := []byte(`
|
|
[vnic0]
|
|
10.211.55.125="1418288000,1800,001c4235240c,ff4235240c000100011c1c10e7001c4235240c"
|
|
10.211.55.126="1418288969,1800,001c4235240c,ff4235240c000100011c1c11ad001c4235240c"
|
|
10.211.55.254="1411712008,1800,001c42a51419,01001c42a51419"
|
|
`)
|
|
ioutil.WriteFile(tf.Name(), c, 0666)
|
|
ip, err = d.IpAddress("001C4235240c")
|
|
if err != nil {
|
|
t.Fatalf("Error: %v\n", err)
|
|
}
|
|
if ip != "10.211.55.126" {
|
|
t.Fatalf("Should have found 10.211.55.126, not %s!\n", ip)
|
|
}
|
|
|
|
// The most recent lease, 10.211.55.124 should be found
|
|
c = []byte(`[vnic0]
|
|
10.211.55.124="1418288969,1800,001c4235240c,ff4235240c000100011c1c11ad001c4235240c"
|
|
10.211.55.125="1418288000,1800,001c4235240c,ff4235240c000100011c1c10e7001c4235240c"
|
|
10.211.55.254="1411712008,1800,001c42a51419,01001c42a51419"
|
|
`)
|
|
ioutil.WriteFile(tf.Name(), c, 0666)
|
|
ip, err = d.IpAddress("001c4235240c")
|
|
if err != nil {
|
|
t.Fatalf("Error: %v\n", err)
|
|
}
|
|
if ip != "10.211.55.124" {
|
|
t.Fatalf("Should have found 10.211.55.124, not %s!\n", ip)
|
|
}
|
|
}
|