mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 04:20:14 +00:00
28 lines
892 B
Go
28 lines
892 B
Go
// Copyright 2023 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package index
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"net/url"
|
|
"testing"
|
|
)
|
|
|
|
func TestGenerateCleanSpecConfigBaseURL(t *testing.T) {
|
|
u, _ := url.Parse("https://pb33f.io/things/stuff")
|
|
path := "."
|
|
assert.Equal(t, "https://pb33f.io/things/stuff",
|
|
GenerateCleanSpecConfigBaseURL(u, path, false))
|
|
}
|
|
|
|
func TestGenerateCleanSpecConfigBaseURL_RelativeDeep(t *testing.T) {
|
|
u, _ := url.Parse("https://pb33f.io/things/stuff/jazz/cakes/winter/oil")
|
|
path := "../../../../foo/bar/baz/crap.yaml#thang"
|
|
assert.Equal(t, "https://pb33f.io/things/stuff/foo/bar/baz",
|
|
GenerateCleanSpecConfigBaseURL(u, path, false))
|
|
|
|
assert.Equal(t, "https://pb33f.io/things/stuff/foo/bar/baz/crap.yaml#thang",
|
|
GenerateCleanSpecConfigBaseURL(u, path, true))
|
|
}
|