-
Notifications
You must be signed in to change notification settings - Fork 634
/
Copy pathGBCommentsProcessor-MarkdownTesting.m
436 lines (395 loc) · 23.1 KB
/
GBCommentsProcessor-MarkdownTesting.m
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
//
// GBCommentsProcessor-MarkdownTesting.m
// appledoc
//
// Created by Tomaz Kragelj on 19.2.11.
// Copyright (C) 2011 Gentle Bytes. All rights reserved.
//
#import "GBApplicationSettingsProvider.h"
#import "GBDataObjects.h"
#import "GBStore.h"
#import "GBCommentsProcessor.h"
@interface GBCommentsProcessorMarkdownTesting : GBObjectsAssertor
- (GBCommentsProcessor *)defaultProcessor;
- (GBStore *)defaultStore;
- (GBStore *)storeWithDefaultObjects;
- (void)assertComment:(GBComment *)comment matchesLongDescMarkdown:(NSString *)first, ... NS_REQUIRES_NIL_TERMINATION;
- (void)assertComponents:(GBCommentComponentsList *)components matchMarkdown:(NSString *)first, ... NS_REQUIRES_NIL_TERMINATION;
@end
#pragma mark -
@implementation GBCommentsProcessorMarkdownTesting
#pragma mark Text blocks handling
- (void)testProcessCommentWithContextStore_markdown_shouldHandleSimpleText {
// setup
GBStore *store = [self defaultStore];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"Some text\n\nAnother paragraph"];
// execute
[processor processComment:comment withContext:nil store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"Some text\n\nAnother paragraph", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldConvertWarning {
// setup
GBStore *store = [self defaultStore];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"Some text\n\n@warning Another paragraph\n\nAnd another"];
// execute
[processor processComment:comment withContext:nil store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"Some text", @"> %warning%\n> **Warning:** Another paragraph\n> \n> And another", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldConvertBug {
// setup
GBStore *store = [self defaultStore];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"Some text\n\n@bug Another paragraph\n\nAnd another"];
// execute
[processor processComment:comment withContext:nil store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"Some text", @"> %bug%\n> **Bug:** Another paragraph\n> \n> And another", nil];
}
#pragma mark Inline cross references handling
- (void)testProcessCommentWithContextStore_markdown_shouldKeepInlineTopLevelObjectsCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"Class"];
GBComment *comment2 = [GBComment commentWithStringValue:@"Class(Category)"];
GBComment *comment3 = [GBComment commentWithStringValue:@"Protocol"];
GBComment *comment4 = [GBComment commentWithStringValue:@"Document"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
[processor processComment:comment4 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"[Class](Classes/Class.html)", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"[Class(Category)](Categories/Class+Category.html)", nil];
[self assertComment:comment3 matchesLongDescMarkdown:@"[Protocol](Protocols/Protocol.html)", nil];
[self assertComment:comment4 matchesLongDescMarkdown:@"[Document](docs/Document.html)", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldKeepInlineLocalMemberCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"instanceMethod:"];
GBComment *comment2 = [GBComment commentWithStringValue:@"classMethod:"];
GBComment *comment3 = [GBComment commentWithStringValue:@"value"];
// execute
id context = [store.classes anyObject];
[processor processComment:comment1 withContext:context store:store];
[processor processComment:comment2 withContext:context store:store];
[processor processComment:comment3 withContext:context store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"[instanceMethod:](#//api/name/instanceMethod:)", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"[classMethod:](#//api/name/classMethod:)", nil];
[self assertComment:comment3 matchesLongDescMarkdown:@"[value](#//api/name/value)", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldKeepInlineRemoteMemberCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"[Class instanceMethod:]"];
GBComment *comment2 = [GBComment commentWithStringValue:@"[Class classMethod:]"];
GBComment *comment3 = [GBComment commentWithStringValue:@"[Class value]"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"[[Class instanceMethod:]](Classes/Class.html#//api/name/instanceMethod:)", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"[[Class classMethod:]](Classes/Class.html#//api/name/classMethod:)", nil];
[self assertComment:comment3 matchesLongDescMarkdown:@"[[Class value]](Classes/Class.html#//api/name/value)", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatInlineLinksWithinStandardMarkdownFormattingMarkers {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"`Class`"];
GBComment *comment2 = [GBComment commentWithStringValue:@"`Class(Category)`"];
GBComment *comment3 = [GBComment commentWithStringValue:@"*Protocol*"];
GBComment *comment4 = [GBComment commentWithStringValue:@"_Document_"];
GBComment *comment5 = [GBComment commentWithStringValue:@"**Protocol**"];
GBComment *comment6 = [GBComment commentWithStringValue:@"__Document__"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
[processor processComment:comment4 withContext:nil store:store];
[processor processComment:comment5 withContext:nil store:store];
[processor processComment:comment6 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"[`Class`](Classes/Class.html)", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"[`Class(Category)`](Categories/Class+Category.html)", nil];
[self assertComment:comment3 matchesLongDescMarkdown:@"*[Protocol](Protocols/Protocol.html)*", nil];
[self assertComment:comment4 matchesLongDescMarkdown:@"_[Document](docs/Document.html)_", nil];
[self assertComment:comment5 matchesLongDescMarkdown:@"**[Protocol](Protocols/Protocol.html)**", nil];
[self assertComment:comment6 matchesLongDescMarkdown:@"__[Document](docs/Document.html)__", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatInlineLinksWithinCustomFormattingMarkers {
// setup
GBStore *store = [self storeWithDefaultObjects];
id settings1 = [GBTestObjectsRegistry realSettingsProvider];
[settings1 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
[settings1 setUseSingleStarForBold:NO];
GBCommentsProcessor *processor1 = [GBCommentsProcessor processorWithSettingsProvider:settings1];
GBComment *comment1 = [GBComment commentWithStringValue:@"*Protocol*"];
id settings2 = [GBTestObjectsRegistry realSettingsProvider];
[settings2 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
[settings2 setUseSingleStarForBold:YES];
GBCommentsProcessor *processor2 = [GBCommentsProcessor processorWithSettingsProvider:settings2];
GBComment *comment2 = [GBComment commentWithStringValue:@"*Protocol*"];
// execute
[processor1 processComment:comment1 withContext:nil store:store];
[processor2 processComment:comment2 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"*[Protocol](Protocols/Protocol.html)*", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"**~!$[Protocol](Protocols/Protocol.html)$!~**", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatImageReferenceLinks {
// setup
GBStore *store = [self storeWithDefaultObjects];
id settings1 = [GBTestObjectsRegistry realSettingsProvider];
[settings1 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
GBCommentsProcessor *processor1 = [GBCommentsProcessor processorWithSettingsProvider:settings1];
GBComment *comment1 = [GBComment commentWithStringValue:@""];
id settings2 = [GBTestObjectsRegistry realSettingsProvider];
[settings2 setEmbedCrossReferencesWhenProcessingMarkdown:YES];
GBCommentsProcessor *processor2 = [GBCommentsProcessor processorWithSettingsProvider:settings2];
GBComment *comment2 = [GBComment commentWithStringValue:@""];
// execute
[processor1 processComment:comment1 withContext:nil store:store];
[processor2 processComment:comment2 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"~!@@!~", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatImageReferenceLinksWithPercentChars {
// setup
GBStore *store = [self storeWithDefaultObjects];
id settings1 = [GBTestObjectsRegistry realSettingsProvider];
[settings1 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
GBCommentsProcessor *processor1 = [GBCommentsProcessor processorWithSettingsProvider:settings1];
NSString *raw = @"";
GBComment *comment1 = [GBComment commentWithStringValue:raw];
id settings2 = [GBTestObjectsRegistry realSettingsProvider];
[settings2 setEmbedCrossReferencesWhenProcessingMarkdown:YES];
GBCommentsProcessor *processor2 = [GBCommentsProcessor processorWithSettingsProvider:settings2];
GBComment *comment2 = [GBComment commentWithStringValue:raw];
// execute
[processor1 processComment:comment1 withContext:nil store:store];
[processor2 processComment:comment2 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:raw, nil];
[self assertComment:comment2 matchesLongDescMarkdown:[NSString stringWithFormat:@"~!@%@@!~", raw], nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatNestedImageReferenceLinks {
// setup
GBStore *store = [self storeWithDefaultObjects];
id settings1 = [GBTestObjectsRegistry realSettingsProvider];
[settings1 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
GBCommentsProcessor *processor1 = [GBCommentsProcessor processorWithSettingsProvider:settings1];
GBComment *comment1 = [GBComment commentWithStringValue:@"[](http://foo/bar.blip)"];
id settings2 = [GBTestObjectsRegistry realSettingsProvider];
[settings2 setEmbedCrossReferencesWhenProcessingMarkdown:YES];
GBCommentsProcessor *processor2 = [GBCommentsProcessor processorWithSettingsProvider:settings2];
GBComment *comment2 = [GBComment commentWithStringValue:@"[](http://foo/bar.blip)"];
// execute
[processor1 processComment:comment1 withContext:nil store:store];
[processor2 processComment:comment2 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"[](http://foo/bar.blip)", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"~!@[](http://foo/bar.blip)@!~", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatMultipleNestedImageReferenceLinks {
// setup
GBStore *store = [self storeWithDefaultObjects];
id settings1 = [GBTestObjectsRegistry realSettingsProvider];
[settings1 setEmbedCrossReferencesWhenProcessingMarkdown:NO];
GBCommentsProcessor *processor1 = [GBCommentsProcessor processorWithSettingsProvider:settings1];
NSArray *rawStrings =
@[@"[](https://github.com/no%8body/Repo/releases)",
@"[](https://github.com/no%20body/empty%1)",
@"[](https://raw.githubusercontent.com/no%20body/empty%1)"];
NSString *raw = [rawStrings componentsJoinedByString:@" some text "];
GBComment *comment1 = [GBComment commentWithStringValue:raw];
id settings2 = [GBTestObjectsRegistry realSettingsProvider];
[settings2 setEmbedCrossReferencesWhenProcessingMarkdown:YES];
GBCommentsProcessor *processor2 = [GBCommentsProcessor processorWithSettingsProvider:settings2];
GBComment *comment2 = [GBComment commentWithStringValue:raw];
// execute
[processor1 processComment:comment1 withContext:nil store:store];
[processor2 processComment:comment2 withContext:nil store:store];
// verify
NSString *expected = raw;
[self assertComment:comment1 matchesLongDescMarkdown:expected, nil];
expected = [NSString stringWithFormat:@"~!@%@@!~", [rawStrings componentsJoinedByString:@"@!~ some text ~!@"]];
[self assertComment:comment2 matchesLongDescMarkdown:expected, nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldProperlyFormatInlineLinksWhenEmbeddingIsTurnedOn {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [GBCommentsProcessor processorWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBComment *comment1 = [GBComment commentWithStringValue:@"Class"];
GBComment *comment2 = [GBComment commentWithStringValue:@"`Class`"];
GBComment *comment3 = [GBComment commentWithStringValue:@"@see Class"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
// verify
[self assertComment:comment1 matchesLongDescMarkdown:@"~!@[Class](Classes/Class.html)@!~", nil];
[self assertComment:comment2 matchesLongDescMarkdown:@"~!@[`Class`](Classes/Class.html)@!~", nil];
[self assertComponents:comment3.relatedItems matchMarkdown:@"~!@[Class](Classes/Class.html)@!~", nil];
}
#pragma mark Related items cross references handling
- (void)testProcessCommentWithContextStore_markdown_shouldKeepRelatedItemsTopLevelObjectsCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"@see Class"];
GBComment *comment2 = [GBComment commentWithStringValue:@"@see Class(Category)"];
GBComment *comment3 = [GBComment commentWithStringValue:@"@see Protocol"];
GBComment *comment4 = [GBComment commentWithStringValue:@"@see Document"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
[processor processComment:comment4 withContext:nil store:store];
// verify
[self assertComponents:comment1.relatedItems matchMarkdown:@"[Class](Classes/Class.html)", nil];
[self assertComponents:comment2.relatedItems matchMarkdown:@"[Class(Category)](Categories/Class+Category.html)", nil];
[self assertComponents:comment3.relatedItems matchMarkdown:@"[Protocol](Protocols/Protocol.html)", nil];
[self assertComponents:comment4.relatedItems matchMarkdown:@"[Document](docs/Document.html)", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldUsePrefixForRelatedItemsLocalMemberCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"@see instanceMethod:"];
GBComment *comment2 = [GBComment commentWithStringValue:@"@see classMethod:"];
GBComment *comment3 = [GBComment commentWithStringValue:@"@see value"];
// execute
id context = [store.classes anyObject];
[processor processComment:comment1 withContext:context store:store];
[processor processComment:comment2 withContext:context store:store];
[processor processComment:comment3 withContext:context store:store];
// verify
[self assertComponents:comment1.relatedItems matchMarkdown:@"[- instanceMethod:](#//api/name/instanceMethod:)", nil];
[self assertComponents:comment2.relatedItems matchMarkdown:@"[+ classMethod:](#//api/name/classMethod:)", nil];
[self assertComponents:comment3.relatedItems matchMarkdown:@"[@property value](#//api/name/value)", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldKeepRelatedItemsRemoteMemberCrossRefsTexts {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment1 = [GBComment commentWithStringValue:@"@see [Class instanceMethod:]"];
GBComment *comment2 = [GBComment commentWithStringValue:@"@see [Class classMethod:]"];
GBComment *comment3 = [GBComment commentWithStringValue:@"@see [Class value]"];
// execute
[processor processComment:comment1 withContext:nil store:store];
[processor processComment:comment2 withContext:nil store:store];
[processor processComment:comment3 withContext:nil store:store];
// verify
[self assertComponents:comment1.relatedItems matchMarkdown:@"[[Class instanceMethod:]](Classes/Class.html#//api/name/instanceMethod:)", nil];
[self assertComponents:comment2.relatedItems matchMarkdown:@"[[Class classMethod:]](Classes/Class.html#//api/name/classMethod:)", nil];
[self assertComponents:comment3.relatedItems matchMarkdown:@"[[Class value]](Classes/Class.html#//api/name/value)", nil];
}
#pragma mark Making sure reasonably complex stuff gets handled properly
- (void)testProcessCommentWithConextStore_markdown_shouldHandleMultipleMarkdownLinks {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"Some prefix [link1](address1) middle [link2](address2) and suffix"];
// execute
[processor processComment:comment withContext:nil store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"Some prefix [link1](address1) middle [link2](address2) and suffix", nil];
}
- (void)testProcessCommentWithContextStore_markdown_shouldHandleSimpleLinksWithinMarkdownLinksProperly {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"[link1](address1) Document and [this class](Class) [link2](address2) longer suffix to make sure"];
// execute
[processor processComment:comment withContext:nil store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"[link1](address1) [Document](docs/Document.html) and [this class](Classes/Class.html) [link2](address2) longer suffix to make sure", nil];
}
#pragma mark Copied comments handling
- (void)testStringByConvertingCrossReferencesInString_copied_shouldUseUniversalRelativePathForLocalMembers {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBClassData *class = [store classWithName:@"Class"];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"instanceMethod:"];
comment.originalContext = class;
// execute
[processor processComment:comment withContext:class store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:@"[instanceMethod:](../Classes/Class.html#//api/name/instanceMethod:)", nil];
}
- (void)testStringByConvertingCrossReferencesInString_copied_shouldIgnoreCommentIfOriginalContextDoesntMatch {
// setup
GBStore *store = [self storeWithDefaultObjects];
GBCommentsProcessor *processor = [self defaultProcessor];
GBComment *comment = [GBComment commentWithStringValue:@"instanceMethod:"];
comment.originalContext = [store classWithName:@"Class"];
// execute
[processor processComment:comment withContext:[store protocolWithName:@"Protocol"] store:store];
// verify
[self assertComment:comment matchesLongDescMarkdown:nil];
}
#pragma mark Creation methods
- (GBCommentsProcessor *)defaultProcessor {
// Creates a new GBCommentsProcessor using real settings. Note that we disable embedding cross references to make test strings more readable.
id settings = [GBTestObjectsRegistry realSettingsProvider];
[settings setEmbedCrossReferencesWhenProcessingMarkdown:NO];
return [GBCommentsProcessor processorWithSettingsProvider:settings];
}
- (GBStore *)defaultStore {
return [GBTestObjectsRegistry store];
}
- (GBStore *)storeWithDefaultObjects {
GBMethodData *instanceMethod = [GBTestObjectsRegistry instanceMethodWithNames:@"instanceMethod", nil];
GBMethodData *classMethod = [GBTestObjectsRegistry classMethodWithNames:@"classMethod", nil];
GBMethodData *property = [GBTestObjectsRegistry propertyMethodWithArgument:@"value"];
GBClassData *class = [GBTestObjectsRegistry classWithName:@"Class" methods:instanceMethod, classMethod, property, nil];
GBCategoryData *category = [GBCategoryData categoryDataWithName:@"Category" className:@"Class"];
GBProtocolData *protocol = [GBProtocolData protocolDataWithName:@"Protocol"];
GBDocumentData *document = [GBDocumentData documentDataWithContents:@"c" path:@"Document.ext"];
return [GBTestObjectsRegistry storeWithObjects:class, category, protocol, document, nil];
}
#pragma mark Assertion methods
- (void)assertComment:(GBComment *)comment matchesLongDescMarkdown:(NSString *)first, ... {
NSMutableArray *expectations = [NSMutableArray array];
va_list args;
va_start(args, first);
for (NSString *arg=first; arg != nil; arg=va_arg(args, NSString*)) {
[expectations addObject:arg];
}
va_end(args);
assertThatInteger([comment.longDescription.components count], equalToInteger([expectations count]));
for (NSUInteger i=0; i<[expectations count]; i++) {
GBCommentComponent *component = comment.longDescription.components[i];
NSString *expected = expectations[i];
assertThat(component.markdownValue, is(expected));
}
}
- (void)assertComponents:(GBCommentComponentsList *)components matchMarkdown:(NSString *)first, ... {
NSMutableArray *expectations = [NSMutableArray array];
va_list args;
va_start(args, first);
for (NSString *arg=first; arg != nil; arg=va_arg(args, NSString*)) {
[expectations addObject:arg];
}
va_end(args);
assertThatInteger([components.components count], equalToInteger([expectations count]));
for (NSUInteger i=0; i<[expectations count]; i++) {
GBCommentComponent *component = components.components[i];
NSString *expected = expectations[i];
assertThat(component.markdownValue, is(expected));
}
}
@end