-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: Adds e2e tests for authorize code flow
- Loading branch information
arekkas
authored and
aeneasr
committed
May 19, 2018
1 parent
eb0c3e6
commit 0a9ae28
Showing
8 changed files
with
356 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ coverage.* | |
Dockerfile-plugin-* | ||
plugin-*.so | ||
hydra-docker-bin | ||
cookies.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright © 2015-2018 Aeneas Rekkas <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @author Aeneas Rekkas <[email protected]> | ||
* @Copyright 2017-2018 Aeneas Rekkas <[email protected]> | ||
* @license Apache-2.0 | ||
*/ | ||
|
||
package main | ||
|
||
import ( | ||
"log" | ||
"net/http" | ||
"os" | ||
|
||
"context" | ||
"strings" | ||
|
||
"golang.org/x/oauth2" | ||
) | ||
|
||
func callback(rw http.ResponseWriter, r *http.Request) { | ||
if r.URL.Query().Get("error") != "" { | ||
http.Error(rw, "error happened in callback: "+r.URL.Query().Get("error")+" "+r.URL.Query().Get("error_description")+" "+r.URL.Query().Get("error_debug"), http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
code := r.URL.Query().Get("code") | ||
conf := oauth2.Config{ | ||
ClientID: os.Getenv("OAUTH2_CLIENT_ID"), | ||
ClientSecret: os.Getenv("OAUTH2_CLIENT_SECRET"), | ||
Endpoint: oauth2.Endpoint{ | ||
AuthURL: strings.TrimRight(os.Getenv("HYDRA_URL"), "/") + "/oauth2/auth", | ||
TokenURL: strings.TrimRight(os.Getenv("HYDRA_URL"), "/") + "/oauth2/token", | ||
}, | ||
RedirectURL: os.Getenv("REDIRECT_URL"), | ||
} | ||
|
||
token, err := conf.Exchange(context.Background(), code) | ||
if err != nil { | ||
http.Error(rw, err.Error(), http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
rw.Write([]byte(`access_token=` + token.AccessToken)) | ||
} | ||
|
||
func main() { | ||
http.HandleFunc("/callback", callback) | ||
port := "4445" | ||
if os.Getenv("PORT") != "" { | ||
port = os.Getenv("PORT") | ||
} | ||
log.Fatal(http.ListenAndServe(":"+port, nil)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* Copyright © 2015-2018 Aeneas Rekkas <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @author Aeneas Rekkas <[email protected]> | ||
* @Copyright 2017-2018 Aeneas Rekkas <[email protected]> | ||
* @license Apache-2.0 | ||
*/ | ||
|
||
package main | ||
|
||
import ( | ||
"log" | ||
"net/http" | ||
"os" | ||
|
||
"io/ioutil" | ||
"net/http/cookiejar" | ||
"strings" | ||
|
||
"fmt" | ||
"net/url" | ||
|
||
"golang.org/x/oauth2" | ||
) | ||
|
||
func main() { | ||
conf := oauth2.Config{ | ||
ClientID: os.Getenv("OAUTH2_CLIENT_ID"), | ||
ClientSecret: os.Getenv("OAUTH2_CLIENT_SECRET"), | ||
Endpoint: oauth2.Endpoint{ | ||
AuthURL: strings.TrimRight(os.Getenv("HYDRA_URL"), "/") + "/oauth2/auth", | ||
TokenURL: strings.TrimRight(os.Getenv("HYDRA_URL"), "/") + "/oauth2/token", | ||
}, | ||
Scopes: strings.Split(os.Getenv("OAUTH2_SCOPE"), ","), | ||
RedirectURL: os.Getenv("REDIRECT_URL"), | ||
} | ||
au := conf.AuthCodeURL("some-stupid-state-foo") + os.Getenv("OAUTH2_EXTRA") | ||
c, err := cookiejar.New(&cookiejar.Options{}) | ||
if err != nil { | ||
log.Fatalf("Unable to create cookie jar: %s", err) | ||
} | ||
|
||
u, _ := url.Parse("http://127.0.0.1") | ||
if os.Getenv("AUTH_COOKIE") != "" { | ||
c.SetCookies(u, []*http.Cookie{{Name: "oauth2_authentication_session", Value: os.Getenv("AUTH_COOKIE")}}) | ||
} | ||
|
||
resp, err := (&http.Client{ | ||
Jar: c, | ||
// Hack to fix cookie across domains | ||
CheckRedirect: func(req *http.Request, via []*http.Request) error { | ||
if len(via) > 0 && req.Header.Get("cookie") == "" { | ||
req.Header.Set("Cookie", via[len(via)-1].Header.Get("Cookie")) | ||
} | ||
|
||
return nil | ||
}, | ||
}).Get(au) | ||
if err != nil { | ||
log.Fatalf("Unable to make request: %s", err) | ||
} | ||
defer resp.Body.Close() | ||
|
||
out, err := ioutil.ReadAll(resp.Body) | ||
if err != nil { | ||
log.Fatalf("Unable to read body: %s", err) | ||
} | ||
|
||
if resp.StatusCode != http.StatusOK { | ||
log.Fatalf("Got status code %d and body %s", resp.StatusCode, out) | ||
} | ||
|
||
for _, c := range c.Cookies(u) { | ||
if c.Name == "oauth2_authentication_session" { | ||
fmt.Print(c.Value) | ||
} | ||
} | ||
} |
Oops, something went wrong.