mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
b07d0b1026
This adds support for using templated/dynamic urls in routes. * refactor interpolateString into utils and add interpolation support for app plugin routes. * cleanup and add error check for url parse failure * add docs for interpolated route urls Closes #16835
22 lines
428 B
Go
22 lines
428 B
Go
package pluginproxy
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestInterpolateString(t *testing.T) {
|
|
Convey("When interpolating string", t, func() {
|
|
data := templateData{
|
|
SecureJsonData: map[string]string{
|
|
"Test": "0asd+asd",
|
|
},
|
|
}
|
|
|
|
interpolated, err := InterpolateString("{{.SecureJsonData.Test}}", data)
|
|
So(err, ShouldBeNil)
|
|
So(interpolated, ShouldEqual, "0asd+asd")
|
|
})
|
|
}
|