-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtokenize.examples.js
150 lines (143 loc) · 4.6 KB
/
tokenize.examples.js
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
'use strict';
require('mocha');
var assert = require('assert');
var support = require('./support');
var Comments = require('..');
var comments;
var fixtures = support.files(__dirname, 'fixtures');
describe('examples', () => {
beforeEach(function() {
comments = new Comments();
});
it('should tokenize gfm, indented or javadoc examples', () => {
var tok = comments.tokenize(fixtures['examples-multiple']);
assert.deepEqual(tok, {
description: 'This is a comment with\nseveral lines of text.',
footer: '',
examples: [
{
type: 'gfm',
language: 'js',
description: 'An example',
raw: '```js\nvar foo = bar;\nvar foo = bar;\nvar foo = bar;\n```',
value: '\nvar foo = bar;\nvar foo = bar;\nvar foo = bar;\n'
},
{
type: 'indented',
language: '',
description: 'Another example',
raw: ' var baz = fez;\n var baz = fez;\n var baz = fez;\n',
value: 'var baz = fez;\nvar baz = fez;\nvar baz = fez;\n'
},
{
type: 'indented',
language: '',
description: 'Another example',
raw: ' var baz = fez;\n var baz = fez;\n',
value: 'var baz = fez;\nvar baz = fez;\n'
},
{
type: 'gfm',
language: 'js',
description: 'And another example',
raw: '```js\nvar foo = bar;\nvar foo = bar;\n```',
value: '\nvar foo = bar;\nvar foo = bar;\n'
},
{
type: 'javadoc',
language: '',
description: 'Another example',
raw: '@example\nvar baz = fez;\n',
value: '\nvar baz = fez;\n'
},
{
type: 'javadoc',
language: '',
description: '',
raw: '@example\n// this is a comment\nvar alalla = zzzz;\n',
value: '\n// this is a comment\nvar alalla = zzzz;\n'
}
],
tags: [
{
type: 'tag',
raw: '@param {String} foo bar',
key: 'param',
value: '{String} foo bar'
},
{
type: 'tag',
raw: '@returns {Object} Instance of Foo',
key: 'returns',
value: '{Object} Instance of Foo'
},
{
type: 'tag',
raw: '@api public',
key: 'api',
value: 'public'
}
]
});
});
it('should work with arbitrary markdown', () => {
var tok = comments.tokenize(fixtures.markdown);
assert.deepEqual(tok, {
description: 'Set a parser that can later be used to parse any given string.',
footer: 'This is arbitrary text.\n\n * This is arbitrary text.\n * This is arbitrary text.\n * This is arbitrary text.\n\n**Example**\n\n{%= docs("example-parser.md") %}\n\nThis is a another description after the example.',
examples: [{
type: 'gfm',
language: 'js',
description: '',
raw: '```js\n// foo.parser(name, replacements)\nfoo.parser("foo", function(a, b, c) {\n // body...\n})\n```',
value: '\n// foo.parser(name, replacements)\nfoo.parser("foo", function(a, b, c) {\n // body...\n})\n'
}],
tags: [{
type: 'tag',
raw: '@param {String} `alpha`',
key: 'param',
value: '{String} `alpha`'
}, {
type: 'tag',
raw: '@param {Object|Array} `arr` Object or array of replacement patterns to associate.',
key: 'param',
value: '{Object|Array} `arr` Object or array of replacement patterns to associate.'
}, {
type: 'tag',
raw: '@property {String|RegExp} [arr] `pattern`',
key: 'property',
value: '{String|RegExp} [arr] `pattern`'
}, {
type: 'tag',
raw: '@property {String|Function} [arr] `replacement`',
key: 'property',
value: '{String|Function} [arr] `replacement`'
}, {
type: 'tag',
raw: '@param {String} `beta`',
key: 'param',
value: '{String} `beta`'
}, {
type: 'tag',
raw: '@property {Array} [beta] `foo` This is foo option.',
key: 'property',
value: '{Array} [beta] `foo` This is foo option.'
}, {
type: 'tag',
raw: '@property {Array} [beta] `bar` This is bar option',
key: 'property',
value: '{Array} [beta] `bar` This is bar option'
}, {
type: 'tag',
raw: '@return {Strings} to allow chaining',
key: 'return',
value: '{Strings} to allow chaining'
}, {
type: 'tag',
raw: '@api public',
key: 'api',
value: 'public'
}]
});
});
});