-
Notifications
You must be signed in to change notification settings - Fork 2
/
main_test.go
64 lines (51 loc) · 1.34 KB
/
main_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
package main
import (
"net/http"
"net/url"
"path"
"testing"
"github.com/adams-sarah/test2doc/test"
"github.com/go-chi/chi"
"github.com/stretchr/testify/suite"
)
type DocsSuite struct {
suite.Suite
router *chi.Mux
testServer *test.Server
}
func (suite *DocsSuite) SetupSuite() {
suite.router = chi.NewRouter()
setupRoutes(suite.router)
var err error
suite.testServer, err = test.NewServer(suite.router)
if err != nil {
panic(err.Error())
}
}
func (suite *DocsSuite) TearDownSuite() {
suite.testServer.Finish()
}
// In order for 'go test' to run this suite, we need to create
// a normal test function and pass our suite to suite.Run
func TestDocs(t *testing.T) {
suite.Run(t, new(DocsSuite))
}
func (suite *DocsSuite) TestPotresi() {
resp, err := suite.Get("potresi.json")
suite.Require().Nil(err)
suite.assertJSONOK(resp)
}
func (suite *DocsSuite) TestVreme() {
resp, err := suite.Get("postaje.json")
suite.Require().Nil(err)
suite.assertJSONOK(resp)
}
func (suite *DocsSuite) Get(uri string) (*http.Response, error) {
u, _ := url.Parse(suite.testServer.URL)
u.Path = path.Join(u.Path, uri)
return http.Get(u.String())
}
func (suite *DocsSuite) assertJSONOK(resp *http.Response) {
suite.Equal(http.StatusOK, resp.StatusCode, "HTTP status")
suite.Equal("application/json", resp.Header.Get("Content-Type"), "HTTP Content-Type")
}