-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplivoapp_test.go
64 lines (48 loc) · 1.39 KB
/
plivoapp_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/http/httptest"
"testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
func init() {
gin.SetMode(gin.TestMode)
}
func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder {
req, _ := http.NewRequest(method, path, nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
return w
}
func performAuthRequest(r http.Handler, method, path string) *httptest.ResponseRecorder {
req, _ := http.NewRequest(method, path, nil)
req.SetBasicAuth("user1", "hello")
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
return w
}
func TestPingRoute(t *testing.T) {
r := setupRouter()
w := performRequest(r, "GET", "/ping")
assert.Equal(t, 200, w.Code)
assert.Equal(t, "pong", w.Body.String())
}
func TestInvalidRoute(t *testing.T) {
r := setupRouter()
w := performRequest(r, "GET", "/invalid")
assert.Equal(t, 404, w.Code)
assert.Equal(t, "{\"message\":\"Page not found\",\"status\":404}", w.Body.String())
}
func TestUnauthorizedRequest(t *testing.T) {
r := setupRouter()
w := performRequest(r, "GET", "/api/v1/contacts/all")
assert.Equal(t, 401, w.Code)
assert.Equal(t, "Basic realm=\"Authorization Required\"", w.Header().Get("Www-Authenticate"))
}
// TODO: fix it
func TestAuthorizedRequest(t *testing.T) {
r := setupRouter()
w := performAuthRequest(r, "GET", "/api/v1/contacts/all")
assert.Equal(t, 200, w.Code)
}