| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- package pluginproxy
- import (
- "bytes"
- "fmt"
- "io/ioutil"
- "net/http"
- "net/url"
- "testing"
- "time"
- macaron "gopkg.in/macaron.v1"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/log"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/plugins"
- "github.com/grafana/grafana/pkg/setting"
- "github.com/grafana/grafana/pkg/util"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestDSRouteRule(t *testing.T) {
- Convey("DataSourceProxy", t, func() {
- Convey("Plugin with routes", func() {
- plugin := &plugins.DataSourcePlugin{
- Routes: []*plugins.AppPluginRoute{
- {
- Path: "api/v4/",
- Url: "https://www.google.com",
- ReqRole: m.ROLE_EDITOR,
- Headers: []plugins.AppPluginRouteHeader{
- {Name: "x-header", Content: "my secret {{.SecureJsonData.key}}"},
- },
- },
- {
- Path: "api/admin",
- Url: "https://www.google.com",
- ReqRole: m.ROLE_ADMIN,
- Headers: []plugins.AppPluginRouteHeader{
- {Name: "x-header", Content: "my secret {{.SecureJsonData.key}}"},
- },
- },
- {
- Path: "api/anon",
- Url: "https://www.google.com",
- Headers: []plugins.AppPluginRouteHeader{
- {Name: "x-header", Content: "my secret {{.SecureJsonData.key}}"},
- },
- },
- },
- }
- setting.SecretKey = "password"
- key, _ := util.Encrypt([]byte("123"), "password")
- ds := &m.DataSource{
- JsonData: simplejson.NewFromAny(map[string]interface{}{
- "clientId": "asd",
- }),
- SecureJsonData: map[string][]byte{
- "key": key,
- },
- }
- req, _ := http.NewRequest("GET", "http://localhost/asd", nil)
- ctx := &m.ReqContext{
- Context: &macaron.Context{
- Req: macaron.Request{Request: req},
- },
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_EDITOR},
- }
- Convey("When matching route path", func() {
- proxy := NewDataSourceProxy(ds, plugin, ctx, "api/v4/some/method")
- proxy.route = plugin.Routes[0]
- proxy.applyRoute(req)
- Convey("should add headers and update url", func() {
- So(req.URL.String(), ShouldEqual, "https://www.google.com/some/method")
- So(req.Header.Get("x-header"), ShouldEqual, "my secret 123")
- })
- })
- Convey("Validating request", func() {
- Convey("plugin route with valid role", func() {
- proxy := NewDataSourceProxy(ds, plugin, ctx, "api/v4/some/method")
- err := proxy.validateRequest()
- So(err, ShouldBeNil)
- })
- Convey("plugin route with admin role and user is editor", func() {
- proxy := NewDataSourceProxy(ds, plugin, ctx, "api/admin")
- err := proxy.validateRequest()
- So(err, ShouldNotBeNil)
- })
- Convey("plugin route with admin role and user is admin", func() {
- ctx.SignedInUser.OrgRole = m.ROLE_ADMIN
- proxy := NewDataSourceProxy(ds, plugin, ctx, "api/admin")
- err := proxy.validateRequest()
- So(err, ShouldBeNil)
- })
- })
- })
- Convey("Plugin with multiple routes for token auth", func() {
- plugin := &plugins.DataSourcePlugin{
- Routes: []*plugins.AppPluginRoute{
- {
- Path: "pathwithtoken1",
- Url: "https://api.nr1.io/some/path",
- TokenAuth: &plugins.JwtTokenAuth{
- Url: "https://login.server.com/{{.JsonData.tenantId}}/oauth2/token",
- Params: map[string]string{
- "grant_type": "client_credentials",
- "client_id": "{{.JsonData.clientId}}",
- "client_secret": "{{.SecureJsonData.clientSecret}}",
- "resource": "https://api.nr1.io",
- },
- },
- },
- {
- Path: "pathwithtoken2",
- Url: "https://api.nr2.io/some/path",
- TokenAuth: &plugins.JwtTokenAuth{
- Url: "https://login.server.com/{{.JsonData.tenantId}}/oauth2/token",
- Params: map[string]string{
- "grant_type": "client_credentials",
- "client_id": "{{.JsonData.clientId}}",
- "client_secret": "{{.SecureJsonData.clientSecret}}",
- "resource": "https://api.nr2.io",
- },
- },
- },
- },
- }
- setting.SecretKey = "password"
- key, _ := util.Encrypt([]byte("123"), "password")
- ds := &m.DataSource{
- JsonData: simplejson.NewFromAny(map[string]interface{}{
- "clientId": "asd",
- "tenantId": "mytenantId",
- }),
- SecureJsonData: map[string][]byte{
- "clientSecret": key,
- },
- }
- req, _ := http.NewRequest("GET", "http://localhost/asd", nil)
- ctx := &m.ReqContext{
- Context: &macaron.Context{
- Req: macaron.Request{Request: req},
- },
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_EDITOR},
- }
- Convey("When creating and caching access tokens", func() {
- var authorizationHeaderCall1 string
- var authorizationHeaderCall2 string
- Convey("first call should add authorization header with access token", func() {
- json, err := ioutil.ReadFile("./test-data/access-token-1.json")
- So(err, ShouldBeNil)
- client = newFakeHTTPClient(json)
- proxy1 := NewDataSourceProxy(ds, plugin, ctx, "pathwithtoken1")
- proxy1.route = plugin.Routes[0]
- proxy1.applyRoute(req)
- authorizationHeaderCall1 = req.Header.Get("Authorization")
- So(req.URL.String(), ShouldEqual, "https://api.nr1.io/some/path")
- So(authorizationHeaderCall1, ShouldStartWith, "Bearer eyJ0e")
- Convey("second call to another route should add a different access token", func() {
- json2, err := ioutil.ReadFile("./test-data/access-token-2.json")
- So(err, ShouldBeNil)
- req, _ := http.NewRequest("GET", "http://localhost/asd", nil)
- client = newFakeHTTPClient(json2)
- proxy2 := NewDataSourceProxy(ds, plugin, ctx, "pathwithtoken2")
- proxy2.route = plugin.Routes[1]
- proxy2.applyRoute(req)
- authorizationHeaderCall2 = req.Header.Get("Authorization")
- So(req.URL.String(), ShouldEqual, "https://api.nr2.io/some/path")
- So(authorizationHeaderCall1, ShouldStartWith, "Bearer eyJ0e")
- So(authorizationHeaderCall2, ShouldStartWith, "Bearer eyJ0e")
- So(authorizationHeaderCall2, ShouldNotEqual, authorizationHeaderCall1)
- Convey("third call to first route should add cached access token", func() {
- req, _ := http.NewRequest("GET", "http://localhost/asd", nil)
- client = newFakeHTTPClient([]byte{})
- proxy3 := NewDataSourceProxy(ds, plugin, ctx, "pathwithtoken1")
- proxy3.route = plugin.Routes[0]
- proxy3.applyRoute(req)
- authorizationHeaderCall3 := req.Header.Get("Authorization")
- So(req.URL.String(), ShouldEqual, "https://api.nr1.io/some/path")
- So(authorizationHeaderCall1, ShouldStartWith, "Bearer eyJ0e")
- So(authorizationHeaderCall3, ShouldStartWith, "Bearer eyJ0e")
- So(authorizationHeaderCall3, ShouldEqual, authorizationHeaderCall1)
- })
- })
- })
- })
- })
- Convey("When proxying graphite", func() {
- setting.BuildVersion = "5.3.0"
- plugin := &plugins.DataSourcePlugin{}
- ds := &m.DataSource{Url: "htttp://graphite:8080", Type: m.DS_GRAPHITE}
- ctx := &m.ReqContext{}
- proxy := NewDataSourceProxy(ds, plugin, ctx, "/render")
- req, err := http.NewRequest(http.MethodGet, "http://grafana.com/sub", nil)
- So(err, ShouldBeNil)
- proxy.getDirector()(req)
- Convey("Can translate request url and path", func() {
- So(req.URL.Host, ShouldEqual, "graphite:8080")
- So(req.URL.Path, ShouldEqual, "/render")
- So(req.Header.Get("User-Agent"), ShouldEqual, "Grafana/5.3.0")
- })
- })
- Convey("When proxying InfluxDB", func() {
- plugin := &plugins.DataSourcePlugin{}
- ds := &m.DataSource{
- Type: m.DS_INFLUXDB_08,
- Url: "http://influxdb:8083",
- Database: "site",
- User: "user",
- Password: "password",
- }
- ctx := &m.ReqContext{}
- proxy := NewDataSourceProxy(ds, plugin, ctx, "")
- req, err := http.NewRequest(http.MethodGet, "http://grafana.com/sub", nil)
- So(err, ShouldBeNil)
- proxy.getDirector()(req)
- Convey("Should add db to url", func() {
- So(req.URL.Path, ShouldEqual, "/db/site/")
- })
- Convey("Should add username and password", func() {
- queryVals := req.URL.Query()
- So(queryVals["u"][0], ShouldEqual, "user")
- So(queryVals["p"][0], ShouldEqual, "password")
- })
- })
- Convey("When proxying a data source with no keepCookies specified", func() {
- plugin := &plugins.DataSourcePlugin{}
- json, _ := simplejson.NewJson([]byte(`{"keepCookies": []}`))
- ds := &m.DataSource{
- Type: m.DS_GRAPHITE,
- Url: "http://graphite:8086",
- JsonData: json,
- }
- ctx := &m.ReqContext{}
- proxy := NewDataSourceProxy(ds, plugin, ctx, "")
- requestURL, _ := url.Parse("http://grafana.com/sub")
- req := http.Request{URL: requestURL, Header: make(http.Header)}
- cookies := "grafana_user=admin; grafana_remember=99; grafana_sess=11; JSESSION_ID=test"
- req.Header.Set("Cookie", cookies)
- proxy.getDirector()(&req)
- Convey("Should clear all cookies", func() {
- So(req.Header.Get("Cookie"), ShouldEqual, "")
- })
- })
- Convey("When proxying a data source with keep cookies specified", func() {
- plugin := &plugins.DataSourcePlugin{}
- json, _ := simplejson.NewJson([]byte(`{"keepCookies": ["JSESSION_ID"]}`))
- ds := &m.DataSource{
- Type: m.DS_GRAPHITE,
- Url: "http://graphite:8086",
- JsonData: json,
- }
- ctx := &m.ReqContext{}
- proxy := NewDataSourceProxy(ds, plugin, ctx, "")
- requestURL, _ := url.Parse("http://grafana.com/sub")
- req := http.Request{URL: requestURL, Header: make(http.Header)}
- cookies := "grafana_user=admin; grafana_remember=99; grafana_sess=11; JSESSION_ID=test"
- req.Header.Set("Cookie", cookies)
- proxy.getDirector()(&req)
- Convey("Should keep named cookies", func() {
- So(req.Header.Get("Cookie"), ShouldEqual, "JSESSION_ID=test")
- })
- })
- Convey("When interpolating string", func() {
- data := templateData{
- SecureJsonData: map[string]string{
- "Test": "0asd+asd",
- },
- }
- interpolated, err := interpolateString("{{.SecureJsonData.Test}}", data)
- So(err, ShouldBeNil)
- So(interpolated, ShouldEqual, "0asd+asd")
- })
- Convey("When proxying a data source with custom headers specified", func() {
- plugin := &plugins.DataSourcePlugin{}
- encryptedData, err := util.Encrypt([]byte(`Bearer xf5yhfkpsnmgo`), setting.SecretKey)
- ds := &m.DataSource{
- Type: m.DS_PROMETHEUS,
- Url: "http://prometheus:9090",
- JsonData: simplejson.NewFromAny(map[string]interface{}{
- "httpHeaderName1": "Authorization",
- }),
- SecureJsonData: map[string][]byte{
- "httpHeaderValue1": encryptedData,
- },
- }
- ctx := &m.ReqContext{}
- proxy := NewDataSourceProxy(ds, plugin, ctx, "")
- requestURL, _ := url.Parse("http://grafana.com/sub")
- req := http.Request{URL: requestURL, Header: make(http.Header)}
- proxy.getDirector()(&req)
- if err != nil {
- log.Fatal(4, err.Error())
- }
- Convey("Match header value after decryption", func() {
- So(req.Header.Get("Authorization"), ShouldEqual, "Bearer xf5yhfkpsnmgo")
- })
- })
- })
- }
- type httpClientStub struct {
- fakeBody []byte
- }
- func (c *httpClientStub) Do(req *http.Request) (*http.Response, error) {
- bodyJSON, _ := simplejson.NewJson(c.fakeBody)
- _, passedTokenCacheTest := bodyJSON.CheckGet("expires_on")
- So(passedTokenCacheTest, ShouldBeTrue)
- bodyJSON.Set("expires_on", fmt.Sprint(time.Now().Add(time.Second*60).Unix()))
- body, _ := bodyJSON.MarshalJSON()
- resp := &http.Response{
- Body: ioutil.NopCloser(bytes.NewReader(body)),
- }
- return resp, nil
- }
- func newFakeHTTPClient(fakeBody []byte) httpClient {
- return &httpClientStub{
- fakeBody: fakeBody,
- }
- }
|