Files
libopenapi/datamodel/high/base/security_requirement_test.go
quobix 6e9db7f838 A massive test update to bring everything inlne with the new Buildable signature.
All tests in index and datamodel now pass. The rolodex fixes all the things.

Signed-off-by: quobix <dave@quobix.com>
2023-10-23 18:18:44 -04:00

47 lines
1.0 KiB
Go

// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
// SPDX-License-Identifier: MIT
package base
import (
"context"
lowmodel "github.com/pb33f/libopenapi/datamodel/low"
lowbase "github.com/pb33f/libopenapi/datamodel/low/base"
"github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3"
"strings"
"testing"
)
func TestNewSecurityRequirement(t *testing.T) {
var cNode yaml.Node
yml := `pizza:
- cheese
- tomato
cake:
- icing
- sponge`
_ = yaml.Unmarshal([]byte(yml), &cNode)
var lowExt lowbase.SecurityRequirement
_ = lowmodel.BuildModel(cNode.Content[0], &lowExt)
_ = lowExt.Build(context.Background(), nil, cNode.Content[0], nil)
highExt := NewSecurityRequirement(&lowExt)
assert.Len(t, highExt.Requirements["pizza"], 2)
assert.Len(t, highExt.Requirements["cake"], 2)
wentLow := highExt.GoLow()
assert.Len(t, wentLow.Requirements.Value, 2)
assert.NotNil(t, highExt.GoLowUntyped())
// render the high-level object as YAML
highBytes, _ := highExt.Render()
assert.Equal(t, yml, strings.TrimSpace(string(highBytes)))
}