From b2dd00dd5b83fc7e8b311a55f5a2536e4f3d45a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Wed, 7 Mar 2018 20:04:18 +0000 Subject: Adding enterprise commands support (#8327) --- cmd/platform/message_export_test.go | 66 ------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 cmd/platform/message_export_test.go (limited to 'cmd/platform/message_export_test.go') diff --git a/cmd/platform/message_export_test.go b/cmd/platform/message_export_test.go deleted file mode 100644 index 386aa4268..000000000 --- a/cmd/platform/message_export_test.go +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -package main - -import ( - "io/ioutil" - "os" - "path/filepath" - "testing" - - "github.com/stretchr/testify/require" - - "github.com/mattermost/mattermost-server/model" - "github.com/mattermost/mattermost-server/utils" -) - -// There are no tests that actually run the Message Export job, because it can take a long time to complete depending -// on the size of the database that the config is pointing to. As such, these tests just ensure that the CLI command -// fails fast if invalid flags are supplied - -func TestMessageExportNotEnabled(t *testing.T) { - configPath := writeTempConfig(t, false) - defer os.RemoveAll(filepath.Dir(configPath)) - - // should fail fast because the feature isn't enabled - require.Error(t, runCommand(t, "--config", configPath, "export")) -} - -func TestMessageExportInvalidFormat(t *testing.T) { - configPath := writeTempConfig(t, true) - defer os.RemoveAll(filepath.Dir(configPath)) - - // should fail fast because format isn't supported - require.Error(t, runCommand(t, "--config", configPath, "--format", "not_actiance", "export")) -} - -func TestMessageExportNegativeExportFrom(t *testing.T) { - configPath := writeTempConfig(t, true) - defer os.RemoveAll(filepath.Dir(configPath)) - - // should fail fast because export from must be a valid timestamp - require.Error(t, runCommand(t, "--config", configPath, "--format", "actiance", "--exportFrom", "-1", "export")) -} - -func TestMessageExportNegativeTimeoutSeconds(t *testing.T) { - configPath := writeTempConfig(t, true) - defer os.RemoveAll(filepath.Dir(configPath)) - - // should fail fast because timeout seconds must be a positive int - require.Error(t, runCommand(t, "--config", configPath, "--format", "actiance", "--exportFrom", "0", "--timeoutSeconds", "-1", "export")) -} - -func writeTempConfig(t *testing.T, isMessageExportEnabled bool) string { - dir, err := ioutil.TempDir("", "") - require.NoError(t, err) - - utils.TranslationsPreInit() - config, _, appErr := utils.LoadConfig("config.json") - require.Nil(t, appErr) - config.MessageExportSettings.EnableExport = model.NewBool(isMessageExportEnabled) - configPath := filepath.Join(dir, "foo.json") - require.NoError(t, ioutil.WriteFile(configPath, []byte(config.ToJson()), 0600)) - - return configPath -} -- cgit v1.2.3-1-g7c22