Files
libopenapi/datamodel/high/v3/oauth_flow_test.go
Dave Shanley 5d7f22fca7 first level testing for rending v3 model in place.
Now onto some hardening tests, lets re-render each spec after reading to check for failures.
2023-03-26 06:10:31 -04:00

46 lines
1.2 KiB
Go

// Copyright 2023 Princess B33f Heavy Industries / Dave Shanley
// SPDX-License-Identifier: MIT
package v3
import (
"github.com/stretchr/testify/assert"
"strings"
"testing"
)
func TestOAuthFlow_MarshalYAML(t *testing.T) {
oflow := &OAuthFlow{
AuthorizationUrl: "https://pb33f.io",
TokenUrl: "https://pb33f.io/token",
RefreshUrl: "https://pb33f.io/refresh",
Scopes: map[string]string{"chicken": "nuggets", "beefy": "soup"},
}
rend, _ := oflow.Render()
desired := `authorizationUrl: https://pb33f.io
tokenUrl: https://pb33f.io/token
refreshUrl: https://pb33f.io/refresh
scopes:
chicken: nuggets
beefy: soup`
// we can't check for equality, as the scopes map will be randomly ordered when created from scratch.
assert.Len(t, desired, 149)
// mutate
oflow.Scopes = nil
oflow.Extensions = map[string]interface{}{"x-burgers": "why not?"}
desired = `authorizationUrl: https://pb33f.io
tokenUrl: https://pb33f.io/token
refreshUrl: https://pb33f.io/refresh
x-burgers: why not?`
rend, _ = oflow.Render()
assert.Equal(t, desired, strings.TrimSpace(string(rend)))
}