mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 20:47:44 +00:00
3.0 and 2.0 do not work, there are multiple versions and anything with a period in it sucks from my point of view, v2 and v3 feel much better from a DX perspective.
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
v3 "github.com/pb33f/libopenapi/datamodel/low/v3"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
"testing"
|
|
)
|
|
|
|
// this test exists because the sample contract doesn't contain a
|
|
// responses with *everything* populated, I had already written a ton of tests
|
|
// with hard coded line and column numbers in them, changing the spec above the bottom will
|
|
// create pointless test changes. So here is a standalone test. you know... for science.
|
|
|
|
func TestNewResponses(t *testing.T) {
|
|
|
|
yml := `default:
|
|
description: default response`
|
|
|
|
var idxNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(yml), &idxNode)
|
|
idx := index.NewSpecIndex(&idxNode)
|
|
|
|
var n v3.Responses
|
|
_ = low.BuildModel(&idxNode, &n)
|
|
_ = n.Build(idxNode.Content[0], idx)
|
|
|
|
r := NewResponses(&n)
|
|
|
|
assert.Equal(t, "default response", r.Default.Description)
|
|
assert.Equal(t, 1, r.GoLow().Default.KeyNode.Line)
|
|
|
|
}
|