2d8f396eeb
Previously the base path for the API was hardcoded to `/api` and the specified version. This was not obvious that the generated code was setting that base path and it was not flexible for serving the API under a different path than `/api`. We will likely need to set a different base path if we pretend to serve the new back office API that we are going to implement alongside the current admin API until the new back office is fully implemented and verified that works properly. This commit also fix add the base path of the endpoints to the documentation because it was even more confusing for somebody that wants to use the API having to find out them through looking to the generated code. Change-Id: I6efab6b6f3d295129d6f42f7fbba8c2dc19725f4
48 lines
1.5 KiB
Go
48 lines
1.5 KiB
Go
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package apigen
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAPI_endpointBasePath(t *testing.T) {
|
|
cases := []struct {
|
|
version string
|
|
basePath string
|
|
expected string
|
|
}{
|
|
{version: "", basePath: "", expected: "/"},
|
|
{version: "v1", basePath: "", expected: "/v1"},
|
|
{version: "v0", basePath: "/", expected: "/v0"},
|
|
{version: "", basePath: "api", expected: "/api"},
|
|
{version: "v2", basePath: "api", expected: "/api/v2"},
|
|
{version: "v2", basePath: "/api", expected: "/api/v2"},
|
|
{version: "v2", basePath: "api/", expected: "/api/v2"},
|
|
{version: "v2", basePath: "/api/", expected: "/api/v2"},
|
|
{version: "/v3", basePath: "api", expected: "/api/v3"},
|
|
{version: "/v3/", basePath: "api", expected: "/api/v3"},
|
|
{version: "v3/", basePath: "api", expected: "/api/v3"},
|
|
{version: "//v3/", basePath: "api", expected: "/api/v3"},
|
|
{version: "v3///", basePath: "api", expected: "/api/v3"},
|
|
{version: "/v3///", basePath: "/api/test/", expected: "/api/test/v3"},
|
|
{version: "/v4.2", basePath: "api/test", expected: "/api/test/v4.2"},
|
|
{version: "/v4/2", basePath: "/api/test", expected: "/api/test/v4/2"},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
t.Run(fmt.Sprintf("version:%s basePath: %s", c.version, c.basePath), func(t *testing.T) {
|
|
a := API{
|
|
Version: c.version,
|
|
BasePath: c.basePath,
|
|
}
|
|
|
|
assert.Equal(t, c.expected, a.endpointBasePath())
|
|
})
|
|
}
|
|
}
|