blob: 20b213786feefb065d2c3a6e8f6121c75a4056a1 (
plain)
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
|
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package vcweb_test
import (
"cmd/go/internal/vcweb"
"io"
"log"
"net/http"
"net/http/httptest"
"os"
"testing"
)
func TestHelp(t *testing.T) {
s, err := vcweb.NewServer(os.DevNull, t.TempDir(), log.Default())
if err != nil {
t.Fatal(err)
}
srv := httptest.NewServer(s)
defer srv.Close()
resp, err := http.Get(srv.URL + "/help")
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
t.Fatal(resp.Status)
}
body, err := io.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
t.Logf("%s", body)
}
func TestOverview(t *testing.T) {
s, err := vcweb.NewServer(os.DevNull, t.TempDir(), log.Default())
if err != nil {
t.Fatal(err)
}
srv := httptest.NewServer(s)
defer srv.Close()
resp, err := http.Get(srv.URL)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
t.Fatal(resp.Status)
}
body, err := io.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
t.Logf("%s", body)
}
|