forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider_test.go
80 lines (70 loc) · 1.65 KB
/
provider_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
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package translation
import (
"context"
"embed"
"fmt"
"io"
"net/http"
"net/http/httptest"
"net/url"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestInvalidHTTPProviderTests(t *testing.T) {
t.Parallel()
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.RequestURI != "/1.7.0" {
w.WriteHeader(http.StatusBadRequest)
return
}
data := LoadTranslationVersion(t, "complex_changeset.yml")
_, err := io.Copy(w, strings.NewReader(data))
assert.NoError(t, err, "Must not error when trying load dataset")
}))
t.Cleanup(s.Close)
tests := []struct {
scenario string
url string
}{
{
scenario: "A failed request happens",
url: fmt.Sprint(s.URL, "/not/a/valid/path/1.7.0"),
},
{
scenario: "invalid url",
url: "unix:///localhost",
},
}
for _, tc := range tests {
t.Run(tc.scenario, func(t *testing.T) {
p := NewHTTPProvider(s.Client())
content, err := p.Retrieve(context.Background(), tc.url)
assert.Empty(t, content, "Expected to be empty")
assert.Error(t, err, "Must have errored processing request")
})
}
}
type testProvider struct {
fs *embed.FS
}
func NewTestProvider(fs *embed.FS) Provider {
return &testProvider{fs: fs}
}
func (tp testProvider) Retrieve(_ context.Context, schemaURL string) (string, error) {
parsedPath, err := url.Parse(schemaURL)
if err != nil {
return "", err
}
f, err := tp.fs.Open(parsedPath.Path[1:])
if err != nil {
return "", err
}
data, err := io.ReadAll(f)
if err != nil {
return "", err
}
return string(data), nil
}