forked from loafle/openapi-generator-original
* [go] use regular stdlib import names * [go] support primitive oneOf types See #8489 * [go] improve pbv/pbr handling Improves the way pass-by-value and pass-by-reference variables are used. Closes #8489 * [go] improve generated documentation * [go] adopt pointer changes in interface * [go] regenerate sample * [go] resolve pointer issues * [go] regenerate clients and avoid pointers on primitive return values * [go] improve Exec() return value handling * [go] regernate files * [go] use go modules * [go] properly handle polymorph decode If polymorphism without discriminator was used, the previous code was unable to properly decode the vaules. By using a strict decoder, which rejects unknown fields, type guessing now works. * [go] make GetActualInstance not panic on nil * [go] return GenericOpenAPIError as pointer * [go] clarify helper function godoc * [go] address test regression error type * [go] regenerate go samples * [go] resolve go mod issues and test regressions * [go] resolve merge conflicts and regenerate * [go] resolve merge conflicts * [go] Replace spaces with tabs Co-authored-by: Jiri Kuncar <jiri.kuncar@gmail.com> * [go] Replace spaces with tabs Co-authored-by: Jiri Kuncar <jiri.kuncar@gmail.com> Co-authored-by: Jiri Kuncar <jiri.kuncar@gmail.com>
260 lines
6.9 KiB
Go
260 lines
6.9 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httputil"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"golang.org/x/oauth2"
|
|
|
|
sw "go-petstore"
|
|
)
|
|
|
|
func TestOAuth2(t *testing.T) {
|
|
// Setup some fake oauth2 configuration
|
|
cfg := &oauth2.Config{
|
|
ClientID: "1234567",
|
|
ClientSecret: "SuperSecret",
|
|
Endpoint: oauth2.Endpoint{
|
|
AuthURL: "https://devnull",
|
|
TokenURL: "https://devnull",
|
|
},
|
|
RedirectURL: "https://devnull",
|
|
}
|
|
|
|
// and a fake token
|
|
tok := oauth2.Token{
|
|
AccessToken: "FAKE",
|
|
RefreshToken: "So Fake",
|
|
Expiry: time.Now().Add(time.Hour * 100000),
|
|
TokenType: "Bearer",
|
|
}
|
|
|
|
// then a fake tokenSource
|
|
tokenSource := cfg.TokenSource(createContext(nil), &tok)
|
|
auth := context.WithValue(context.Background(), sw.ContextOAuth2, tokenSource)
|
|
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(context.Background()).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(auth, 12992).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
|
|
if !strings.Contains((string)(reqb), "Authorization: Bearer FAKE") {
|
|
t.Errorf("OAuth2 Authentication is missing")
|
|
}
|
|
}
|
|
|
|
func TestBasicAuth(t *testing.T) {
|
|
|
|
auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
|
|
UserName: "fakeUser",
|
|
Password: "f4k3p455",
|
|
})
|
|
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(auth).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(auth, 12992).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
if !strings.Contains((string)(reqb), "Authorization: Basic ZmFrZVVzZXI6ZjRrM3A0NTU") {
|
|
t.Errorf("Basic Authentication is missing")
|
|
}
|
|
}
|
|
|
|
func TestAccessToken(t *testing.T) {
|
|
auth := context.WithValue(context.Background(), sw.ContextAccessToken, "TESTFAKEACCESSTOKENISFAKE")
|
|
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(nil).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(auth, 12992).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
if !strings.Contains((string)(reqb), "Authorization: Bearer TESTFAKEACCESSTOKENISFAKE") {
|
|
t.Errorf("AccessToken Authentication is missing")
|
|
}
|
|
}
|
|
|
|
func TestAPIKeyNoPrefix(t *testing.T) {
|
|
auth := context.WithValue(context.Background(), sw.ContextAPIKeys, map[string]sw.APIKey{"api_key": {Key: "TEST123"}})
|
|
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(context.Background()).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
_, r, err = client.PetApi.GetPetById(auth, 12992).Execute()
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
if !strings.Contains((string)(reqb), "api_key: TEST123") {
|
|
t.Errorf("APIKey Authentication is missing")
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(auth, 12992).Execute()
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
}
|
|
|
|
func TestAPIKeyWithPrefix(t *testing.T) {
|
|
auth := context.WithValue(context.Background(), sw.ContextAPIKeys, map[string]sw.APIKey{"api_key": {Key: "TEST123", Prefix: "Bearer"}})
|
|
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(nil).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
_, r, err = client.PetApi.GetPetById(auth, 12992).Execute()
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
if !strings.Contains((string)(reqb), "api_key: Bearer TEST123") {
|
|
t.Errorf("APIKey Authentication is missing")
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(auth, 12992).Execute()
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
}
|
|
|
|
func TestDefaultHeader(t *testing.T) {
|
|
newPet := (sw.Pet{Id: sw.PtrInt64(12992), Name: "gopher",
|
|
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: sw.PtrString("pending"),
|
|
Tags: []sw.Tag{{Id: sw.PtrInt64(1), Name: sw.PtrString("tag2")}}})
|
|
|
|
r, err := client.PetApi.AddPet(context.Background()).Pet(newPet).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while adding pet: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
|
|
r, err = client.PetApi.DeletePet(context.Background(), 12992).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while deleting pet by id: %v", err)
|
|
}
|
|
if r.StatusCode != 200 {
|
|
t.Log(r)
|
|
}
|
|
reqb, _ := httputil.DumpRequest(r.Request, true)
|
|
if !strings.Contains((string)(reqb), "Testheader: testvalue") {
|
|
t.Errorf("Default Header is missing")
|
|
}
|
|
}
|
|
|
|
func TestHostOverride(t *testing.T) {
|
|
_, r, err := client.PetApi.FindPetsByStatus(context.Background()).Status(nil).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while finding pets by status: %v", err)
|
|
}
|
|
|
|
if r.Request.URL.Host != testHost {
|
|
t.Errorf("Request Host is %v, expected %v", r.Request.Host, testHost)
|
|
}
|
|
}
|
|
|
|
func TestSchemeOverride(t *testing.T) {
|
|
_, r, err := client.PetApi.FindPetsByStatus(context.Background()).Status(nil).Execute()
|
|
|
|
if err != nil {
|
|
t.Fatalf("Error while finding pets by status: %v", err)
|
|
}
|
|
|
|
if r.Request.URL.Scheme != testScheme {
|
|
t.Errorf("Request Scheme is %v, expected %v", r.Request.URL.Scheme, testScheme)
|
|
}
|
|
}
|
|
|
|
// Add custom clients to the context.
|
|
func createContext(httpClient *http.Client) context.Context {
|
|
parent := oauth2.NoContext
|
|
ctx := context.WithValue(parent, oauth2.HTTPClient, httpClient)
|
|
return ctx
|
|
}
|