1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
'use strict';
const { action, assert, utils } = require( 'api-testing' );
describe( 'The parse action', function () {
let alice;
const pageTitle = utils.title( 'Parsing_' );
const edits = {};
before( async () => {
[ alice ] = await Promise.all( [
action.alice()
] );
edits.pageCreation = await alice.edit( pageTitle, {
text: 'This is a \'\'test\'\''
} );
} );
it( 'supports parsing the current content of a page', async () => {
const result = await alice.action( 'parse', {
page: pageTitle
} );
assert.include( result.parse.text[ '*' ], 'This is a <i>test</i>' );
} );
it( 'supports parsing text supplied as a parameter', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: 'This is another \'\'test\'\''
} );
assert.include( result.parse.text[ '*' ], 'another <i>test</i>' );
} );
describe( 'with magic words', () => {
it( 'supports __FORCETOC__', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: '__FORCETOC__\n' +
'== One ==' +
'== Two =='
} );
assert.match( result.parse.text[ '*' ], /id="toc"|property="mw:PageProp\/toc"/ );
} );
it( 'supports __NOTOC__', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: '__NOTOC__\n' +
'== One ==' +
'== Two ==' +
'== Three ==' +
'== Four =='
} );
assert.notMatch( result.parse.text[ '*' ], /id="toc"|property="mw:PageProp\/toc"/ );
} );
} );
describe( 'with variables', () => {
it( 'supports {{PAGENAMEE}}', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: 'This is {{PAGENAMEE}}'
} );
assert.include( result.parse.text[ '*' ], `This is ${pageTitle}` );
} );
it( 'supports {{REVISIONID}} and {{REVISIONUSER}} via parameters', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
revid: edits.pageCreation.newrevid,
text: 'This is {{REVISIONID}} by {{REVISIONUSER}}'
} );
assert.include(
result.parse.text[ '*' ],
`This is ${edits.pageCreation.newrevid} by ${edits.pageCreation.param_user}`
);
} );
it( 'supports {{REVISIONID}} and {{REVISIONUSER}} of a saved revision', async () => {
const anotherTitle = utils.title( 'Parser_saved_magic_' );
const anotherEdit = await alice.edit( anotherTitle, {
text: 'This is {{REVISIONID}} by {{REVISIONUSER}}'
} );
const result = await alice.action( 'parse', {
page: anotherTitle
} );
assert.include(
result.parse.text[ '*' ],
`This is ${anotherEdit.newrevid} by ${anotherEdit.param_user}`
);
} );
} );
describe( 'with templates', () => {
const templateTitle = utils.title( 'Template:Parsing_' );
const templateText = '{{{greeting|Hello}}} {{{1|world}}}!';
before( async () => {
await alice.edit( templateTitle, { text: templateText } );
} );
it( 'supports optional parameters', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: `Say: {{${templateTitle}}}`
} );
assert.include( result.parse.text[ '*' ], 'Say: Hello world!' );
} );
it( 'supports positional parameters', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: `Say: {{${templateTitle}|you}}`
} );
assert.include( result.parse.text[ '*' ], 'Say: Hello you!' );
} );
it( 'supports named parameters', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: `Say: {{${templateTitle}|greeting=Ciao}}`
} );
assert.include( result.parse.text[ '*' ], 'Say: Ciao world!' );
} );
} );
describe( 'with parser functions', () => {
it( 'supports {{plural}}', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: '{{plural:1|one|many}} or {{plural:2|one|many}}'
} );
assert.include( result.parse.text[ '*' ], 'one or many' );
} );
it( 'supports {{ns}}', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: '{{ns:1}}, {{ns:2}}, {{ns:3}}'
} );
assert.include( result.parse.text[ '*' ], 'Talk, User, User talk' );
} );
it( 'supports {{uc}} and {{lc}}', async () => {
const result = await alice.action( 'parse', {
title: pageTitle,
text: '{{uc:Foo}} or {{lc:Foo}}'
} );
assert.include( result.parse.text[ '*' ], 'FOO or foo' );
} );
} );
} );
|