mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
42 lines
943 B
Go
42 lines
943 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
"gopkg.in/macaron.v1"
|
||
|
)
|
||
|
|
||
|
func TestQueryBoolWithDefault(t *testing.T) {
|
||
|
tc := map[string]struct {
|
||
|
url string
|
||
|
defaultValue bool
|
||
|
expected bool
|
||
|
}{
|
||
|
"with no value specified, the default value is returned": {
|
||
|
url: "http://localhost/api/v2/alerts",
|
||
|
defaultValue: true,
|
||
|
expected: true,
|
||
|
},
|
||
|
"with a value specified, the default value is overridden": {
|
||
|
url: "http://localhost/api/v2/alerts?silenced=false",
|
||
|
defaultValue: true,
|
||
|
expected: false,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for name, tt := range tc {
|
||
|
t.Run(name, func(t *testing.T) {
|
||
|
req, err := http.NewRequest("GET", tt.url, nil)
|
||
|
require.NoError(t, err)
|
||
|
r := ReqContext{
|
||
|
Context: &macaron.Context{
|
||
|
Req: macaron.Request{Request: req},
|
||
|
},
|
||
|
}
|
||
|
require.Equal(t, tt.expected, r.QueryBoolWithDefault("silenced", tt.defaultValue))
|
||
|
})
|
||
|
}
|
||
|
}
|