mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-21 13:38:56 +02:00
c8e729b6fe
* refactor: updated dependency for focalboard server * chore: more dependency fixes * refactor: removed the unless code * refactor: added ctx for login and removed unnessary code * refactor: bump up go version * refactor: removed the commented code * chore: upgraded golinter version * fix: linter issue * refactor: removed feature flg fix golinter * refactor: removed feature flag from code * revert: statistic and it's function * refactor: removed ProductLimit related code * refactor: removed isWithinViewsLimit implementation * refactor: moved function GetUsedCardsCount to statistics.go from cloud.go * refactor: removed insight code board * refactor: removed limit dialog * refactor: updated dependencies for linux * chore: golinter fix * chore: updated helper test function to use newLogger * fix: go test * refactor: db ping attempts from config * revert: feature in action * revert: feature flag in action * revert: boardsEditor setting --------- Co-authored-by: Rajat Dabade <rajat@Rajats-MacBook-Pro.local>
125 lines
3.2 KiB
Go
125 lines
3.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package boards
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/mlog"
|
|
)
|
|
|
|
func TestSetConfiguration(t *testing.T) {
|
|
boolTrue := true
|
|
stringRef := ""
|
|
|
|
baseFeatureFlags := &model.FeatureFlags{}
|
|
basePluginSettings := &model.PluginSettings{
|
|
Directory: &stringRef,
|
|
}
|
|
driverName := "testDriver"
|
|
dataSource := "testDirectory"
|
|
baseSQLSettings := &model.SqlSettings{
|
|
DriverName: &driverName,
|
|
DataSource: &dataSource,
|
|
}
|
|
|
|
directory := "testDirectory"
|
|
baseFileSettings := &model.FileSettings{
|
|
DriverName: &driverName,
|
|
Directory: &directory,
|
|
MaxFileSize: model.NewInt64(1024 * 1024),
|
|
}
|
|
|
|
days := 365
|
|
baseDataRetentionSettings := &model.DataRetentionSettings{
|
|
BoardsRetentionDays: &days,
|
|
}
|
|
usernameRef := "username"
|
|
baseTeamSettings := &model.TeamSettings{
|
|
TeammateNameDisplay: &usernameRef,
|
|
}
|
|
|
|
falseRef := false
|
|
basePrivacySettings := &model.PrivacySettings{
|
|
ShowEmailAddress: &falseRef,
|
|
ShowFullName: &falseRef,
|
|
}
|
|
|
|
baseConfig := &model.Config{
|
|
FeatureFlags: baseFeatureFlags,
|
|
PluginSettings: *basePluginSettings,
|
|
SqlSettings: *baseSQLSettings,
|
|
FileSettings: *baseFileSettings,
|
|
DataRetentionSettings: *baseDataRetentionSettings,
|
|
TeamSettings: *baseTeamSettings,
|
|
PrivacySettings: *basePrivacySettings,
|
|
}
|
|
|
|
t.Run("test boards feature flags", func(t *testing.T) {
|
|
featureFlags := &model.FeatureFlags{
|
|
TestFeature: "test",
|
|
TestBoolFeature: boolTrue,
|
|
}
|
|
|
|
mmConfig := baseConfig
|
|
mmConfig.FeatureFlags = featureFlags
|
|
|
|
config := createBoardsConfig(*mmConfig, "", "")
|
|
assert.Equal(t, "true", config.FeatureFlags["TestBoolFeature"])
|
|
assert.Equal(t, "test", config.FeatureFlags["TestFeature"])
|
|
})
|
|
|
|
t.Run("test enable telemetry", func(t *testing.T) {
|
|
logSettings := &model.LogSettings{
|
|
EnableDiagnostics: &boolTrue,
|
|
}
|
|
mmConfig := baseConfig
|
|
mmConfig.LogSettings = *logSettings
|
|
|
|
config := createBoardsConfig(*mmConfig, "", "testId")
|
|
assert.Equal(t, true, config.Telemetry)
|
|
assert.Equal(t, "testId", config.TelemetryID)
|
|
})
|
|
|
|
t.Run("test enable shared boards", func(t *testing.T) {
|
|
mmConfig := baseConfig
|
|
mmConfig.PluginSettings.Plugins = make(map[string]map[string]interface{})
|
|
mmConfig.PluginSettings.Plugins[PluginName] = make(map[string]interface{})
|
|
mmConfig.PluginSettings.Plugins[PluginName][SharedBoardsName] = true
|
|
config := createBoardsConfig(*mmConfig, "", "")
|
|
assert.Equal(t, true, config.EnablePublicSharedBoards)
|
|
})
|
|
}
|
|
|
|
func TestServeHTTP(t *testing.T) {
|
|
th, tearDown := SetupTestHelper(t)
|
|
defer tearDown()
|
|
|
|
b := &BoardsApp{
|
|
server: th.Server,
|
|
logger: mlog.CreateConsoleTestLogger(t),
|
|
}
|
|
|
|
assert := assert.New(t)
|
|
w := httptest.NewRecorder()
|
|
r := httptest.NewRequest(http.MethodGet, "/hello", nil)
|
|
|
|
b.ServeHTTP(nil, w, r)
|
|
|
|
result := w.Result()
|
|
assert.NotNil(result)
|
|
defer result.Body.Close()
|
|
bodyBytes, err := io.ReadAll(result.Body)
|
|
assert.Nil(err)
|
|
bodyString := string(bodyBytes)
|
|
|
|
assert.Equal("Hello", bodyString)
|
|
}
|