-
Notifications
You must be signed in to change notification settings - Fork 0
/
gingae_test.go
167 lines (125 loc) · 3.52 KB
/
gingae_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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package gingae
import (
"appengine"
"appengine_internal"
pb "appengine_internal/user"
"errors"
"github.com/gin-gonic/gin"
. "github.com/smartystreets/goconvey/convey"
"log"
"net/http"
"testing"
)
type MockGaeContext struct {
FailOnCall bool
}
func (c *MockGaeContext) Debugf(format string, args ...interface{}) {
log.Printf(format, args)
}
func (c *MockGaeContext) Infof(format string, args ...interface{}) {
log.Printf(format, args)
}
func (c *MockGaeContext) Warningf(format string, args ...interface{}) {
log.Printf(format, args)
}
func (c *MockGaeContext) Errorf(format string, args ...interface{}) {
log.Printf(format, args)
}
func (c *MockGaeContext) Criticalf(format string, args ...interface{}) {
log.Printf(format, args)
}
func (c *MockGaeContext) Call(service, method string, in, out appengine_internal.ProtoMessage, opts *appengine_internal.CallOptions) error {
if c.FailOnCall {
return errors.New("Failing")
}
if service == "user" {
email := "[email protected]"
authDomain := "example.com"
userId := "userid"
isAdmin := false
out.(*pb.GetOAuthUserResponse).Email = &email
out.(*pb.GetOAuthUserResponse).AuthDomain = &authDomain
out.(*pb.GetOAuthUserResponse).UserId = &userId
out.(*pb.GetOAuthUserResponse).IsAdmin = &isAdmin
} else {
log.Printf("Service: %v", service)
}
return nil
}
func (c *MockGaeContext) FullyQualifiedAppID() string {
return ""
}
func (c *MockGaeContext) Request() interface{} {
header := http.Header{}
header.Add("X-AppEngine-User-Email", "[email protected]")
header.Add("X-AppEngine-User-Federated-Identity", "[email protected]")
return &http.Request{
Header: header,
}
}
func TestGaeContext(t *testing.T) {
Convey("When using the GaeContext middleware", t, func() {
gaeCtx := &MockGaeContext{}
handler := gaeContextFromProvider(func(c *gin.Context) appengine.Context {
return gaeCtx
})
ginCtx := gin.Context{}
handler(&ginCtx)
Convey("The GAE Context should be set on the Gin Context", func() {
foundGaeCtx, getErr := ginCtx.Get(Context)
So(getErr, ShouldBeNil)
So(foundGaeCtx, ShouldEqual, gaeCtx)
})
})
}
func TestGaeUser(t *testing.T) {
Convey("When using the GaeUser middleware", t, func() {
gaeCtx := &MockGaeContext{}
ginCtx := gin.Context{}
Convey("Panic if GaeContext middleware isn't added before.", func() {
userFunc := func() {
GaeUser()(&ginCtx)
}
So(userFunc, ShouldPanic)
})
Convey("The GAE User should be set on the Gin Context", func() {
ginCtx.Set(Context, gaeCtx)
GaeUser()(&ginCtx)
user, getErr := ginCtx.Get(User)
So(getErr, ShouldBeNil)
So(user, ShouldNotBeNil)
})
})
}
func TestGaeUserOAuth(t *testing.T) {
Convey("When using the GaeUserOAuth middleware", t, func() {
gaeCtx := &MockGaeContext{}
ginCtx := gin.Context{}
Convey("Panic if GaeContext middleware isn't added before.", func() {
userFunc := func() {
GaeUserOAuth("")(&ginCtx)
}
So(userFunc, ShouldPanic)
})
Convey("The GAE User should be set on the Gin Context", func() {
ginCtx.Set(Context, gaeCtx)
GaeUserOAuth("")(&ginCtx)
user, getErr := ginCtx.Get(User)
So(getErr, ShouldBeNil)
So(user, ShouldNotBeNil)
})
Convey("If user lookup fails", func() {
gaeCtx = &MockGaeContext{
FailOnCall: true,
}
ginCtx = gin.Context{}
ginCtx.Set(Context, gaeCtx)
GaeUserOAuth("")(&ginCtx)
Convey("User should not be set on Gin Context, but User error should", func() {
user, getErr := ginCtx.Get(User)
So(getErr, ShouldNotBeNil)
So(user, ShouldBeNil)
})
})
})
}