mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-28 03:54:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			954 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			954 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as assert from 'assert';
 | |
| 
 | |
| import extractMentions from '../src/misc/extract-mentions';
 | |
| import { parse } from '../src/mfm/parse';
 | |
| 
 | |
| describe('Extract mentions', () => {
 | |
| 	it('simple', () => {
 | |
| 		const ast = parse('@foo @bar @baz');
 | |
| 		const mentions = extractMentions(ast);
 | |
| 		assert.deepStrictEqual(mentions, [{
 | |
| 			username: 'foo',
 | |
| 			acct: '@foo',
 | |
| 			canonical: '@foo',
 | |
| 			host: null
 | |
| 		}, {
 | |
| 			username: 'bar',
 | |
| 			acct: '@bar',
 | |
| 			canonical: '@bar',
 | |
| 			host: null
 | |
| 		}, {
 | |
| 			username: 'baz',
 | |
| 			acct: '@baz',
 | |
| 			canonical: '@baz',
 | |
| 			host: null
 | |
| 		}]);
 | |
| 	});
 | |
| 
 | |
| 	it('nested', () => {
 | |
| 		const ast = parse('@foo **@bar** @baz');
 | |
| 		const mentions = extractMentions(ast);
 | |
| 		assert.deepStrictEqual(mentions, [{
 | |
| 			username: 'foo',
 | |
| 			acct: '@foo',
 | |
| 			canonical: '@foo',
 | |
| 			host: null
 | |
| 		}, {
 | |
| 			username: 'bar',
 | |
| 			acct: '@bar',
 | |
| 			canonical: '@bar',
 | |
| 			host: null
 | |
| 		}, {
 | |
| 			username: 'baz',
 | |
| 			acct: '@baz',
 | |
| 			canonical: '@baz',
 | |
| 			host: null
 | |
| 		}]);
 | |
| 	});
 | |
| });
 |