mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	* refactor extractCustomEmojisFromMfm() * refactor extract-hashtags * refactor extract-mentions * refactor extract-hashtags * refactor extract-url-from-mfm * refactor extract-mentions
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			818 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			818 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as assert from 'assert';
 | 
						|
 | 
						|
import { extractMentions } from '../src/misc/extract-mentions';
 | 
						|
import { parse } from 'mfm-js';
 | 
						|
 | 
						|
describe('Extract mentions', () => {
 | 
						|
	it('simple', () => {
 | 
						|
		const ast = parse('@foo @bar @baz')!;
 | 
						|
		const mentions = extractMentions(ast);
 | 
						|
		assert.deepStrictEqual(mentions, [{
 | 
						|
			username: 'foo',
 | 
						|
			acct: '@foo',
 | 
						|
			host: null
 | 
						|
		}, {
 | 
						|
			username: 'bar',
 | 
						|
			acct: '@bar',
 | 
						|
			host: null
 | 
						|
		}, {
 | 
						|
			username: 'baz',
 | 
						|
			acct: '@baz',
 | 
						|
			host: null
 | 
						|
		}]);
 | 
						|
	});
 | 
						|
 | 
						|
	it('nested', () => {
 | 
						|
		const ast = parse('@foo **@bar** @baz')!;
 | 
						|
		const mentions = extractMentions(ast);
 | 
						|
		assert.deepStrictEqual(mentions, [{
 | 
						|
			username: 'foo',
 | 
						|
			acct: '@foo',
 | 
						|
			host: null
 | 
						|
		}, {
 | 
						|
			username: 'bar',
 | 
						|
			acct: '@bar',
 | 
						|
			host: null
 | 
						|
		}, {
 | 
						|
			username: 'baz',
 | 
						|
			acct: '@baz',
 | 
						|
			host: null
 | 
						|
		}]);
 | 
						|
	});
 | 
						|
});
 |