prohibit updating alsoKnownAs after moving

This commit is contained in:
Namekuji 2023-04-20 22:26:26 -04:00
parent d3da4e56fb
commit e94e702429
1 changed files with 10 additions and 1 deletions

View File

@ -350,7 +350,6 @@ describe('Account Move', () => {
'/gallery/posts/like',
'/gallery/posts/unlike',
'/gallery/posts/update',
'/i/update',
'/i/move',
'/notes/create',
'/notes/polls/vote',
@ -396,5 +395,15 @@ describe('Account Move', () => {
assert.strictEqual(res.body.error.code, 'YOUR_ACCOUNT_MOVED');
assert.strictEqual(res.body.error.id, '56f20ec9-fd06-4fa5-841b-edd6d7d4fa31');
});
test('Prohibit updating alsoKnownAs after moving', async () => {
const res = await api('/i/update', {
alsoKnownAs: [`@eve@${url.hostname}`],
}, alice);
assert.strictEqual(res.status, 403);
assert.strictEqual(res.body.error.code, 'YOUR_ACCOUNT_MOVED');
assert.strictEqual(res.body.error.id, '56f20ec9-fd06-4fa5-841b-edd6d7d4fa31');
});
});
});