2021-11-17 09:58:31 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-17 09:58:31 +00:00
|
|
|
|
2022-06-15 07:02:00 +00:00
|
|
|
package user_test
|
2021-11-17 09:58:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-09-16 14:39:12 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-17 09:58:31 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-06-15 07:02:00 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 09:58:31 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIsFollowing(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2023-09-16 14:39:12 +00:00
|
|
|
assert.True(t, user_model.IsFollowing(db.DefaultContext, 4, 2))
|
|
|
|
assert.False(t, user_model.IsFollowing(db.DefaultContext, 2, 4))
|
|
|
|
assert.False(t, user_model.IsFollowing(db.DefaultContext, 5, unittest.NonexistentID))
|
|
|
|
assert.False(t, user_model.IsFollowing(db.DefaultContext, unittest.NonexistentID, 5))
|
|
|
|
assert.False(t, user_model.IsFollowing(db.DefaultContext, unittest.NonexistentID, unittest.NonexistentID))
|
2021-11-17 09:58:31 +00:00
|
|
|
}
|