summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-01-27 13:55:11 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-01-27 13:55:11 +0900
commit50b809784fca1b9933fd8b1ef766228c959b5c45 (patch)
tree865812562f807adc9527d9948e7fc8fc66dd1983 /test
parentUpdate parser.ts (#3999) (diff)
downloadsharkey-50b809784fca1b9933fd8b1ef766228c959b5c45.tar.gz
sharkey-50b809784fca1b9933fd8b1ef766228c959b5c45.tar.bz2
sharkey-50b809784fca1b9933fd8b1ef766228c959b5c45.zip
Improve readability and some cleanups
Diffstat (limited to 'test')
-rw-r--r--test/mfm.ts87
1 files changed, 67 insertions, 20 deletions
diff --git a/test/mfm.ts b/test/mfm.ts
index 8eadfc7288..a5ea4b2933 100644
--- a/test/mfm.ts
+++ b/test/mfm.ts
@@ -152,9 +152,19 @@ describe('MFM', () => {
it('can be analyzed', () => {
const tokens = analyze('@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr');
assert.deepStrictEqual(tokens, [
- leaf('mention', { acct: '@himawari', canonical: '@himawari', username: 'himawari', host: null }),
+ leaf('mention', {
+ acct: '@himawari',
+ canonical: '@himawari',
+ username: 'himawari',
+ host: null
+ }),
text(' '),
- leaf('mention', { acct: '@hima_sub@namori.net', canonical: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' }),
+ leaf('mention', {
+ acct: '@hima_sub@namori.net',
+ canonical: '@hima_sub@namori.net',
+ username: 'hima_sub',
+ host: 'namori.net'
+ }),
text(' お腹ペコい '),
leaf('emoji', { name: 'cat' }),
text(' '),
@@ -280,7 +290,12 @@ describe('MFM', () => {
it('local', () => {
const tokens = analyze('@himawari foo');
assert.deepStrictEqual(tokens, [
- leaf('mention', { acct: '@himawari', canonical: '@himawari', username: 'himawari', host: null }),
+ leaf('mention', {
+ acct: '@himawari',
+ canonical: '@himawari',
+ username: 'himawari',
+ host: null
+ }),
text(' foo')
]);
});
@@ -288,7 +303,12 @@ describe('MFM', () => {
it('remote', () => {
const tokens = analyze('@hima_sub@namori.net foo');
assert.deepStrictEqual(tokens, [
- leaf('mention', { acct: '@hima_sub@namori.net', canonical: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' }),
+ leaf('mention', {
+ acct: '@hima_sub@namori.net',
+ canonical: '@hima_sub@namori.net',
+ username: 'hima_sub',
+ host: 'namori.net'
+ }),
text(' foo')
]);
});
@@ -296,7 +316,12 @@ describe('MFM', () => {
it('remote punycode', () => {
const tokens = analyze('@hima_sub@xn--q9j5bya.xn--zckzah foo');
assert.deepStrictEqual(tokens, [
- leaf('mention', { acct: '@hima_sub@xn--q9j5bya.xn--zckzah', canonical: '@hima_sub@なもり.テスト', username: 'hima_sub', host: 'xn--q9j5bya.xn--zckzah' }),
+ leaf('mention', {
+ acct: '@hima_sub@xn--q9j5bya.xn--zckzah',
+ canonical: '@hima_sub@なもり.テスト',
+ username: 'hima_sub',
+ host: 'xn--q9j5bya.xn--zckzah'
+ }),
text(' foo')
]);
});
@@ -309,11 +334,26 @@ describe('MFM', () => {
const tokens2 = analyze('@a\n@b\n@c');
assert.deepStrictEqual(tokens2, [
- leaf('mention', { acct: '@a', canonical: '@a', username: 'a', host: null }),
+ leaf('mention', {
+ acct: '@a',
+ canonical: '@a',
+ username: 'a',
+ host: null
+ }),
text('\n'),
- leaf('mention', { acct: '@b', canonical: '@b', username: 'b', host: null }),
+ leaf('mention', {
+ acct: '@b',
+ canonical: '@b',
+ username: 'b',
+ host: null
+ }),
text('\n'),
- leaf('mention', { acct: '@c', canonical: '@c', username: 'c', host: null })
+ leaf('mention', {
+ acct: '@c',
+ canonical: '@c',
+ username: 'c',
+ host: null
+ })
]);
const tokens3 = analyze('**x**@a');
@@ -321,24 +361,31 @@ describe('MFM', () => {
tree('bold', [
text('x')
], {}),
- leaf('mention', { acct: '@a', canonical: '@a', username: 'a', host: null })
+ leaf('mention', {
+ acct: '@a',
+ canonical: '@a',
+ username: 'a',
+ host: null
+ })
]);
- const tokens4 = analyze('@\n@v\n@veryverylongusername' /* \n@toolongtobeasamention */);
+ const tokens4 = analyze('@\n@v\n@veryverylongusername');
assert.deepStrictEqual(tokens4, [
text('@\n'),
- leaf('mention', { acct: '@v', canonical: '@v', username: 'v', host: null }),
+ leaf('mention', {
+ acct: '@v',
+ canonical: '@v',
+ username: 'v',
+ host: null
+ }),
text('\n'),
- leaf('mention', { acct: '@veryverylongusername', canonical: '@veryverylongusername', username: 'veryverylongusername', host: null }),
- // text('\n@toolongtobeasamention')
+ leaf('mention', {
+ acct: '@veryverylongusername',
+ canonical: '@veryverylongusername',
+ username: 'veryverylongusername',
+ host: null
+ }),
]);
- /*
- const tokens5 = analyze('@domain_is@valid.example.com\n@domain_is@.invalid\n@domain_is@invali.d\n@domain_is@invali.d\n@domain_is@-invalid.com\n@domain_is@invalid-.com');
- assert.deepStrictEqual([
- leaf('mention', { acct: '@domain_is@valid.example.com', canonical: '@domain_is@valid.example.com', username: 'domain_is', host: 'valid.example.com' }),
- text('\n@domain_is@.invalid\n@domain_is@invali.d\n@domain_is@invali.d\n@domain_is@-invalid.com\n@domain_is@invalid-.com')
- ], tokens5);
- */
});
});