mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
4de909747b
go-require lint is ignored for now Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4535 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
41 lines
1.3 KiB
Go
41 lines
1.3 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package convert
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
"code.gitea.io/gitea/models/unittest"
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestUser_ToUser(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
user1 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1, IsAdmin: true})
|
|
|
|
apiUser := toUser(db.DefaultContext, user1, true, true)
|
|
assert.True(t, apiUser.IsAdmin)
|
|
assert.Contains(t, apiUser.AvatarURL, "://")
|
|
|
|
user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2, IsAdmin: false})
|
|
|
|
apiUser = toUser(db.DefaultContext, user2, true, true)
|
|
assert.False(t, apiUser.IsAdmin)
|
|
|
|
apiUser = toUser(db.DefaultContext, user1, false, false)
|
|
assert.False(t, apiUser.IsAdmin)
|
|
assert.EqualValues(t, api.VisibleTypePublic.String(), apiUser.Visibility)
|
|
|
|
user31 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 31, IsAdmin: false, Visibility: api.VisibleTypePrivate})
|
|
|
|
apiUser = toUser(db.DefaultContext, user31, true, true)
|
|
assert.False(t, apiUser.IsAdmin)
|
|
assert.EqualValues(t, api.VisibleTypePrivate.String(), apiUser.Visibility)
|
|
}
|