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.
64 lines
1.5 KiB
64 lines
1.5 KiB
8 years ago
|
// Copyright 2017 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.
|
||
|
|
||
3 years ago
|
package user
|
||
8 years ago
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
3 years ago
|
"code.gitea.io/gitea/models/unittest"
|
||
|
|
||
8 years ago
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestGetUserOpenIDs(t *testing.T) {
|
||
3 years ago
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
||
8 years ago
|
|
||
|
oids, err := GetUserOpenIDs(int64(1))
|
||
7 years ago
|
if assert.NoError(t, err) && assert.Len(t, oids, 2) {
|
||
3 years ago
|
assert.Equal(t, "https://user1.domain1.tld/", oids[0].URI)
|
||
8 years ago
|
assert.False(t, oids[0].Show)
|
||
3 years ago
|
assert.Equal(t, "http://user1.domain2.tld/", oids[1].URI)
|
||
8 years ago
|
assert.True(t, oids[1].Show)
|
||
|
}
|
||
|
|
||
|
oids, err = GetUserOpenIDs(int64(2))
|
||
7 years ago
|
if assert.NoError(t, err) && assert.Len(t, oids, 1) {
|
||
3 years ago
|
assert.Equal(t, "https://domain1.tld/user2/", oids[0].URI)
|
||
8 years ago
|
assert.True(t, oids[0].Show)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestToggleUserOpenIDVisibility(t *testing.T) {
|
||
3 years ago
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
||
8 years ago
|
oids, err := GetUserOpenIDs(int64(2))
|
||
7 years ago
|
if !assert.NoError(t, err) || !assert.Len(t, oids, 1) {
|
||
8 years ago
|
return
|
||
|
}
|
||
|
assert.True(t, oids[0].Show)
|
||
|
|
||
|
err = ToggleUserOpenIDVisibility(oids[0].ID)
|
||
8 years ago
|
if !assert.NoError(t, err) {
|
||
8 years ago
|
return
|
||
|
}
|
||
|
|
||
|
oids, err = GetUserOpenIDs(int64(2))
|
||
7 years ago
|
if !assert.NoError(t, err) || !assert.Len(t, oids, 1) {
|
||
|
return
|
||
8 years ago
|
}
|
||
7 years ago
|
assert.False(t, oids[0].Show)
|
||
8 years ago
|
err = ToggleUserOpenIDVisibility(oids[0].ID)
|
||
8 years ago
|
if !assert.NoError(t, err) {
|
||
8 years ago
|
return
|
||
|
}
|
||
|
|
||
|
oids, err = GetUserOpenIDs(int64(2))
|
||
8 years ago
|
if !assert.NoError(t, err) {
|
||
8 years ago
|
return
|
||
|
}
|
||
7 years ago
|
if assert.Len(t, oids, 1) {
|
||
|
assert.True(t, oids[0].Show)
|
||
|
}
|
||
8 years ago
|
}
|