GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

httpserver/http_server_test.go   A
last analyzed

Size/Duplication

Total Lines 96
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 8
eloc 72
dl 0
loc 96
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
C httpserver.TestIndexHandler 0 85 8
1
package httpserver
2
3
import (
4
	"github.com/arazmj/gerdu/lrucache"
5
	"github.com/gorilla/mux"
6
	"net/http"
7
	"net/http/httptest"
8
	"strings"
9
	"testing"
10
)
11
12
func TestIndexHandler(t *testing.T) {
13
	gerdu := lrucache.NewCache(2)
14
	tests := []struct {
15
		name             string
16
		r                *http.Request
17
		w                *httptest.ResponseRecorder
18
		expectedStatus   int
19
		expectedResponse string
20
	}{
21
		{
22
			name:           "Put 1:1",
23
			r:              httptest.NewRequest(http.MethodPut, "/cache/1", strings.NewReader("1")),
24
			w:              httptest.NewRecorder(),
25
			expectedStatus: http.StatusCreated,
26
		},
27
		{
28
			name:           "Put 2:2",
29
			r:              httptest.NewRequest(http.MethodPut, "/cache/2", strings.NewReader("2")),
30
			w:              httptest.NewRecorder(),
31
			expectedStatus: http.StatusCreated,
32
		},
33
		{
34
			name:           "Put 3:3",
35
			r:              httptest.NewRequest(http.MethodPut, "/cache/3", strings.NewReader("3")),
36
			w:              httptest.NewRecorder(),
37
			expectedStatus: http.StatusCreated,
38
		},
39
		{
40
			name:             "Get 2:2",
41
			r:                httptest.NewRequest(http.MethodGet, "/cache/2", nil),
42
			w:                httptest.NewRecorder(),
43
			expectedResponse: "2",
44
			expectedStatus:   http.StatusOK,
45
		},
46
		{
47
			name:             "Get 3:3",
48
			r:                httptest.NewRequest(http.MethodGet, "/cache/3", nil),
49
			w:                httptest.NewRecorder(),
50
			expectedResponse: "3",
51
			expectedStatus:   http.StatusOK,
52
		},
53
		{
54
			name:           "Get 1:1",
55
			r:              httptest.NewRequest(http.MethodGet, "/cache/1", nil),
56
			w:              httptest.NewRecorder(),
57
			expectedStatus: http.StatusNotFound,
58
		},
59
		{
60
			name:           "Delete 3:3",
61
			r:              httptest.NewRequest(http.MethodDelete, "/cache/3", nil),
62
			w:              httptest.NewRecorder(),
63
			expectedStatus: http.StatusOK,
64
		},
65
		{
66
			name:             "Get 3:3",
67
			r:                httptest.NewRequest(http.MethodGet, "/cache/3", nil),
68
			w:                httptest.NewRecorder(),
69
			expectedResponse: "3",
70
			expectedStatus:   http.StatusNotFound,
71
		},
72
		{
73
			name:             "Delete 3:3",
74
			r:                httptest.NewRequest(http.MethodDelete, "/cache/3", nil),
75
			w:                httptest.NewRecorder(),
76
			expectedResponse: "3",
77
			expectedStatus:   http.StatusNotFound,
78
		},
79
	}
80
	for _, test := range tests {
81
		test := test
82
		t.Run(test.name, func(t *testing.T) {
83
			router := mux.NewRouter()
84
			router.HandleFunc("/cache/{key}", func(w http.ResponseWriter, r *http.Request) {
85
				switch test.r.Method {
86
				case http.MethodPut:
87
					putHandler(w, r, gerdu)
88
				case http.MethodGet:
89
					getHandler(w, r, gerdu)
90
				case http.MethodDelete:
91
					deleteHandler(w, r, gerdu)
92
				}
93
			})
94
			router.ServeHTTP(test.w, test.r)
95
			if test.w.Code != test.expectedStatus {
96
				t.Errorf("Failed to produce expected status code %d, got %d", test.expectedStatus, test.w.Code)
97
			}
98
		})
99
	}
100
}
101