mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
e6857bf17d
Fixes #47530
37 lines
731 B
Go
37 lines
731 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestExtractPluginProxyPath(t *testing.T) {
|
|
testCases := []struct {
|
|
originalRawPath string
|
|
exp string
|
|
}{
|
|
{
|
|
"/api/plugin-proxy/test",
|
|
"",
|
|
},
|
|
{
|
|
"/api/plugin-proxy/test/some/thing",
|
|
"some/thing",
|
|
},
|
|
{
|
|
"/api/plugin-proxy/test2/api/services/afsd%2Fafsd/operations",
|
|
"api/services/afsd%2Fafsd/operations",
|
|
},
|
|
{
|
|
"/api/plugin-proxy/cloudflare-app/with-token/api/v4/accounts",
|
|
"with-token/api/v4/accounts",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
t.Run("Given raw path, should extract expected proxy path", func(t *testing.T) {
|
|
assert.Equal(t, tc.exp, extractProxyPath(tc.originalRawPath))
|
|
})
|
|
}
|
|
}
|