Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
go-sso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
id
go-sso
Commits
b2b75382
Commit
b2b75382
authored
5 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Add CORS tests
And move the CORS handler only on the homepage endpoint.
parent
466c1d30
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
server/http.go
+9
-9
9 additions, 9 deletions
server/http.go
server/http_test.go
+45
-0
45 additions, 0 deletions
server/http_test.go
server/service_test.go
+2
-0
2 additions, 0 deletions
server/service_test.go
with
56 additions
and
9 deletions
server/http.go
+
9
−
9
View file @
b2b75382
...
...
@@ -442,13 +442,20 @@ func (h *Server) Handler() http.Handler {
idph
=
csrf
.
Protect
(
h
.
csrfSecret
)(
idph
)
}
// Add CORS headers on the main SSO API endpoint.
c
:=
cors
.
New
(
cors
.
Options
{
AllowedOrigins
:
h
.
allowedOrigins
,
AllowCredentials
:
true
,
MaxAge
:
86400
,
})
// Add the SSO provider endpoints (root path and /exchange),
// which do not need CSRF. We use a HandlerFunc to bypass the
// '/' dispatch semantics of the standard http.ServeMux.
ssoh
:=
h
.
withAuth
(
h
.
handleHomepage
,
h
.
redirectToLogin
)
ssoh
:=
c
.
Handler
(
h
.
withAuth
(
h
.
handleHomepage
,
h
.
redirectToLogin
)
)
userh
:=
http
.
HandlerFunc
(
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
switch
{
case
r
.
Method
==
"GET"
&&
r
.
URL
.
Path
==
h
.
urlFor
(
"/"
)
:
case
r
.
URL
.
Path
==
h
.
urlFor
(
"/"
)
:
ssoh
.
ServeHTTP
(
w
,
r
)
case
r
.
URL
.
Path
==
h
.
urlFor
(
"/exchange"
)
:
h
.
handleExchange
(
w
,
r
)
...
...
@@ -457,13 +464,6 @@ func (h *Server) Handler() http.Handler {
}
})
// Add CORS headers around user-facing routes.
c
:=
cors
.
New
(
cors
.
Options
{
AllowedOrigins
:
h
.
allowedOrigins
,
AllowCredentials
:
true
,
MaxAge
:
86400
,
})
// User-facing routes require cache-busting and CSP headers.
root
.
PathPrefix
(
h
.
urlFor
(
"/"
))
.
Handler
(
withDynamicHeaders
(
c
.
Handler
(
userh
)))
...
...
This diff is collapsed.
Click to expand it.
server/http_test.go
+
45
−
0
View file @
b2b75382
...
...
@@ -331,3 +331,48 @@ func TestHTTP_LoginWithKeyStore(t *testing.T) {
v
.
Set
(
"password"
,
"password"
)
doPostForm
(
t
,
httpSrv
,
c
,
"/login"
,
v
,
checkRedirectToTargetService
)
}
func
TestHTTP_CORS
(
t
*
testing
.
T
)
{
tmpdir
,
httpSrv
:=
startTestHTTPServer
(
t
)
defer
os
.
RemoveAll
(
tmpdir
)
defer
httpSrv
.
Close
()
c
:=
newTestHTTPClient
()
// To test a CORS preflight request we have to login first.
// Simulate an authorization request from a service, expect to
// see the login page.
v
:=
make
(
url
.
Values
)
v
.
Set
(
"s"
,
"service.example.com/"
)
v
.
Set
(
"d"
,
"https://service.example.com/admin/"
)
v
.
Set
(
"n"
,
"averysecretnonce"
)
doGet
(
t
,
httpSrv
,
c
,
"/?"
+
v
.
Encode
(),
checkStatusOk
,
checkLoginPasswordPage
)
// Attempt to login by submitting the form. We expect the
// result to be a 302 redirect to the target service.
v
=
make
(
url
.
Values
)
v
.
Set
(
"username"
,
"testuser"
)
v
.
Set
(
"password"
,
"password"
)
doPostForm
(
t
,
httpSrv
,
c
,
"/login"
,
v
,
checkRedirectToTargetService
)
// Simulate a CORS preflight request.
v
=
make
(
url
.
Values
)
v
.
Set
(
"s"
,
"service.example.com/"
)
v
.
Set
(
"d"
,
"https://service.example.com/admin/"
)
v
.
Set
(
"n"
,
"averysecretnonce"
)
req
,
err
:=
http
.
NewRequest
(
"OPTIONS"
,
httpSrv
.
URL
+
"/?"
+
v
.
Encode
(),
nil
)
if
err
!=
nil
{
t
.
Fatalf
(
"NewRequest(): %v"
,
err
)
}
req
.
Header
.
Set
(
"Origin"
,
"https://origin.example.com"
)
req
.
Header
.
Set
(
"Access-Control-Request-Method"
,
"GET"
)
resp
,
err
:=
c
.
Do
(
req
)
if
err
!=
nil
{
t
.
Fatalf
(
"http request error: %v"
,
err
)
}
defer
resp
.
Body
.
Close
()
checkStatusOk
(
t
,
resp
)
if
s
:=
resp
.
Header
.
Get
(
"Access-Control-Allow-Origin"
);
s
!=
"https://origin.example.com"
{
t
.
Fatalf
(
"Bad Access-Control-Allow-Origin returned to OPTIONS request: %s"
,
s
)
}
}
This diff is collapsed.
Click to expand it.
server/service_test.go
+
2
−
0
View file @
b2b75382
...
...
@@ -38,6 +38,8 @@ public_key_file: %s
domain: example.com
allowed_services:
- "^service\\.example\\.com/$"
allowed_cors_origins:
- "https://origin.example.com"
service_ttls:
- regexp: ".*"
ttl: 60
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment