2013-09-05 01:28:59 -04:00
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2013-09-20 20:03:43 -04:00
|
|
|
"path/filepath"
|
2013-09-05 01:28:59 -04:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestEmptySourceFilesystem(t *testing.T) {
|
|
|
|
src := new(Filesystem)
|
|
|
|
if len(src.Files()) != 0 {
|
|
|
|
t.Errorf("new filesystem should contain 0 files.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-20 20:03:43 -04:00
|
|
|
type TestPath struct {
|
|
|
|
filename string
|
|
|
|
logical string
|
|
|
|
content string
|
|
|
|
section string
|
|
|
|
dir string
|
|
|
|
}
|
|
|
|
|
2013-09-05 01:28:59 -04:00
|
|
|
func TestAddFile(t *testing.T) {
|
2013-09-20 20:03:43 -04:00
|
|
|
tests := platformPaths
|
|
|
|
for _, test := range tests {
|
|
|
|
base := platformBase
|
|
|
|
srcDefault := new(Filesystem)
|
|
|
|
srcWithBase := &Filesystem{
|
|
|
|
Base: base,
|
|
|
|
}
|
2013-09-05 01:28:59 -04:00
|
|
|
|
2013-09-20 20:03:43 -04:00
|
|
|
for _, src := range []*Filesystem{srcDefault, srcWithBase} {
|
2014-10-16 20:20:09 -04:00
|
|
|
|
2013-09-20 20:03:43 -04:00
|
|
|
p := test.filename
|
|
|
|
if !filepath.IsAbs(test.filename) {
|
2014-11-06 11:01:56 -05:00
|
|
|
p = filepath.Join(src.Base, test.filename)
|
2013-09-20 20:03:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := src.add(p, bytes.NewReader([]byte(test.content))); err != nil {
|
2014-10-16 20:20:09 -04:00
|
|
|
if err.Error() == "source: missing base directory" {
|
2013-09-20 20:03:43 -04:00
|
|
|
continue
|
|
|
|
}
|
2014-10-16 20:20:09 -04:00
|
|
|
t.Fatalf("%s add returned an error: %s", p, err)
|
2013-09-20 20:03:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(src.Files()) != 1 {
|
|
|
|
t.Fatalf("%s Files() should return 1 file", p)
|
|
|
|
}
|
|
|
|
|
|
|
|
f := src.Files()[0]
|
2014-10-16 20:20:09 -04:00
|
|
|
if f.LogicalName() != test.logical {
|
|
|
|
t.Errorf("Filename (Base: %q) expected: %q, got: %q", src.Base, test.logical, f.LogicalName())
|
2013-09-20 20:03:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
b := new(bytes.Buffer)
|
|
|
|
b.ReadFrom(f.Contents)
|
|
|
|
if b.String() != test.content {
|
|
|
|
t.Errorf("File (Base: %q) contents should be %q, got: %q", src.Base, test.content, b.String())
|
|
|
|
}
|
|
|
|
|
2014-10-16 20:20:09 -04:00
|
|
|
if f.Section() != test.section {
|
|
|
|
t.Errorf("File section (Base: %q) expected: %q, got: %q", src.Base, test.section, f.Section())
|
2013-09-20 20:03:43 -04:00
|
|
|
}
|
2013-09-05 01:28:59 -04:00
|
|
|
|
2014-10-16 20:20:09 -04:00
|
|
|
if f.Dir() != test.dir {
|
|
|
|
t.Errorf("Dir path (Base: %q) expected: %q, got: %q", src.Base, test.dir, f.Dir())
|
2013-09-20 20:03:43 -04:00
|
|
|
}
|
|
|
|
}
|
2013-09-05 01:28:59 -04:00
|
|
|
}
|
|
|
|
}
|