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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
package datafs
import (
"context"
"net/http"
"net/http/httptest"
"net/url"
"os"
"runtime"
"testing"
"testing/fstest"
"github.com/hairyhenderson/go-fsimpl"
"github.com/hairyhenderson/go-fsimpl/httpfs"
"github.com/hairyhenderson/gomplate/v4/internal/config"
"github.com/hairyhenderson/gomplate/v4/internal/iohelpers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const osWindows = "windows"
func TestResolveURL(t *testing.T) {
out, err := resolveURL(mustParseURL("http://example.com/foo.json"), "bar.json")
require.NoError(t, err)
assert.Equal(t, "http://example.com/bar.json", out.String())
out, err = resolveURL(mustParseURL("http://example.com/a/b/?n=2"), "bar.json?q=1")
require.NoError(t, err)
assert.Equal(t, "http://example.com/a/b/bar.json?n=2&q=1", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/myrepo"), "//myfile?type=application/json")
require.NoError(t, err)
assert.Equal(t, "git+file:///tmp/myrepo//myfile?type=application/json", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/foo/bar/"), "//myfile?type=application/json")
require.NoError(t, err)
assert.Equal(t, "git+file:///tmp/foo/bar//myfile?type=application/json", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/myrepo/"), ".//myfile?type=application/json")
require.NoError(t, err)
assert.Equal(t, "git+file:///tmp/myrepo//myfile?type=application/json", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/repo//foo.txt"), "")
require.NoError(t, err)
assert.Equal(t, "git+file:///tmp/repo//foo.txt", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/myrepo"), ".//myfile?type=application/json")
require.NoError(t, err)
assert.Equal(t, "git+file:///tmp/myrepo//myfile?type=application/json", out.String())
out, err = resolveURL(mustParseURL("git+file:///tmp/myrepo//foo/?type=application/json"), "bar/myfile")
require.NoError(t, err)
// note that the '/' in the query string is encoded to %2F - that's OK
assert.Equal(t, "git+file:///tmp/myrepo//foo/bar/myfile?type=application%2Fjson", out.String())
// both base and relative may not contain "//"
_, err = resolveURL(mustParseURL("git+ssh://git@example.com/foo//bar"), ".//myfile")
require.Error(t, err)
_, err = resolveURL(mustParseURL("git+ssh://git@example.com/foo//bar"), "baz//myfile")
require.Error(t, err)
// relative urls must remain relative
out, err = resolveURL(mustParseURL("tmp/foo.json"), "")
require.NoError(t, err)
assert.Equal(t, "tmp/foo.json", out.String())
}
func TestReadFileContent(t *testing.T) {
wd, _ := os.Getwd()
t.Cleanup(func() {
_ = os.Chdir(wd)
})
_ = os.Chdir("/")
mux := http.NewServeMux()
mux.HandleFunc("/foo.json", func(w http.ResponseWriter, _ *http.Request) {
w.Header().Set("Content-Type", iohelpers.JSONMimetype)
w.Write([]byte(`{"foo": "bar"}`))
})
srv := httptest.NewServer(mux)
t.Cleanup(srv.Close)
fsys := WrapWdFS(fstest.MapFS{
"foo.json": &fstest.MapFile{Data: []byte(`{"foo": "bar"}`)},
"dir/1.yaml": &fstest.MapFile{Data: []byte(`foo: bar`)},
"dir/2.yaml": &fstest.MapFile{Data: []byte(`baz: qux`)},
"dir/sub/sub1.yaml": &fstest.MapFile{Data: []byte(`quux: corge`)},
})
fsp := fsimpl.NewMux()
fsp.Add(httpfs.FS)
fsp.Add(WrappedFSProvider(fsys, "file", ""))
ctx := ContextWithFSProvider(context.Background(), fsp)
reg := NewRegistry()
sr := &dsReader{Registry: reg}
fc, err := sr.readFileContent(ctx, mustParseURL("file:///foo.json"), nil)
require.NoError(t, err)
assert.Equal(t, []byte(`{"foo": "bar"}`), fc.b)
fc, err = sr.readFileContent(ctx, mustParseURL("dir/"), nil)
require.NoError(t, err)
assert.JSONEq(t, `["1.yaml", "2.yaml", "sub"]`, string(fc.b))
fc, err = sr.readFileContent(ctx, mustParseURL(srv.URL+"/foo.json"), nil)
require.NoError(t, err)
assert.Equal(t, []byte(`{"foo": "bar"}`), fc.b)
}
func TestDatasource(t *testing.T) {
setup := func(ext string, contents []byte) (context.Context, *dsReader) {
fname := "foo." + ext
var uPath string
if runtime.GOOS == osWindows {
uPath = "C:/tmp/" + fname
} else {
uPath = "/tmp/" + fname
}
fsys := WrapWdFS(fstest.MapFS{
"tmp/" + fname: &fstest.MapFile{Data: contents},
})
ctx := ContextWithFSProvider(context.Background(), WrappedFSProvider(fsys, "file", ""))
reg := NewRegistry()
reg.Register("foo", config.DataSource{URL: &url.URL{Scheme: "file", Path: uPath}})
return ctx, &dsReader{Registry: reg}
}
test := func(ext, mime string, contents []byte) {
ctx, data := setup(ext, contents)
ct, b, err := data.ReadSource(ctx, "foo", "?type="+mime)
require.NoError(t, err)
assert.Equal(t, contents, b)
assert.Equal(t, mime, ct)
}
testObj := func(ext, mime string, contents []byte) {
test(ext, mime, contents)
}
testObj("json", iohelpers.JSONMimetype, []byte(`{"hello":{"cruel":"world"}}`))
testObj("yml", iohelpers.YAMLMimetype, []byte("hello:\n cruel: world\n"))
test("json", iohelpers.JSONMimetype, []byte(`[1, "two", true]`))
test("yaml", iohelpers.YAMLMimetype, []byte("---\n- 1\n- two\n- true\n"))
ctx, d := setup("", nil)
ct, b, err := d.ReadSource(ctx, "foo")
require.NoError(t, err)
assert.Empty(t, b)
assert.Equal(t, iohelpers.TextMimetype, ct)
_, _, err = d.ReadSource(ctx, "bar")
require.Error(t, err)
}
|