replace zxq.co/ripple/hanayo
This commit is contained in:
72
vendor/github.com/RangelReale/osin/info_test.go
generated
vendored
Normal file
72
vendor/github.com/RangelReale/osin/info_test.go
generated
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
package osin
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestInfo(t *testing.T) {
|
||||
sconfig := NewServerConfig()
|
||||
server := NewServer(sconfig, NewTestingStorage())
|
||||
resp := server.NewResponse()
|
||||
|
||||
req, err := http.NewRequest("GET", "http://localhost:14000/appauth", nil)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
req.Form = make(url.Values)
|
||||
req.Form.Set("code", "9999")
|
||||
|
||||
if ar := server.HandleInfoRequest(resp, req); ar != nil {
|
||||
server.FinishInfoRequest(resp, req, ar)
|
||||
}
|
||||
|
||||
if resp.IsError && resp.InternalError != nil {
|
||||
t.Fatalf("Error in response: %s", resp.InternalError)
|
||||
}
|
||||
|
||||
if resp.IsError {
|
||||
t.Fatalf("Should not be an error")
|
||||
}
|
||||
|
||||
if resp.Type != DATA {
|
||||
t.Fatalf("Response should be data")
|
||||
}
|
||||
|
||||
if d := resp.Output["access_token"]; d != "9999" {
|
||||
t.Fatalf("Unexpected authorization code: %s", d)
|
||||
}
|
||||
}
|
||||
|
||||
func TestInfoWhenCodeIsOnHeader(t *testing.T) {
|
||||
sconfig := NewServerConfig()
|
||||
server := NewServer(sconfig, NewTestingStorage())
|
||||
resp := server.NewResponse()
|
||||
|
||||
req, err := http.NewRequest("GET", "http://localhost:14000/appauth", nil)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
req.Header.Set("Authorization", "Bearer 9999")
|
||||
|
||||
if ar := server.HandleInfoRequest(resp, req); ar != nil {
|
||||
server.FinishInfoRequest(resp, req, ar)
|
||||
}
|
||||
|
||||
if resp.IsError && resp.InternalError != nil {
|
||||
t.Fatalf("Error in response: %s", resp.InternalError)
|
||||
}
|
||||
|
||||
if resp.IsError {
|
||||
t.Fatalf("Should not be an error")
|
||||
}
|
||||
|
||||
if resp.Type != DATA {
|
||||
t.Fatalf("Response should be data")
|
||||
}
|
||||
|
||||
if d := resp.Output["access_token"]; d != "9999" {
|
||||
t.Fatalf("Unexpected authorization code: %s", d)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user