2015-02-17 15:27:07 -05:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package archive
|
|
|
|
|
|
|
|
import (
|
2015-03-03 21:40:16 -05:00
|
|
|
"os"
|
2015-02-17 15:27:07 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCanonicalTarNameForPath(t *testing.T) {
|
|
|
|
cases := []struct{ in, expected string }{
|
|
|
|
{"foo", "foo"},
|
|
|
|
{"foo/bar", "foo/bar"},
|
|
|
|
{"foo/dir/", "foo/dir/"},
|
|
|
|
}
|
|
|
|
for _, v := range cases {
|
2015-02-24 22:43:29 -05:00
|
|
|
if out, err := CanonicalTarNameForPath(v.in); err != nil {
|
2015-02-17 15:27:07 -05:00
|
|
|
t.Fatalf("cannot get canonical name for path: %s: %v", v.in, err)
|
|
|
|
} else if out != v.expected {
|
|
|
|
t.Fatalf("wrong canonical tar name. expected:%s got:%s", v.expected, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
if out, err := canonicalTarName(v.in, v.isDir); err != nil {
|
|
|
|
t.Fatalf("cannot get canonical name for path: %s: %v", v.in, err)
|
|
|
|
} else if out != v.expected {
|
|
|
|
t.Fatalf("wrong canonical tar name. expected:%s got:%s", v.expected, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-03 21:40:16 -05:00
|
|
|
|
|
|
|
func TestChmodTarEntry(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
in, expected os.FileMode
|
|
|
|
}{
|
|
|
|
{0000, 0000},
|
|
|
|
{0777, 0777},
|
|
|
|
{0644, 0644},
|
|
|
|
{0755, 0755},
|
|
|
|
{0444, 0444},
|
|
|
|
}
|
|
|
|
for _, v := range cases {
|
|
|
|
if out := chmodTarEntry(v.in); out != v.expected {
|
|
|
|
t.Fatalf("wrong chmod. expected:%v got:%v", v.expected, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|