wip
This commit is contained in:
parent
ea0d050b71
commit
6d68cfd1e3
|
@ -123,7 +123,11 @@ export class UserFollowingService implements OnModuleInit {
|
||||||
// フォロワーがBotであり、フォロー対象がBotからのフォローに慎重である or
|
// フォロワーがBotであり、フォロー対象がBotからのフォローに慎重である or
|
||||||
// フォロワーがローカルユーザーであり、フォロー対象がリモートユーザーである
|
// フォロワーがローカルユーザーであり、フォロー対象がリモートユーザーである
|
||||||
// 上記のいずれかに当てはまる場合はすぐフォローせずにフォローリクエストを発行しておく
|
// 上記のいずれかに当てはまる場合はすぐフォローせずにフォローリクエストを発行しておく
|
||||||
if (followee.isLocked || (followeeProfile.carefulBot && follower.isBot) || (this.userEntityService.isLocalUser(follower) && this.userEntityService.isRemoteUser(followee))) {
|
if (
|
||||||
|
followee.isLocked ||
|
||||||
|
(followeeProfile.carefulBot && follower.isBot) ||
|
||||||
|
(this.userEntityService.isLocalUser(follower) && this.userEntityService.isRemoteUser(followee) && process.env.FORCE_FOLLOW_REMOTE_USER_FOR_TESTING !== 'true')
|
||||||
|
) {
|
||||||
let autoAccept = false;
|
let autoAccept = false;
|
||||||
|
|
||||||
// 鍵アカウントであっても、既にフォローされていた場合はスルー
|
// 鍵アカウントであっても、既にフォローされていた場合はスルー
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
process.env.NODE_ENV = 'test';
|
process.env.NODE_ENV = 'test';
|
||||||
|
process.env.FORCE_FOLLOW_REMOTE_USER_FOR_TESTING = 'true';
|
||||||
|
|
||||||
import * as assert from 'assert';
|
import * as assert from 'assert';
|
||||||
import { signup, api, post, react, startServer, waitFire, sleep } from '../utils.js';
|
import { signup, api, post, react, startServer, waitFire, sleep } from '../utils.js';
|
||||||
|
@ -294,7 +295,8 @@ describe('Timelines', () => {
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), false);
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), false);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('フォローしているユーザーの visibility: home なノートが含まれる', async () => {
|
// 含まれても良いと思うけど実装が面倒なので含まれない
|
||||||
|
test('フォローしているユーザーの visibility: home なノートが含まれない', async () => {
|
||||||
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
|
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
|
||||||
|
|
||||||
await api('/following/create', {
|
await api('/following/create', {
|
||||||
|
@ -308,7 +310,7 @@ describe('Timelines', () => {
|
||||||
const res = await api('/notes/local-timeline', {}, alice);
|
const res = await api('/notes/local-timeline', {}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), true);
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('ミュートしているユーザーのノートが含まれない', async () => {
|
test('ミュートしているユーザーのノートが含まれない', async () => {
|
||||||
|
|
Loading…
Reference in New Issue