forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_handler_test.go
49 lines (36 loc) · 1.3 KB
/
admin_handler_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
// +build small
// Copyright 2018 The WPT Dashboard Project. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package webapp
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/assert"
"github.com/web-platform-tests/wpt.fyi/shared/sharedtest"
)
func TestShowAdminUploadForm_not_admin(t *testing.T) {
mockCtrl := gomock.NewController(t)
defer mockCtrl.Finish()
req := httptest.NewRequest("GET", "/admin/results/upload", new(strings.Reader))
resp := httptest.NewRecorder()
mockAE := sharedtest.NewMockAppEngineAPI(mockCtrl)
mockAE.EXPECT().IsAdmin().Return(false)
showAdminUploadForm(mockAE, resp, req)
assert.Equal(t, resp.Code, http.StatusUnauthorized)
assert.NotContains(t, resp.Body.String(), "form")
}
func TestShowAdminUploadForm_admin(t *testing.T) {
mockCtrl := gomock.NewController(t)
defer mockCtrl.Finish()
req := httptest.NewRequest("GET", "/admin/results/upload", new(strings.Reader))
resp := httptest.NewRecorder()
mockAE := sharedtest.NewMockAppEngineAPI(mockCtrl)
mockAE.EXPECT().IsAdmin().Return(true)
showAdminUploadForm(mockAE, resp, req)
assert.Equal(t, resp.Code, http.StatusOK)
assert.Contains(t, resp.Body.String(), "form")
}