forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplace_test.go
145 lines (125 loc) · 3.35 KB
/
replace_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
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
package replace_test
import (
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"net/url"
"os"
"os/exec"
"strings"
"testing"
"github.com/sourcegraph/sourcegraph/cmd/replacer/protocol"
"github.com/sourcegraph/sourcegraph/cmd/replacer/replace"
"github.com/sourcegraph/sourcegraph/internal/testutil"
)
func TestReplace(t *testing.T) {
// If we are not on CI skip the test if comby is not installed.
if _, err := exec.LookPath("comby"); os.Getenv("CI") == "" && err != nil {
t.Skip("comby is not installed on the PATH. Try running 'bash <(curl -sL get.comby.dev)'.")
}
files := map[string]string{
"README.md": `# Hello World
Hello world example in go`,
"main.go": `package main
import "fmt"
func main() {
fmt.Println("Hello foo")
}
`,
}
cases := []struct {
arg protocol.RewriteSpecification
want string
}{
{protocol.RewriteSpecification{
MatchTemplate: "func",
RewriteTemplate: "derp",
FileExtension: ".go",
}, `
{"uri":"main.go","diff":"--- main.go\n+++ main.go\n@@ -2,6 +2,6 @@\n \n import \"fmt\"\n \n-func main() {\n+derp main() {\n \tfmt.Println(\"Hello foo\")\n }"}
`},
}
store, cleanup, err := testutil.NewStore(files)
if err != nil {
t.Fatal(err)
}
defer cleanup()
ts := httptest.NewServer(&replace.Service{Store: store})
defer ts.Close()
for _, test := range cases {
req := protocol.Request{
Repo: "foo",
URL: "u",
Commit: "deadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
RewriteSpecification: test.arg,
FetchTimeout: "5000ms",
}
got, err := doReplace(ts.URL, &req)
if err != nil {
t.Errorf("%v failed: %s", test.arg, err)
continue
}
// We have an extra newline to make expected readable
if len(test.want) > 0 {
test.want = test.want[1:]
}
if got != test.want {
d, err := testutil.Diff(test.want, got)
if err != nil {
t.Fatal(err)
}
t.Errorf("%v unexpected response:\n%s", test.arg, d)
continue
}
}
}
func TestReplace_badrequest(t *testing.T) {
cases := []protocol.Request{
{
Repo: "foo",
URL: "u",
Commit: "deadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
// No MatchTemplate
},
}
store, cleanup, err := testutil.NewStore(nil)
if err != nil {
t.Fatal(err)
}
defer cleanup()
ts := httptest.NewServer(&replace.Service{Store: store})
defer ts.Close()
for _, p := range cases {
_, err := doReplace(ts.URL, &p)
if err == nil {
t.Fatalf("%v expected to fail", p)
}
if !strings.HasPrefix(err.Error(), "non-200 response: code=400 ") {
t.Fatalf("%v expected to have HTTP 400 response. Got %s", p, err)
}
}
}
func doReplace(u string, p *protocol.Request) (string, error) {
form := url.Values{
"Repo": []string{string(p.Repo)},
"URL": []string{string(p.URL)},
"Commit": []string{string(p.Commit)},
"FetchTimeout": []string{p.FetchTimeout},
"MatchTemplate": []string{p.RewriteSpecification.MatchTemplate},
"RewriteTemplate": []string{p.RewriteSpecification.RewriteTemplate},
"FileExtension": []string{p.RewriteSpecification.FileExtension},
}
resp, err := http.PostForm(u, form)
if err != nil {
return "", err
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", err
}
if resp.StatusCode != 200 {
return "", fmt.Errorf("non-200 response: code=%d body=%s", resp.StatusCode, string(body))
}
return string(body), err
}