diff --git a/cli/compose/schema/bindata.go b/cli/compose/schema/bindata.go index 9efa24351e..bb04e48002 100644 --- a/cli/compose/schema/bindata.go +++ b/cli/compose/schema/bindata.go @@ -6,6 +6,8 @@ import ( "bytes" "compress/gzip" "encoding/base64" + "fmt" + "io" "io/ioutil" "net/http" "os" @@ -100,7 +102,24 @@ func (f *_escFile) Close() error { } func (f *_escFile) Readdir(count int) ([]os.FileInfo, error) { - return nil, nil + if !f.isDir { + return nil, fmt.Errorf(" escFile.Readdir: '%s' is not directory", f.name) + } + + fis, ok := _escDirs[f.local] + if !ok { + return nil, fmt.Errorf(" escFile.Readdir: '%s' is directory, but we have no info about content of this dir, local=%s", f.name, f.local) + } + limit := count + if count <= 0 || limit > len(fis) { + limit = len(fis) + } + + if len(fis) == 0 && count > 0 { + return nil, io.EOF + } + + return fis[0:limit], nil } func (f *_escFile) Stat() (os.FileInfo, error) { @@ -191,6 +210,7 @@ func _escFSMustString(useLocal bool, name string) string { var _escData = map[string]*_escFile{ "/data/config_schema_v3.0.json": { + name: "config_schema_v3.0.json", local: "data/config_schema_v3.0.json", size: 11063, modtime: 1518458244, @@ -226,6 +246,7 @@ xHv6XdkMqA34L74ys3aKw8XE5Pt4DNh+IZaN/DMhad9yDyAlGzbxc2F0fns2HUJ234BlbrgaD1QS+++Y }, "/data/config_schema_v3.1.json": { + name: "config_schema_v3.1.json", local: "data/config_schema_v3.1.json", size: 12209, modtime: 1518458244, @@ -262,6 +283,7 @@ f55aMuPsI9DxPLh9jLlw/TGcbUX23yn6OwAA//8cyfJJsS8AAA== }, "/data/config_schema_v3.2.json": { + name: "config_schema_v3.2.json", local: "data/config_schema_v3.2.json", size: 13755, modtime: 1518458244, @@ -300,6 +322,7 @@ ZbmZv+QaLHpS4rzkKyabuw8zkGHuhdMrnbUrtIOnbTqoMzZd83f41N8R/735o4f/lZziOLoU+2E3AJpH }, "/data/config_schema_v3.3.json": { + name: "config_schema_v3.3.json", local: "data/config_schema_v3.3.json", size: 15491, modtime: 1518458244, @@ -340,6 +363,7 @@ b/Iu7P/nxf8DAAD//7pHo+CDPAAA }, "/data/config_schema_v3.4.json": { + name: "config_schema_v3.4.json", local: "data/config_schema_v3.4.json", size: 15874, modtime: 1518458244, @@ -381,6 +405,7 @@ PS1sPmQbucDQbzovyv9fFv8LAAD//+uCPa4CPgAA }, "/data/config_schema_v3.5.json": { + name: "config_schema_v3.5.json", local: "data/config_schema_v3.5.json", size: 16802, modtime: 1518458244, @@ -423,6 +448,7 @@ Pum2n6FuR/KZkNgb9IOAvY0qfF0fuE7P2bsPTT1Xf8bV4ab+/7z5fwAAAP//yoGbgKJBAAA= }, "/data/config_schema_v3.6.json": { + name: "config_schema_v3.6.json", local: "data/config_schema_v3.6.json", size: 17084, modtime: 1518458244, @@ -466,6 +492,7 @@ oqbZ4ab+/7z5fwAAAP//nm8U9rxCAAA= }, "/data/config_schema_v3.7.json": { + name: "config_schema_v3.7.json", local: "data/config_schema_v3.7.json", size: 17854, modtime: 1518458244, @@ -509,6 +536,7 @@ bnBpPlHfjORjkTRf1wyAwiYqMXd9/G6313QfoXs6/sbZ66r6e179PwAA//8ZL3SpvkUAAA== }, "/data/config_schema_v3.8.json": { + name: "config_schema_v3.8.json", local: "data/config_schema_v3.8.json", size: 18246, modtime: 1518458244, @@ -553,6 +581,7 @@ ean7MQBPP+U4w19V/z+t/hsAAP//Fd/bF0ZHAAA= }, "/data/config_schema_v3.9.json": { + name: "config_schema_v3.9.json", local: "data/config_schema_v3.9.json", size: 18246, modtime: 1518458244, @@ -596,13 +625,25 @@ vNT9GICnn3Kc4a+q/59W/w0AAP//CCwovkZHAAA= `, }, - "/": { - isDir: true, - local: "", - }, - "/data": { + name: "data", + local: `data`, isDir: true, - local: "data", + }, +} + +var _escDirs = map[string][]os.FileInfo{ + + "data": { + _escData["/data/config_schema_v3.0.json"], + _escData["/data/config_schema_v3.1.json"], + _escData["/data/config_schema_v3.2.json"], + _escData["/data/config_schema_v3.3.json"], + _escData["/data/config_schema_v3.4.json"], + _escData["/data/config_schema_v3.5.json"], + _escData["/data/config_schema_v3.6.json"], + _escData["/data/config_schema_v3.7.json"], + _escData["/data/config_schema_v3.8.json"], + _escData["/data/config_schema_v3.9.json"], }, } diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index 292b8a8a67..ba3d708a5c 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -4,21 +4,23 @@ FROM golang:${GO_VERSION}-alpine RUN apk add -U git make bash coreutils ca-certificates curl -ARG VNDR_SHA=b177b583eb9d44bd5abfca3083a4aeb971b75861 +# v0.1.0 +ARG VNDR_SHA=d385c05e4c23b602dd16b3d2a1a6c710919bf02f RUN go get -d github.com/LK4D4/vndr && \ cd /go/src/github.com/LK4D4/vndr && \ git checkout -q "$VNDR_SHA" && \ go build -v -o /usr/bin/vndr . && \ rm -rf /go/src/* /go/pkg/* /go/bin/* -ARG ESC_SHA=58d9cde84f237ecdd89bd7f61c2de2853f4c5c6e +# v0.2.0 +ARG ESC_SHA=0ea7db170df78dcddf3e223365f444163147fe89 RUN go get -d github.com/mjibson/esc && \ cd /go/src/github.com/mjibson/esc && \ git checkout -q "$ESC_SHA" && \ go build -v -o /usr/bin/esc . && \ rm -rf /go/src/* /go/pkg/* /go/bin/* -ARG GOTESTSUM_VERSION=0.3.4 +ARG GOTESTSUM_VERSION=0.4.0 RUN curl -Ls https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz -o gotestsum.tar.gz && \ tar -xf gotestsum.tar.gz gotestsum -C /usr/bin && \ rm gotestsum.tar.gz diff --git a/dockerfiles/Dockerfile.e2e b/dockerfiles/Dockerfile.e2e index ff7f6ace7b..2ccefff139 100644 --- a/dockerfiles/Dockerfile.e2e +++ b/dockerfiles/Dockerfile.e2e @@ -18,7 +18,7 @@ ARG NOTARY_VERSION=v0.6.1 RUN curl -Ls https://github.com/theupdateframework/notary/releases/download/${NOTARY_VERSION}/notary-Linux-amd64 -o /usr/local/bin/notary \ && chmod +x /usr/local/bin/notary -ARG GOTESTSUM_VERSION=0.3.4 +ARG GOTESTSUM_VERSION=0.4.0 RUN curl -Ls https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz -o gotestsum.tar.gz \ && tar -xf gotestsum.tar.gz gotestsum \ && mv gotestsum /usr/local/bin/gotestsum \