mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
Cleaned up all interesting static checks. All that is left is cosmetics. Signed-off-by: quobix <dave@quobix.com>
81 lines
1.7 KiB
Go
81 lines
1.7 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package base
|
|
|
|
import (
|
|
"context"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
"testing"
|
|
)
|
|
|
|
func TestLicense_Hash(t *testing.T) {
|
|
|
|
left := `url: https://pb33f.io
|
|
description: the ranch`
|
|
|
|
right := `url: https://pb33f.io
|
|
description: the ranch`
|
|
|
|
var lNode, rNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(left), &lNode)
|
|
_ = yaml.Unmarshal([]byte(right), &rNode)
|
|
|
|
// create low level objects
|
|
var lDoc License
|
|
var rDoc License
|
|
_ = low.BuildModel(lNode.Content[0], &lDoc)
|
|
_ = low.BuildModel(rNode.Content[0], &rDoc)
|
|
|
|
assert.Equal(t, lDoc.Hash(), rDoc.Hash())
|
|
|
|
}
|
|
|
|
func TestLicense_WithIdentifier_Hash(t *testing.T) {
|
|
|
|
left := `identifier: MIT
|
|
description: the ranch`
|
|
|
|
right := `identifier: MIT
|
|
description: the ranch`
|
|
|
|
var lNode, rNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(left), &lNode)
|
|
_ = yaml.Unmarshal([]byte(right), &rNode)
|
|
|
|
// create low level objects
|
|
var lDoc License
|
|
var rDoc License
|
|
err := low.BuildModel(lNode.Content[0], &lDoc)
|
|
assert.NoError(t, err)
|
|
|
|
err = low.BuildModel(rNode.Content[0], &rDoc)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, lDoc.Hash(), rDoc.Hash())
|
|
|
|
}
|
|
|
|
func TestLicense_WithIdentifierAndURL_Error(t *testing.T) {
|
|
|
|
left := `identifier: MIT
|
|
url: https://pb33f.io
|
|
description: the ranch`
|
|
|
|
var lNode yaml.Node
|
|
_ = yaml.Unmarshal([]byte(left), &lNode)
|
|
|
|
// create low level objects
|
|
var lDoc License
|
|
err := low.BuildModel(lNode.Content[0], &lDoc)
|
|
assert.NoError(t, err)
|
|
|
|
err = lDoc.Build(context.Background(), nil, lNode.Content[0], nil)
|
|
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "license cannot have both a URL and an identifier, they are mutually exclusive", err.Error())
|
|
|
|
}
|