// +build !windows // Copyright 2017 flannel authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package ip import ( "net" "testing" "github.com/coreos/flannel/pkg/ns" "github.com/vishvananda/netlink" ) func TestEnsureV4AddressOnLink(t *testing.T) { teardown := ns.SetUpNetlinkTest(t) defer teardown() lo, err := netlink.LinkByName("lo") if err != nil { t.Fatal(err) } if err := netlink.LinkSetUp(lo); err != nil { t.Fatal(err) } // check changing address if err := EnsureV4AddressOnLink(IP4Net{IP: FromIP(net.ParseIP("127.0.0.2")), PrefixLen: 24}, lo); err != nil { t.Fatal(err) } addrs, err := netlink.AddrList(lo, netlink.FAMILY_V4) if err != nil { t.Fatal(err) } if len(addrs) != 1 || addrs[0].String() != "127.0.0.2/24 lo" { t.Fatalf("addrs %v is not expected", addrs) } // check changing address if there exist multiple addresses if err := netlink.AddrAdd(lo, &netlink.Addr{IPNet: &net.IPNet{IP: net.ParseIP("127.0.0.3"), Mask: net.CIDRMask(24, 32)}}); err != nil { t.Fatal(err) } if err := EnsureV4AddressOnLink(IP4Net{IP: FromIP(net.ParseIP("127.0.0.2")), PrefixLen: 24}, lo); err == nil { t.Fatal("EnsureV4AddressOnLink should return error if there exist multiple address on link") } }