1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Copyright 2022 The Gogs 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 userutil
import (
"os"
"runtime"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/tool"
)
func TestDashboardURLPath(t *testing.T) {
t.Run("user", func(t *testing.T) {
got := DashboardURLPath("alice", false)
want := "/"
assert.Equal(t, want, got)
})
t.Run("organization", func(t *testing.T) {
got := DashboardURLPath("acme", true)
want := "/org/acme/dashboard/"
assert.Equal(t, want, got)
})
}
func TestGenerateActivateCode(t *testing.T) {
conf.SetMockAuth(t,
conf.AuthOpts{
ActivateCodeLives: 10,
},
)
code := GenerateActivateCode(1, "alice@example.com", "Alice", "123456", "rands")
got := tool.VerifyTimeLimitCode("1alice@example.comalice123456rands", conf.Auth.ActivateCodeLives, code[:tool.TIME_LIMIT_CODE_LENGTH])
assert.True(t, got)
}
func TestCustomAvatarPath(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping testing on Windows")
return
}
conf.SetMockPicture(t,
conf.PictureOpts{
AvatarUploadPath: "data/avatars",
},
)
got := CustomAvatarPath(1)
want := "data/avatars/1"
assert.Equal(t, want, got)
}
func TestGenerateRandomAvatar(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping testing on Windows")
return
}
conf.SetMockPicture(t,
conf.PictureOpts{
AvatarUploadPath: os.TempDir(),
},
)
err := GenerateRandomAvatar(1, "alice", "alice@example.com")
require.NoError(t, err)
got := osutil.IsFile(CustomAvatarPath(1))
assert.True(t, got)
}
|