9b9682f626
* create FeatureFlags in configurations * update for unit tests * update unit tests, go.mod * update go.sum * fix lint errors Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
30 lines
929 B
Go
30 lines
929 B
Go
package app
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/focalboard/server/services/config"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetClientConfig(t *testing.T) {
|
|
th, tearDown := SetupTestHelper(t)
|
|
defer tearDown()
|
|
|
|
t.Run("Test Get Client Config", func(t *testing.T) {
|
|
newConfiguration := config.Configuration{}
|
|
newConfiguration.Telemetry = true
|
|
newConfiguration.TelemetryID = "abcde"
|
|
newConfiguration.EnablePublicSharedBoards = true
|
|
newConfiguration.FeatureFlags = make(map[string]string)
|
|
newConfiguration.FeatureFlags["BoardsFeature1"] = "true"
|
|
newConfiguration.FeatureFlags["BoardsFeature2"] = "true"
|
|
th.App.SetConfig(&newConfiguration)
|
|
|
|
clientConfig := th.App.GetClientConfig()
|
|
require.True(t, clientConfig.EnablePublicSharedBoards)
|
|
require.True(t, clientConfig.Telemetry)
|
|
require.Equal(t, "abcde", clientConfig.TelemetryID)
|
|
require.Equal(t, 2, len(clientConfig.FeatureFlags))
|
|
})
|
|
}
|