summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-03 12:41:02 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-03 15:41:02 -0400
commit80925f7cfd2fe4fe98418119c70e5e36c738f41a (patch)
treed6dffe4ee56051840bc4b6eb4ca15349c1d26329
parent1476ca5b2d2430858f5cfe8206815ec659393609 (diff)
downloadchat-80925f7cfd2fe4fe98418119c70e5e36c738f41a.tar.gz
chat-80925f7cfd2fe4fe98418119c70e5e36c738f41a.tar.bz2
chat-80925f7cfd2fe4fe98418119c70e5e36c738f41a.zip
Fixing unit tests for Go 1.10 (#8568)
-rw-r--r--Makefile4
-rw-r--r--api4/command_test.go11
-rw-r--r--api4/file_test.go3
3 files changed, 16 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 98c6debeb..8f4b70fac 100644
--- a/Makefile
+++ b/Makefile
@@ -336,6 +336,7 @@ ifeq ($(BUILD_ENTERPRISE_READY),true)
endif
test-server-race: test-te-race test-ee-race ## Checks for race conditions.
+ find . -type d -name data -not -path './vendor/*' | xargs rm -rf
do-cover-file: ## Creates the test coverage report file.
@echo "mode: count" > cover.out
@@ -360,6 +361,7 @@ ifeq ($(BUILD_ENTERPRISE_READY),true)
endif
test-server: test-te test-ee ## Runs tests.
+ find . -type d -name data -not -path './vendor/*' | xargs rm -rf
internal-test-web-client: ## Runs web client tests.
$(GO) run $(GOFLAGS) $(PLATFORM_FILES) test web_client_tests
@@ -477,7 +479,7 @@ clean: stop-docker ## Clean up everything except persistant server data.
cd $(BUILD_WEBAPP_DIR) && $(MAKE) clean
- find . -type d -name data -not -path './vendor/*' | xargs rm -r
+ find . -type d -name data -not -path './vendor/*' | xargs rm -rf
rm -rf logs
rm -f mattermost.log
diff --git a/api4/command_test.go b/api4/command_test.go
index 3be1af061..8c4ce5d50 100644
--- a/api4/command_test.go
+++ b/api4/command_test.go
@@ -214,6 +214,17 @@ func TestListCommands(t *testing.T) {
defer th.TearDown()
Client := th.Client
+ enableCommands := *th.App.Config().ServiceSettings.EnableCommands
+ enableOnlyAdminIntegrations := *th.App.Config().ServiceSettings.EnableOnlyAdminIntegrations
+ defer func() {
+ th.App.UpdateConfig(func(cfg *model.Config) { cfg.ServiceSettings.EnableCommands = &enableCommands })
+ th.App.UpdateConfig(func(cfg *model.Config) {
+ cfg.ServiceSettings.EnableOnlyAdminIntegrations = &enableOnlyAdminIntegrations
+ })
+ }()
+ th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableCommands = true })
+ th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableOnlyAdminIntegrations = true })
+
newCmd := &model.Command{
CreatorId: th.BasicUser.Id,
TeamId: th.BasicTeam.Id,
diff --git a/api4/file_test.go b/api4/file_test.go
index a28420c76..9143f4839 100644
--- a/api4/file_test.go
+++ b/api4/file_test.go
@@ -359,7 +359,8 @@ func TestGetFileHeaders(t *testing.T) {
t.Run("js", testHeaders(data, "test.js", "text/plain", false))
t.Run("go", testHeaders(data, "test.go", "application/octet-stream", false))
t.Run("zip", testHeaders(data, "test.zip", "application/zip", false))
- t.Run("exe", testHeaders(data, "test.exe", "application/x-ms", false))
+ // Not every platform can recognize these
+ //t.Run("exe", testHeaders(data, "test.exe", "application/x-ms", false))
t.Run("no extension", testHeaders(data, "test", "application/octet-stream", false))
t.Run("no extension 2", testHeaders([]byte("<html></html>"), "test", "application/octet-stream", false))
}