mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 04:20:14 +00:00
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package base
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func TestInfo_Build(t *testing.T) {
|
|
|
|
yml := `title: pizza
|
|
description: pie
|
|
termsOfService: yes indeed.
|
|
contact:
|
|
name: buckaroo
|
|
url: https://pb33f.io
|
|
email: buckaroo@pb33f.io
|
|
license:
|
|
name: magic
|
|
url: https://pb33f.io/license
|
|
x-cli-name: pizza cli`
|
|
|
|
var idxNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml), &idxNode)
|
|
idx := index.NewSpecIndex(&idxNode)
|
|
|
|
var n Info
|
|
err := low.BuildModel(&idxNode, &n)
|
|
assert.NoError(t, err)
|
|
|
|
err = n.Build(idxNode.Content[0], idx)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "pizza", n.Title.Value)
|
|
assert.Equal(t, "pie", n.Description.Value)
|
|
assert.Equal(t, "yes indeed.", n.TermsOfService.Value)
|
|
|
|
con := n.Contact.Value
|
|
assert.NotNil(t, con)
|
|
assert.Equal(t, "buckaroo", con.Name.Value)
|
|
assert.Equal(t, "https://pb33f.io", con.URL.Value)
|
|
assert.Equal(t, "buckaroo@pb33f.io", con.Email.Value)
|
|
|
|
lic := n.License.Value
|
|
assert.NotNil(t, lic)
|
|
assert.Equal(t, "magic", lic.Name.Value)
|
|
assert.Equal(t, "https://pb33f.io/license", lic.URL.Value)
|
|
|
|
cliName := n.FindExtension("x-cli-name")
|
|
assert.NotNil(t, cliName)
|
|
assert.Equal(t, "pizza cli", cliName.Value)
|
|
}
|
|
|
|
func TestContact_Build(t *testing.T) {
|
|
n := &Contact{}
|
|
k := n.Build(nil, nil)
|
|
assert.Nil(t, k)
|
|
}
|
|
|
|
func TestLicense_Build(t *testing.T) {
|
|
n := &License{}
|
|
k := n.Build(nil, nil)
|
|
assert.Nil(t, k)
|
|
}
|