forked from hairyhenderson/gomplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_windows_test.go
50 lines (40 loc) · 1.17 KB
/
template_windows_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//go:build windows
package gomplate
import (
"context"
"testing"
"github.com/hairyhenderson/gomplate/v3/internal/config"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
)
func TestWalkDir(t *testing.T) {
ctx := context.Background()
origfs := aferoFS
defer func() { aferoFS = origfs }()
aferoFS = afero.NewMemMapFs()
cfg := &config.Config{}
_, err := walkDir(ctx, cfg, `C:\indir`, simpleNamer(`C:\outdir`), nil, 0, false)
assert.Error(t, err)
_ = aferoFS.MkdirAll(`C:\indir\one`, 0777)
_ = aferoFS.MkdirAll(`C:\indir\two`, 0777)
afero.WriteFile(aferoFS, `C:\indir\one\foo`, []byte("foo"), 0644)
afero.WriteFile(aferoFS, `C:\indir\one\bar`, []byte("bar"), 0644)
afero.WriteFile(aferoFS, `C:\indir\two\baz`, []byte("baz"), 0644)
templates, err := walkDir(ctx, cfg, `C:\indir`, simpleNamer(`C:\outdir`), []string{`*\two`}, 0, false)
assert.NoError(t, err)
expected := []Template{
{
Name: `C:\indir\one\bar`,
Text: "bar",
},
{
Name: `C:\indir\one\foo`,
Text: "foo",
},
}
assert.Len(t, templates, 2)
for i, tmpl := range templates {
assert.Equal(t, expected[i].Name, tmpl.Name)
assert.Equal(t, expected[i].Text, tmpl.Text)
}
}