mw/autopath: integration test with erratic (#930)

Add integration test with erratic. For this erratic now also returns an
autopath searchpath. This tests the whole chain; i.e registring a
searchfunction and calling that from autopath.

This tests does a autopathing domain and a non-autopathing one.
This commit is contained in:
Miek Gieben 2017-08-18 12:57:23 +01:00 committed by GitHub
parent 5a1875120c
commit cc4e4a0626
9 changed files with 126 additions and 22 deletions

View file

@ -33,6 +33,7 @@ func TestSetupAutoPath(t *testing.T) {
{`autopath ` + resolv, false, "", "", []string{"bar.com.", "baz.com.", ""}, ""},
// negative
{`autopath kubernetes`, true, "", "", nil, "open kubernetes: no such file or directory"},
{`autopath`, true, "", "", nil, "no resolv-conf"},
}
for i, test := range tests {