summaryrefslogtreecommitdiffstats
path: root/app/plugin_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-12-01 09:07:32 -0600
committerHarrison Healey <harrisonmhealey@gmail.com>2017-12-01 10:07:32 -0500
commit1c1c184bed42e0d3350c3eadf79681a98ce4ee3d (patch)
treeaf4feafa81246eea703e56b572e73273575932f1 /app/plugin_test.go
parent9791c3e8d2e2ade6c593437ec7f59feb932998a9 (diff)
downloadchat-1c1c184bed42e0d3350c3eadf79681a98ce4ee3d.tar.gz
chat-1c1c184bed42e0d3350c3eadf79681a98ce4ee3d.tar.bz2
chat-1c1c184bed42e0d3350c3eadf79681a98ce4ee3d.zip
plugin http fixes and tests (#7929)
Diffstat (limited to 'app/plugin_test.go')
-rw-r--r--app/plugin_test.go65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/plugin_test.go b/app/plugin_test.go
index a9d872401..5c70cbc4f 100644
--- a/app/plugin_test.go
+++ b/app/plugin_test.go
@@ -4,9 +4,15 @@
package app
import (
+ "net/http"
+ "net/http/httptest"
"testing"
+ "github.com/gorilla/mux"
"github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+
+ "github.com/mattermost/mattermost-server/model"
)
func TestPluginKeyValueStore(t *testing.T) {
@@ -33,3 +39,62 @@ func TestPluginKeyValueStore(t *testing.T) {
assert.Nil(t, th.App.DeletePluginKey(pluginId, "postkey"))
assert.Nil(t, th.App.DeletePluginKey(pluginId, "notrealkey"))
}
+
+func TestServePluginRequest(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+
+ th.App.UpdateConfig(func(cfg *model.Config) { *cfg.PluginSettings.Enable = false })
+
+ w := httptest.NewRecorder()
+ r := httptest.NewRequest("GET", "/plugins/foo/bar", nil)
+ th.App.ServePluginRequest(w, r)
+ assert.Equal(t, http.StatusNotImplemented, w.Result().StatusCode)
+}
+
+func TestHandlePluginRequest(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+
+ th.App.UpdateConfig(func(cfg *model.Config) {
+ *cfg.PluginSettings.Enable = false
+ *cfg.ServiceSettings.EnableUserAccessTokens = true
+ })
+
+ token, err := th.App.CreateUserAccessToken(&model.UserAccessToken{
+ UserId: th.BasicUser.Id,
+ })
+ require.Nil(t, err)
+
+ var assertions func(*http.Request)
+ router := mux.NewRouter()
+ router.HandleFunc("/plugins/{plugin_id:[A-Za-z0-9\\_\\-\\.]+}/{anything:.*}", func(_ http.ResponseWriter, r *http.Request) {
+ th.App.servePluginRequest(nil, r, func(_ http.ResponseWriter, r *http.Request) {
+ assertions(r)
+ })
+ })
+
+ r := httptest.NewRequest("GET", "/plugins/foo/bar", nil)
+ r.Header.Add("Authorization", "Bearer "+token.Token)
+ assertions = func(r *http.Request) {
+ assert.Equal(t, "/bar", r.URL.Path)
+ assert.Equal(t, th.BasicUser.Id, r.Header.Get("Mattermost-User-Id"))
+ }
+ router.ServeHTTP(nil, r)
+
+ r = httptest.NewRequest("GET", "/plugins/foo/bar?a=b&access_token="+token.Token+"&c=d", nil)
+ assertions = func(r *http.Request) {
+ assert.Equal(t, "/bar", r.URL.Path)
+ assert.Equal(t, "a=b&c=d", r.URL.RawQuery)
+ assert.Equal(t, th.BasicUser.Id, r.Header.Get("Mattermost-User-Id"))
+ }
+ router.ServeHTTP(nil, r)
+
+ r = httptest.NewRequest("GET", "/plugins/foo/bar?a=b&access_token=asdf&c=d", nil)
+ assertions = func(r *http.Request) {
+ assert.Equal(t, "/bar", r.URL.Path)
+ assert.Equal(t, "a=b&c=d", r.URL.RawQuery)
+ assert.Empty(t, r.Header.Get("Mattermost-User-Id"))
+ }
+ router.ServeHTTP(nil, r)
+}