2015-02-17 15:27:07 -05:00
|
|
|
// +build windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
2015-02-17 15:27:07 -05:00
|
|
|
|
|
|
|
import (
|
2015-10-14 19:25:03 -04:00
|
|
|
"io/ioutil"
|
2015-03-03 21:40:16 -05:00
|
|
|
"os"
|
2015-10-14 19:25:03 -04:00
|
|
|
"path/filepath"
|
2015-02-17 15:27:07 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-10-14 19:25:03 -04:00
|
|
|
func TestCopyFileWithInvalidDest(t *testing.T) {
|
2016-02-12 16:58:57 -05:00
|
|
|
// TODO Windows: This is currently failing. Not sure what has
|
|
|
|
// recently changed in CopyWithTar as used to pass. Further investigation
|
|
|
|
// is required.
|
|
|
|
t.Skip("Currently fails")
|
2015-10-14 19:25:03 -04:00
|
|
|
folder, err := ioutil.TempDir("", "docker-archive-test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(folder)
|
|
|
|
dest := "c:dest"
|
|
|
|
srcFolder := filepath.Join(folder, "src")
|
|
|
|
src := filepath.Join(folder, "src", "src")
|
|
|
|
err = os.MkdirAll(srcFolder, 0740)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
ioutil.WriteFile(src, []byte("content"), 0777)
|
2017-05-24 11:53:41 -04:00
|
|
|
err = defaultCopyWithTar(src, dest)
|
2015-10-14 19:25:03 -04:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("archiver.CopyWithTar should throw an error on invalid dest.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 15:27:07 -05:00
|
|
|
func TestCanonicalTarNameForPath(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
in, expected string
|
|
|
|
}{
|
2018-06-27 15:07:17 -04:00
|
|
|
{"foo", "foo"},
|
|
|
|
{"foo/bar", "foo/bar"},
|
|
|
|
{`foo\bar`, "foo/bar"},
|
2015-02-17 15:27:07 -05:00
|
|
|
}
|
|
|
|
for _, v := range cases {
|
2018-06-27 15:07:17 -04:00
|
|
|
if CanonicalTarNameForPath(v.in) != v.expected {
|
|
|
|
t.Fatalf("wrong canonical tar name. expected:%s got:%s", v.expected, CanonicalTarNameForPath(v.in))
|
2015-02-17 15:27:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCanonicalTarName(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
in string
|
|
|
|
isDir bool
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{"foo", false, "foo"},
|
|
|
|
{"foo", true, "foo/"},
|
|
|
|
{`foo\bar`, false, "foo/bar"},
|
|
|
|
{`foo\bar`, true, "foo/bar/"},
|
|
|
|
}
|
|
|
|
for _, v := range cases {
|
2018-06-27 15:07:17 -04:00
|
|
|
if canonicalTarName(v.in, v.isDir) != v.expected {
|
|
|
|
t.Fatalf("wrong canonical tar name. expected:%s got:%s", v.expected, canonicalTarName(v.in, v.isDir))
|
2015-02-17 15:27:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-03 21:40:16 -05:00
|
|
|
|
|
|
|
func TestChmodTarEntry(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
in, expected os.FileMode
|
|
|
|
}{
|
2015-03-15 13:19:15 -04:00
|
|
|
{0000, 0111},
|
|
|
|
{0777, 0755},
|
|
|
|
{0644, 0755},
|
|
|
|
{0755, 0755},
|
|
|
|
{0444, 0555},
|
2017-05-02 05:36:43 -04:00
|
|
|
{0755 | os.ModeDir, 0755 | os.ModeDir},
|
|
|
|
{0755 | os.ModeSymlink, 0755 | os.ModeSymlink},
|
2015-03-03 21:40:16 -05:00
|
|
|
}
|
|
|
|
for _, v := range cases {
|
|
|
|
if out := chmodTarEntry(v.in); out != v.expected {
|
|
|
|
t.Fatalf("wrong chmod. expected:%v got:%v", v.expected, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|