mirror of https://github.com/docker/cli.git
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package swarm
|
|
|
|
import (
|
|
"bytes"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
is "gotest.tools/assert/cmp"
|
|
)
|
|
|
|
func TestLoadBundlefileErrors(t *testing.T) {
|
|
testCases := []struct {
|
|
namespace string
|
|
path string
|
|
expectedError string
|
|
}{
|
|
{
|
|
namespace: "namespace_foo",
|
|
expectedError: "Bundle namespace_foo.dab not found",
|
|
},
|
|
{
|
|
namespace: "namespace_foo",
|
|
path: "invalid_path",
|
|
expectedError: "Bundle invalid_path not found",
|
|
},
|
|
// FIXME: this test never working, testdata file is missing from repo
|
|
//{
|
|
// namespace: "namespace_foo",
|
|
// path: string(golden.Get(t, "bundlefile_with_invalid_syntax")),
|
|
// expectedError: "Error reading",
|
|
//},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
_, err := loadBundlefile(&bytes.Buffer{}, tc.namespace, tc.path)
|
|
assert.ErrorContains(t, err, tc.expectedError)
|
|
}
|
|
}
|
|
|
|
func TestLoadBundlefile(t *testing.T) {
|
|
buf := new(bytes.Buffer)
|
|
|
|
namespace := ""
|
|
path := filepath.Join("testdata", "bundlefile_with_two_services.dab")
|
|
bundleFile, err := loadBundlefile(buf, namespace, path)
|
|
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal(len(bundleFile.Services), 2))
|
|
}
|