2021-11-17 04:58:31 -05:00
|
|
|
// 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.
|
|
|
|
|
2022-06-15 03:02:00 -04:00
|
|
|
package user_test
|
2021-11-17 04:58:31 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-06-15 03:02:00 -04:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 04:58:31 -05:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIsFollowing(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-06-15 03:02:00 -04:00
|
|
|
assert.True(t, user_model.IsFollowing(4, 2))
|
|
|
|
assert.False(t, user_model.IsFollowing(2, 4))
|
|
|
|
assert.False(t, user_model.IsFollowing(5, unittest.NonexistentID))
|
|
|
|
assert.False(t, user_model.IsFollowing(unittest.NonexistentID, 5))
|
|
|
|
assert.False(t, user_model.IsFollowing(unittest.NonexistentID, unittest.NonexistentID))
|
2021-11-17 04:58:31 -05:00
|
|
|
}
|