mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
148 lines
3 KiB
Go
148 lines
3 KiB
Go
package dockerfile // import "github.com/docker/docker/builder/dockerfile"
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/pkg/containerfs"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
"gotest.tools/v3/fs"
|
|
)
|
|
|
|
func TestIsExistingDirectory(t *testing.T) {
|
|
tmpfile := fs.NewFile(t, "file-exists-test", fs.WithContent("something"))
|
|
defer tmpfile.Remove()
|
|
tmpdir := fs.NewDir(t, "dir-exists-test")
|
|
defer tmpdir.Remove()
|
|
|
|
var testcases = []struct {
|
|
doc string
|
|
path string
|
|
expected bool
|
|
}{
|
|
{
|
|
doc: "directory exists",
|
|
path: tmpdir.Path(),
|
|
expected: true,
|
|
},
|
|
{
|
|
doc: "path doesn't exist",
|
|
path: "/bogus/path/does/not/exist",
|
|
expected: false,
|
|
},
|
|
{
|
|
doc: "file exists",
|
|
path: tmpfile.Path(),
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for _, testcase := range testcases {
|
|
result, err := isExistingDirectory(©Endpoint{driver: containerfs.NewLocalDriver(), path: testcase.path})
|
|
if !assert.Check(t, err) {
|
|
continue
|
|
}
|
|
assert.Check(t, is.Equal(testcase.expected, result), testcase.doc)
|
|
}
|
|
}
|
|
|
|
func TestGetFilenameForDownload(t *testing.T) {
|
|
var testcases = []struct {
|
|
path string
|
|
disposition string
|
|
expected string
|
|
}{
|
|
{
|
|
path: "http://www.example.com/",
|
|
expected: "",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz",
|
|
expected: "xyz",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz.html",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz/",
|
|
expected: "",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz/uvw",
|
|
expected: "uvw",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz/uvw.html",
|
|
expected: "uvw.html",
|
|
},
|
|
{
|
|
path: "http://www.example.com/xyz/uvw/",
|
|
expected: "",
|
|
},
|
|
{
|
|
path: "/",
|
|
expected: "",
|
|
},
|
|
{
|
|
path: "/xyz",
|
|
expected: "xyz",
|
|
},
|
|
{
|
|
path: "/xyz.html",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
path: "/xyz/",
|
|
expected: "",
|
|
},
|
|
{
|
|
path: "/xyz/",
|
|
disposition: "attachment; filename=xyz.html",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
disposition: "",
|
|
expected: "",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=xyz",
|
|
expected: "xyz",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=xyz.html",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=\"xyz\"",
|
|
expected: "xyz",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=\"xyz.html\"",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=\"/xyz.html\"",
|
|
expected: "xyz.html",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=\"/xyz/uvw\"",
|
|
expected: "uvw",
|
|
},
|
|
{
|
|
disposition: "attachment; filename=\"Naïve file.txt\"",
|
|
expected: "Naïve file.txt",
|
|
},
|
|
}
|
|
for _, testcase := range testcases {
|
|
resp := http.Response{
|
|
Header: make(map[string][]string),
|
|
}
|
|
if testcase.disposition != "" {
|
|
resp.Header.Add("Content-Disposition", testcase.disposition)
|
|
}
|
|
filename := getFilenameForDownload(testcase.path, &resp)
|
|
assert.Check(t, is.Equal(testcase.expected, filename))
|
|
}
|
|
}
|