13d2d23dfc
Update gitea structs to [365c4e9316bbcc8bdf9cf68ef237bf18ae8db315](365c4e9316
) state.
use:
`git log --name-only --pretty=oneline --full-index v1.14.0..HEAD | grep -vE '^[0-9a-f]{40} ' | sort | uniq | grep ^modules/structs`
and
`git diff --full-index v1.13.0..HEAD -- modules/structs`
if you like to check yourselve
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/524
Reviewed-by: Norwin <noerw@noreply.gitea.io>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-committed-by: 6543 <6543@obermui.de>
48 lines
1.4 KiB
Go
48 lines
1.4 KiB
Go
// 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()
|
|
|
|
uiSettings, _, err := c.GetGlobalUISettings()
|
|
assert.NoError(t, err)
|
|
expectedAllowedReactions := []string{"+1", "-1", "laugh", "hooray", "confused", "heart", "rocket", "eyes"}
|
|
assert.ElementsMatch(t, expectedAllowedReactions, uiSettings.AllowedReactions)
|
|
|
|
repoSettings, _, err := c.GetGlobalRepoSettings()
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, &GlobalRepoSettings{
|
|
HTTPGitDisabled: false,
|
|
MirrorsDisabled: false,
|
|
LFSDisabled: true,
|
|
}, repoSettings)
|
|
|
|
apiSettings, _, err := c.GetGlobalAPISettings()
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, &GlobalAPISettings{
|
|
MaxResponseItems: 50,
|
|
DefaultPagingNum: 30,
|
|
DefaultGitTreesPerPage: 1000,
|
|
DefaultMaxBlobSize: 10485760,
|
|
}, apiSettings)
|
|
|
|
attachSettings, _, err := c.GetGlobalAttachmentSettings()
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, &GlobalAttachmentSettings{
|
|
Enabled: true,
|
|
AllowedTypes: ".docx,.gif,.gz,.jpeg,.jpg,.log,.pdf,.png,.pptx,.txt,.xlsx,.zip",
|
|
MaxSize: 4,
|
|
MaxFiles: 5,
|
|
}, attachSettings)
|
|
}
|