mirror of https://github.com/grafana/grafana.git
160 lines
3.3 KiB
Go
160 lines
3.3 KiB
Go
package datasources
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
)
|
|
|
|
func TestAllowedCookies(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
given map[string]any
|
|
want []string
|
|
}{
|
|
{
|
|
desc: "Usual json data with keepCookies",
|
|
given: map[string]any{
|
|
"keepCookies": []string{"cookie2"},
|
|
},
|
|
want: []string{"cookie2"},
|
|
},
|
|
{
|
|
desc: "Usual json data without kepCookies",
|
|
given: map[string]any{
|
|
"something": "somethingelse",
|
|
},
|
|
want: []string(nil),
|
|
},
|
|
{
|
|
desc: "Usual json data that has multiple values in keepCookies",
|
|
given: map[string]any{
|
|
"keepCookies": []string{"cookie1", "cookie2", "special[]"},
|
|
},
|
|
want: []string{"cookie1", "cookie2", "special[]"},
|
|
},
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
jsonDataBytes, err := json.Marshal(&test.given)
|
|
require.NoError(t, err)
|
|
jsonData, err := simplejson.NewJson(jsonDataBytes)
|
|
require.NoError(t, err)
|
|
|
|
ds := DataSource{
|
|
ID: 1235,
|
|
JsonData: jsonData,
|
|
UID: "test",
|
|
}
|
|
|
|
actual := ds.AllowedCookies()
|
|
assert.Equal(t, test.want, actual)
|
|
assert.EqualValues(t, test.want, actual)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestTeamHTTPHeaders(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
given string
|
|
want *TeamHTTPHeaders
|
|
}{
|
|
{
|
|
desc: "Usual json data with teamHttpHeaders",
|
|
given: `{"teamHttpHeaders": {"headers": {"101": [{"header": "X-CUSTOM-HEADER", "value": "foo"}]}}}`,
|
|
want: &TeamHTTPHeaders{
|
|
Headers: TeamHeaders{
|
|
"101": {
|
|
{Header: "X-CUSTOM-HEADER", LBACRule: "foo"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
desc: "Json data without teamHttpHeaders",
|
|
given: `{"foo": "bar"}`,
|
|
want: nil,
|
|
},
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
jsonDataBytes := []byte(test.given)
|
|
jsonData, err := simplejson.NewJson(jsonDataBytes)
|
|
require.NoError(t, err)
|
|
|
|
ds := DataSource{
|
|
ID: 1235,
|
|
JsonData: jsonData,
|
|
UID: "test",
|
|
}
|
|
|
|
actual, err := GetTeamHTTPHeaders(ds.JsonData)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, test.want, actual)
|
|
assert.EqualValues(t, test.want, actual)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsSecureSocksDSProxyEnabled(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
ds *DataSource
|
|
want bool
|
|
}{
|
|
{
|
|
desc: "Empty json",
|
|
ds: &DataSource{
|
|
JsonData: simplejson.New(),
|
|
},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "Json with enableSecureSocksProxy",
|
|
ds: &DataSource{
|
|
JsonData: simplejson.NewFromAny(map[string]interface{}{
|
|
"enableSecureSocksProxy": true,
|
|
}),
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
desc: "Json with string enableSecureSocksProxy",
|
|
ds: &DataSource{
|
|
JsonData: simplejson.NewFromAny(map[string]interface{}{
|
|
"enableSecureSocksProxy": "true",
|
|
}),
|
|
},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "Json with enableSecureSocksProxy false",
|
|
ds: &DataSource{
|
|
JsonData: simplejson.NewFromAny(map[string]interface{}{
|
|
"enableSecureSocksProxy": false,
|
|
}),
|
|
},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "Json with no json data",
|
|
ds: &DataSource{},
|
|
want: false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
actual := tc.ds.IsSecureSocksDSProxyEnabled()
|
|
assert.Equal(t, tc.want, actual)
|
|
})
|
|
}
|
|
}
|