* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
99 lines
2.6 KiB
Go
99 lines
2.6 KiB
Go
package netlink
|
|
|
|
import "testing"
|
|
|
|
func TestProtinfo(t *testing.T) {
|
|
tearDown := setUpNetlinkTest(t)
|
|
defer tearDown()
|
|
master := &Bridge{LinkAttrs{Name: "foo"}}
|
|
if err := LinkAdd(master); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
iface1 := &Dummy{LinkAttrs{Name: "bar1", MasterIndex: master.Index}}
|
|
iface2 := &Dummy{LinkAttrs{Name: "bar2", MasterIndex: master.Index}}
|
|
iface3 := &Dummy{LinkAttrs{Name: "bar3"}}
|
|
|
|
if err := LinkAdd(iface1); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := LinkAdd(iface2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := LinkAdd(iface3); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
oldpi1, err := LinkGetProtinfo(iface1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
oldpi2, err := LinkGetProtinfo(iface2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := LinkSetHairpin(iface1, true); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := LinkSetRootBlock(iface1, true); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
pi1, err := LinkGetProtinfo(iface1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !pi1.Hairpin {
|
|
t.Fatalf("Hairpin mode is not enabled for %s, but should", iface1.Name)
|
|
}
|
|
if !pi1.RootBlock {
|
|
t.Fatalf("RootBlock is not enabled for %s, but should", iface1.Name)
|
|
}
|
|
if pi1.Guard != oldpi1.Guard {
|
|
t.Fatalf("Guard field was changed for %s but shouldn't", iface1.Name)
|
|
}
|
|
if pi1.FastLeave != oldpi1.FastLeave {
|
|
t.Fatalf("FastLeave field was changed for %s but shouldn't", iface1.Name)
|
|
}
|
|
if pi1.Learning != oldpi1.Learning {
|
|
t.Fatalf("Learning field was changed for %s but shouldn't", iface1.Name)
|
|
}
|
|
if pi1.Flood != oldpi1.Flood {
|
|
t.Fatalf("Flood field was changed for %s but shouldn't", iface1.Name)
|
|
}
|
|
|
|
if err := LinkSetGuard(iface2, true); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := LinkSetLearning(iface2, false); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
pi2, err := LinkGetProtinfo(iface2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if pi2.Hairpin {
|
|
t.Fatalf("Hairpin mode is enabled for %s, but shouldn't", iface2.Name)
|
|
}
|
|
if !pi2.Guard {
|
|
t.Fatalf("Guard is not enabled for %s, but should", iface2.Name)
|
|
}
|
|
if pi2.Learning {
|
|
t.Fatalf("Learning is enabled for %s, but shouldn't", iface2.Name)
|
|
}
|
|
if pi2.RootBlock != oldpi2.RootBlock {
|
|
t.Fatalf("RootBlock field was changed for %s but shouldn't", iface2.Name)
|
|
}
|
|
if pi2.FastLeave != oldpi2.FastLeave {
|
|
t.Fatalf("FastLeave field was changed for %s but shouldn't", iface2.Name)
|
|
}
|
|
if pi2.Flood != oldpi2.Flood {
|
|
t.Fatalf("Flood field was changed for %s but shouldn't", iface2.Name)
|
|
}
|
|
|
|
if err := LinkSetHairpin(iface3, true); err == nil || err.Error() != "operation not supported" {
|
|
t.Fatalf("Set protinfo attrs for link without master is not supported, but err: %s", err)
|
|
}
|
|
}
|