2017-10-19 07:36:29 -04:00
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2021-05-28 16:59:41 -04:00
|
|
|
"runtime"
|
2017-10-19 07:36:29 -04:00
|
|
|
"testing"
|
|
|
|
|
2021-04-05 20:24:47 -04:00
|
|
|
"github.com/docker/docker/libnetwork/resolvconf"
|
2020-08-31 11:55:22 -04:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2021-05-28 16:59:41 -04:00
|
|
|
"gotest.tools/v3/skip"
|
2017-10-19 07:36:29 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCleanupServiceDiscovery(t *testing.T) {
|
2021-05-28 16:59:41 -04:00
|
|
|
skip.If(t, runtime.GOOS == "windows", "test only works on linux")
|
|
|
|
|
2017-10-19 07:36:29 -04:00
|
|
|
c, err := New()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2017-10-19 07:36:29 -04:00
|
|
|
defer c.Stop()
|
|
|
|
|
2021-05-27 20:15:56 -04:00
|
|
|
cleanup := func(n Network) {
|
|
|
|
if err := n.Delete(); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
2017-10-19 07:36:29 -04:00
|
|
|
n1, err := c.NewNetwork("bridge", "net1", "", nil)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2021-05-27 20:15:56 -04:00
|
|
|
defer cleanup(n1)
|
2017-10-19 07:36:29 -04:00
|
|
|
|
|
|
|
n2, err := c.NewNetwork("bridge", "net2", "", nil)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2021-05-27 20:15:56 -04:00
|
|
|
defer cleanup(n2)
|
2017-10-19 07:36:29 -04:00
|
|
|
|
|
|
|
n1.(*network).addSvcRecords("N1ep1", "service_test", "serviceID1", net.ParseIP("192.168.0.1"), net.IP{}, true, "test")
|
|
|
|
n1.(*network).addSvcRecords("N2ep2", "service_test", "serviceID2", net.ParseIP("192.168.0.2"), net.IP{}, true, "test")
|
|
|
|
|
|
|
|
n2.(*network).addSvcRecords("N2ep1", "service_test", "serviceID1", net.ParseIP("192.168.1.1"), net.IP{}, true, "test")
|
|
|
|
n2.(*network).addSvcRecords("N2ep2", "service_test", "serviceID2", net.ParseIP("192.168.1.2"), net.IP{}, true, "test")
|
|
|
|
|
|
|
|
if len(c.(*controller).svcRecords) != 2 {
|
|
|
|
t.Fatalf("Service record not added correctly:%v", c.(*controller).svcRecords)
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup net1
|
|
|
|
c.(*controller).cleanupServiceDiscovery(n1.ID())
|
|
|
|
|
|
|
|
if len(c.(*controller).svcRecords) != 1 {
|
|
|
|
t.Fatalf("Service record not cleaned correctly:%v", c.(*controller).svcRecords)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.(*controller).cleanupServiceDiscovery("")
|
|
|
|
|
|
|
|
if len(c.(*controller).svcRecords) != 0 {
|
|
|
|
t.Fatalf("Service record not cleaned correctly:%v", c.(*controller).svcRecords)
|
|
|
|
}
|
|
|
|
}
|
2017-10-23 04:52:33 -04:00
|
|
|
|
|
|
|
func TestDNSOptions(t *testing.T) {
|
2021-05-28 16:59:41 -04:00
|
|
|
skip.If(t, runtime.GOOS == "windows", "test only works on linux")
|
|
|
|
|
2017-10-23 04:52:33 -04:00
|
|
|
c, err := New()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2017-10-23 04:52:33 -04:00
|
|
|
|
|
|
|
sb, err := c.(*controller).NewSandbox("cnt1", nil)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2021-05-27 20:15:56 -04:00
|
|
|
|
|
|
|
cleanup := func(s Sandbox) {
|
|
|
|
if err := s.Delete(); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defer cleanup(sb)
|
2017-10-23 04:52:33 -04:00
|
|
|
sb.(*sandbox).startResolver(false)
|
|
|
|
|
|
|
|
err = sb.(*sandbox).setupDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2017-10-23 04:52:33 -04:00
|
|
|
err = sb.(*sandbox).rebuildDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2017-10-23 04:52:33 -04:00
|
|
|
currRC, err := resolvconf.GetSpecific(sb.(*sandbox).config.resolvConfPath)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2017-10-23 04:52:33 -04:00
|
|
|
dnsOptionsList := resolvconf.GetOptions(currRC.Content)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Check(t, is.Len(dnsOptionsList, 1))
|
|
|
|
assert.Check(t, is.Equal("ndots:0", dnsOptionsList[0]))
|
2018-01-26 13:07:08 -05:00
|
|
|
|
|
|
|
sb.(*sandbox).config.dnsOptionsList = []string{"ndots:5"}
|
|
|
|
err = sb.(*sandbox).setupDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-01-26 13:07:08 -05:00
|
|
|
currRC, err = resolvconf.GetSpecific(sb.(*sandbox).config.resolvConfPath)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-01-26 13:07:08 -05:00
|
|
|
dnsOptionsList = resolvconf.GetOptions(currRC.Content)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Check(t, is.Len(dnsOptionsList, 1))
|
|
|
|
assert.Check(t, is.Equal("ndots:5", dnsOptionsList[0]))
|
2018-01-26 13:07:08 -05:00
|
|
|
|
|
|
|
err = sb.(*sandbox).rebuildDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-01-26 13:07:08 -05:00
|
|
|
currRC, err = resolvconf.GetSpecific(sb.(*sandbox).config.resolvConfPath)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-01-26 13:07:08 -05:00
|
|
|
dnsOptionsList = resolvconf.GetOptions(currRC.Content)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Check(t, is.Len(dnsOptionsList, 1))
|
|
|
|
assert.Check(t, is.Equal("ndots:5", dnsOptionsList[0]))
|
2018-06-28 18:58:36 -04:00
|
|
|
|
|
|
|
sb2, err := c.(*controller).NewSandbox("cnt2", nil)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2021-05-27 20:15:56 -04:00
|
|
|
defer cleanup(sb2)
|
2018-06-28 18:58:36 -04:00
|
|
|
sb2.(*sandbox).startResolver(false)
|
|
|
|
|
|
|
|
sb2.(*sandbox).config.dnsOptionsList = []string{"ndots:0"}
|
|
|
|
err = sb2.(*sandbox).setupDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 18:58:36 -04:00
|
|
|
err = sb2.(*sandbox).rebuildDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 18:58:36 -04:00
|
|
|
currRC, err = resolvconf.GetSpecific(sb2.(*sandbox).config.resolvConfPath)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 18:58:36 -04:00
|
|
|
dnsOptionsList = resolvconf.GetOptions(currRC.Content)
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Check(t, is.Len(dnsOptionsList, 1))
|
|
|
|
assert.Check(t, is.Equal("ndots:0", dnsOptionsList[0]))
|
2018-06-28 19:01:26 -04:00
|
|
|
|
|
|
|
sb2.(*sandbox).config.dnsOptionsList = []string{"ndots:foobar"}
|
|
|
|
err = sb2.(*sandbox).setupDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 19:01:26 -04:00
|
|
|
err = sb2.(*sandbox).rebuildDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Error(t, err, "invalid number for ndots option: foobar")
|
2018-06-28 19:22:17 -04:00
|
|
|
|
|
|
|
sb2.(*sandbox).config.dnsOptionsList = []string{"ndots:-1"}
|
|
|
|
err = sb2.(*sandbox).setupDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 19:22:17 -04:00
|
|
|
err = sb2.(*sandbox).rebuildDNS()
|
2018-07-04 05:01:52 -04:00
|
|
|
assert.Error(t, err, "invalid number for ndots option: -1")
|
2017-10-23 04:52:33 -04:00
|
|
|
}
|