2020-06-09 01:19:14 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package gitea
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetGlobalSettings(t *testing.T) {
|
|
|
|
log.Println("== TestGetGlobalSettings ==")
|
|
|
|
c := newTestClient()
|
2020-06-30 21:29:09 +01:00
|
|
|
|
|
|
|
uiSettings, err := c.GetGlobalUISettings()
|
2020-06-09 01:19:14 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
expectedAllowedReactions := []string{"+1", "-1", "laugh", "hooray", "confused", "heart", "rocket", "eyes"}
|
2020-06-30 21:29:09 +01:00
|
|
|
assert.ElementsMatch(t, expectedAllowedReactions, uiSettings.AllowedReactions)
|
|
|
|
|
|
|
|
repoSettings, err := c.GetGlobalRepoSettings()
|
|
|
|
assert.NoError(t, err)
|
2020-09-07 04:09:10 +01:00
|
|
|
assert.EqualValues(t, &GlobalRepoSettings{
|
|
|
|
HTTPGitDisabled: false,
|
|
|
|
MirrorsDisabled: false,
|
|
|
|
}, repoSettings)
|
|
|
|
|
|
|
|
apiSettings, err := c.GetGlobalAPISettings()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, &GlobalAPISettings{
|
|
|
|
MaxResponseItems: 50,
|
|
|
|
DefaultPagingNum: 30,
|
|
|
|
DefaultGitTreesPerPage: 1000,
|
|
|
|
DefaultMaxBlobSize: 10485760,
|
|
|
|
}, apiSettings)
|
2020-06-09 01:19:14 +01:00
|
|
|
}
|