208 lines
6.9 KiB
TypeScript
208 lines
6.9 KiB
TypeScript
import { Record as ImmutableRecord, fromJS } from 'immutable';
|
|
|
|
import { normalizeStatus } from '../status';
|
|
|
|
import type { Poll, Card } from 'soapbox/types/entities';
|
|
|
|
describe('normalizeStatus()', () => {
|
|
it('adds base fields', () => {
|
|
const status = {};
|
|
const result = normalizeStatus(status);
|
|
|
|
expect(ImmutableRecord.isRecord(result)).toBe(true);
|
|
expect(result.emojis).toEqual(fromJS([]));
|
|
expect(result.favourites_count).toBe(0);
|
|
expect(result.mentions).toEqual(fromJS([]));
|
|
expect(result.reblog).toBe(null);
|
|
expect(result.uri).toBe('');
|
|
expect(result.visibility).toBe('public');
|
|
});
|
|
|
|
it('fixes the order of mentions', () => {
|
|
const status = require('soapbox/__fixtures__/status-unordered-mentions.json');
|
|
|
|
const expected = ['NEETzsche', 'alex', 'Lumeinshin', 'sneeden'];
|
|
|
|
const result = normalizeStatus(status)
|
|
.get('mentions')
|
|
.map(mention => mention.get('username'))
|
|
.toJS();
|
|
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
it('adds mention to self in self-reply on Mastodon', () => {
|
|
const status = require('soapbox/__fixtures__/mastodon-reply-to-self.json');
|
|
|
|
const expected = {
|
|
id: '106801667066418367',
|
|
username: 'benis911',
|
|
acct: 'benis911',
|
|
url: 'https://mastodon.social/@benis911',
|
|
};
|
|
|
|
const result = normalizeStatus(status).mentions;
|
|
|
|
expect(result.size).toBe(1);
|
|
expect(result.get(0)?.toJS()).toMatchObject(expected);
|
|
expect(result.get(0)?.id).toEqual('106801667066418367');
|
|
expect(ImmutableRecord.isRecord(result.get(0))).toBe(true);
|
|
});
|
|
|
|
it('normalizes mentions with only acct', () => {
|
|
const status = { mentions: [{ acct: 'alex@gleasonator.com' }] };
|
|
|
|
const expected = [{
|
|
id: '',
|
|
acct: 'alex@gleasonator.com',
|
|
username: 'alex',
|
|
url: '',
|
|
}];
|
|
|
|
const result = normalizeStatus(status).get('mentions');
|
|
|
|
expect(result.toJS()).toEqual(expected);
|
|
});
|
|
|
|
it('normalizes Mitra attachments', () => {
|
|
const status = require('soapbox/__fixtures__/mitra-status-with-attachments.json');
|
|
|
|
const expected = [{
|
|
id: '017eeb0e-e5df-30a4-77a7-a929145cb836',
|
|
type: 'image',
|
|
url: 'https://mitra.social/media/8e04e6091bbbac79641b5812508683ce72c38693661c18d16040553f2371e18d.png',
|
|
preview_url: 'https://mitra.social/media/8e04e6091bbbac79641b5812508683ce72c38693661c18d16040553f2371e18d.png',
|
|
remote_url: null,
|
|
}, {
|
|
id: '017eeb0e-e5e4-2a48-2889-afdebf368a54',
|
|
type: 'unknown',
|
|
url: 'https://mitra.social/media/8f72dc2e98572eb4ba7c3a902bca5f69c448fc4391837e5f8f0d4556280440ac',
|
|
preview_url: 'https://mitra.social/media/8f72dc2e98572eb4ba7c3a902bca5f69c448fc4391837e5f8f0d4556280440ac',
|
|
remote_url: null,
|
|
}, {
|
|
id: '017eeb0e-e5e5-79fd-6054-8b6869b1db49',
|
|
type: 'unknown',
|
|
url: 'https://mitra.social/media/55a81a090247cc4fc127e5716bcf7964f6e0df9b584f85f4696c0b994747a4d0.oga',
|
|
preview_url: 'https://mitra.social/media/55a81a090247cc4fc127e5716bcf7964f6e0df9b584f85f4696c0b994747a4d0.oga',
|
|
remote_url: null,
|
|
}, {
|
|
id: '017eeb0e-e5e6-c416-a444-21e560c47839',
|
|
type: 'unknown',
|
|
url: 'https://mitra.social/media/0d96a4ff68ad6d4b6f1f30f713b18d5184912ba8dd389f86aa7710db079abcb0',
|
|
preview_url: 'https://mitra.social/media/0d96a4ff68ad6d4b6f1f30f713b18d5184912ba8dd389f86aa7710db079abcb0',
|
|
remote_url: null,
|
|
}];
|
|
|
|
const result = normalizeStatus(status);
|
|
|
|
expect(result.media_attachments.toJS()).toMatchObject(expected);
|
|
});
|
|
|
|
it('leaves Pleroma attachments alone', () => {
|
|
const status = require('soapbox/__fixtures__/pleroma-status-with-attachments.json');
|
|
const result = normalizeStatus(status).media_attachments;
|
|
|
|
expect(result.size).toBe(4);
|
|
expect(result.get(1)?.meta).toEqual(fromJS({}));
|
|
expect(result.getIn([1, 'pleroma', 'mime_type'])).toBe('application/x-nes-rom');
|
|
expect(ImmutableRecord.isRecord(result.get(3))).toBe(true);
|
|
});
|
|
|
|
it('normalizes Pleroma quote post', () => {
|
|
const status = require('soapbox/__fixtures__/pleroma-quote-post.json');
|
|
const result = normalizeStatus(status);
|
|
|
|
expect(result.quote).toEqual(fromJS(status.pleroma.quote));
|
|
expect(result.pleroma.get('quote')).toBe(undefined);
|
|
});
|
|
|
|
it('normalizes GoToSocial status', () => {
|
|
const status = require('soapbox/__fixtures__/gotosocial-status.json');
|
|
const result = normalizeStatus(status);
|
|
|
|
// Adds missing fields
|
|
const missing = {
|
|
in_reply_to_account_id: null,
|
|
in_reply_to_id: null,
|
|
reblog: null,
|
|
pinned: false,
|
|
quote: null,
|
|
};
|
|
|
|
expect(result).toMatchObject(missing);
|
|
});
|
|
|
|
it('normalizes Friendica status', () => {
|
|
const status = require('soapbox/__fixtures__/friendica-status.json');
|
|
const result = normalizeStatus(status);
|
|
|
|
// Adds missing fields
|
|
const missing = {
|
|
pinned: false,
|
|
quote: null,
|
|
};
|
|
|
|
expect(result).toMatchObject(missing);
|
|
});
|
|
|
|
it('normalizes poll and poll options', () => {
|
|
const status = { poll: { options: [{ title: 'Apples' }] } };
|
|
const result = normalizeStatus(status);
|
|
const poll = result.poll as Poll;
|
|
|
|
const expected = {
|
|
options: [{ title: 'Apples', votes_count: 0 }],
|
|
emojis: [],
|
|
expired: false,
|
|
multiple: false,
|
|
voters_count: 0,
|
|
votes_count: 0,
|
|
own_votes: null,
|
|
voted: false,
|
|
};
|
|
|
|
expect(ImmutableRecord.isRecord(poll)).toBe(true);
|
|
expect(ImmutableRecord.isRecord(poll.options.get(0))).toBe(true);
|
|
expect(poll.toJS()).toMatchObject(expected);
|
|
});
|
|
|
|
it('normalizes a Pleroma logged-out poll', () => {
|
|
const status = require('soapbox/__fixtures__/pleroma-status-with-poll.json');
|
|
const result = normalizeStatus(status);
|
|
const poll = result.poll as Poll;
|
|
|
|
// Adds logged-in fields
|
|
expect(poll.voted).toBe(false);
|
|
expect(poll.own_votes).toBe(null);
|
|
});
|
|
|
|
it('normalizes poll with emojis', () => {
|
|
const status = require('soapbox/__fixtures__/pleroma-status-with-poll-with-emojis.json');
|
|
const result = normalizeStatus(status);
|
|
const poll = result.poll as Poll;
|
|
|
|
// Emojifies poll options
|
|
expect(poll.options.get(1)?.title_emojified)
|
|
.toContain('emojione');
|
|
|
|
// Parses emojis as Immutable.Record's
|
|
expect(ImmutableRecord.isRecord(poll.emojis.get(0))).toBe(true);
|
|
expect(poll.emojis.get(1)?.shortcode).toEqual('soapbox');
|
|
});
|
|
|
|
it('normalizes a card', () => {
|
|
const status = require('soapbox/__fixtures__/status-with-card.json');
|
|
const result = normalizeStatus(status);
|
|
const card = result.card as Card;
|
|
|
|
expect(ImmutableRecord.isRecord(card)).toBe(true);
|
|
expect(card.type).toEqual('link');
|
|
expect(card.provider_url).toEqual('https://soapbox.pub');
|
|
});
|
|
|
|
it('preserves Truth Social external_video_id', () => {
|
|
const status = require('soapbox/__fixtures__/truthsocial-status-with-external-video.json');
|
|
const result = normalizeStatus(status);
|
|
expect(result.media_attachments.get(0)?.external_video_id).toBe('vwfnq9');
|
|
});
|
|
});
|