You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1022 B
42 lines
1022 B
package serializer
|
|
|
|
import (
|
|
model "github.com/HFO4/cloudreve/models"
|
|
"github.com/jinzhu/gorm"
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestCheckSettingValue(t *testing.T) {
|
|
asserts := assert.New(t)
|
|
|
|
asserts.Equal("", checkSettingValue(map[string]string{}, "key"))
|
|
asserts.Equal("123", checkSettingValue(map[string]string{"key": "123"}, "key"))
|
|
}
|
|
|
|
func TestBuildSiteConfig(t *testing.T) {
|
|
asserts := assert.New(t)
|
|
|
|
res := BuildSiteConfig(map[string]string{"not exist": ""}, &model.User{})
|
|
asserts.Equal("", res.Data.(SiteConfig).SiteName)
|
|
|
|
res = BuildSiteConfig(map[string]string{"siteName": "123"}, &model.User{})
|
|
asserts.Equal("123", res.Data.(SiteConfig).SiteName)
|
|
|
|
// 非空用户
|
|
res = BuildSiteConfig(map[string]string{"qq_login": "1"}, &model.User{
|
|
Model: gorm.Model{
|
|
ID: 5,
|
|
},
|
|
})
|
|
asserts.Len(res.Data.(SiteConfig).User.ID, 4)
|
|
}
|
|
|
|
func TestBuildTaskList(t *testing.T) {
|
|
asserts := assert.New(t)
|
|
tasks := []model.Task{{}}
|
|
|
|
res := BuildTaskList(tasks, 1)
|
|
asserts.NotNil(res)
|
|
}
|