mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 12:37:49 +00:00
All tests in index and datamodel now pass. The rolodex fixes all the things. Signed-off-by: quobix <dave@quobix.com>
128 lines
2.8 KiB
Go
128 lines
2.8 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
import (
|
|
"context"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
"testing"
|
|
)
|
|
|
|
func TestLink_Build(t *testing.T) {
|
|
|
|
yml := `operationRef: '#/someref'
|
|
operationId: someId
|
|
parameters:
|
|
param1: something
|
|
param2: somethingElse
|
|
requestBody: somebody
|
|
description: this is a link object.
|
|
server:
|
|
url: https://pb33f.io
|
|
x-linky: slinky
|
|
`
|
|
|
|
var idxNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml), &idxNode)
|
|
idx := index.NewSpecIndex(&idxNode)
|
|
|
|
var n Link
|
|
err := low.BuildModel(idxNode.Content[0], &n)
|
|
assert.NoError(t, err)
|
|
|
|
err = n.Build(context.Background(), nil, idxNode.Content[0], idx)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "#/someref", n.OperationRef.Value)
|
|
assert.Equal(t, "someId", n.OperationId.Value)
|
|
assert.Equal(t, "this is a link object.", n.Description.Value)
|
|
|
|
ext := n.FindExtension("x-linky")
|
|
assert.NotNil(t, ext)
|
|
assert.Equal(t, "slinky", ext.Value)
|
|
|
|
param1 := n.FindParameter("param1")
|
|
assert.Equal(t, "something", param1.Value)
|
|
param2 := n.FindParameter("param2")
|
|
assert.Equal(t, "somethingElse", param2.Value)
|
|
|
|
assert.NotNil(t, n.Server.Value)
|
|
assert.Equal(t, "https://pb33f.io", n.Server.Value.URL.Value)
|
|
assert.Len(t, n.GetExtensions(), 1)
|
|
|
|
}
|
|
|
|
func TestLink_Build_Fail(t *testing.T) {
|
|
|
|
yml := `operationRef: '#/someref'
|
|
operationId: someId
|
|
parameters:
|
|
param1: something
|
|
param2: somethingElse
|
|
requestBody: somebody
|
|
description: this is a link object.
|
|
server:
|
|
$ref: #bork`
|
|
|
|
var idxNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml), &idxNode)
|
|
idx := index.NewSpecIndex(&idxNode)
|
|
|
|
var n Link
|
|
err := low.BuildModel(&idxNode, &n)
|
|
assert.NoError(t, err)
|
|
|
|
err = n.Build(context.Background(), nil, idxNode.Content[0], idx)
|
|
assert.Error(t, err)
|
|
|
|
}
|
|
|
|
func TestLink_Hash(t *testing.T) {
|
|
|
|
yml := `operationRef: something
|
|
operationId: someWhere
|
|
parameters:
|
|
fried: sausage
|
|
bacon: eggs
|
|
requestBody: burgers please
|
|
description: a useless and invalid link
|
|
server:
|
|
url: https://pb33f.io
|
|
x-mcdonalds: bigmac`
|
|
|
|
var idxNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml), &idxNode)
|
|
idx := index.NewSpecIndex(&idxNode)
|
|
|
|
var n Link
|
|
_ = low.BuildModel(idxNode.Content[0], &n)
|
|
_ = n.Build(context.Background(), nil, idxNode.Content[0], idx)
|
|
|
|
yml2 := `parameters:
|
|
bacon: eggs
|
|
fried: sausage
|
|
requestBody: burgers please
|
|
operationId: someWhere
|
|
operationRef: something
|
|
description: a useless and invalid link
|
|
x-mcdonalds: bigmac
|
|
server:
|
|
url: https://pb33f.io`
|
|
|
|
var idxNode2 yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml2), &idxNode2)
|
|
idx2 := index.NewSpecIndex(&idxNode2)
|
|
|
|
var n2 Link
|
|
_ = low.BuildModel(idxNode2.Content[0], &n2)
|
|
_ = n2.Build(context.Background(), nil, idxNode2.Content[0], idx2)
|
|
|
|
// hash
|
|
assert.Equal(t, n.Hash(), n2.Hash())
|
|
|
|
}
|