forked from tomaz/appledoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGBTemplateVariablesProvider-ObjectSpecificationsTesting.m
209 lines (192 loc) · 10.9 KB
/
GBTemplateVariablesProvider-ObjectSpecificationsTesting.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
//
// GBTemplateVariablesProvider-ObjectSpecificationsTesting.m
// appledoc
//
// Created by Tomaz Kragelj on 3.10.10.
// Copyright (C) 2010 Gentle Bytes. All rights reserved.
//
#import "GBApplicationSettingsProvider.h"
#import "GBHTMLTemplateVariablesProvider.h"
#import "GBTokenizer.h"
@interface GBTemplateVariablesProviderObjectSpecificationsTesting : GHTestCase
@end
@implementation GBTemplateVariablesProviderObjectSpecificationsTesting
#pragma mark Inherits from
- (void)testVariablesForClass_inheritsFrom_shouldIgnoreSpecificationForRootClass {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
assertThatInteger([specifications count], equalToInteger(0));
}
- (void)testVariablesForClass_inheritsFrom_shouldPrepareSpecificationForUnknownSuperclass {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
class.nameOfSuperclass = @"NSObject";
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(1));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"NSObject"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], is(nil));
}
- (void)testVariablesForClass_inheritsFrom_shouldPrepareSpecificationForKnownSuperclass {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *superclass = [GBClassData classDataWithName:@"Base"];
GBStore *store = [GBTestObjectsRegistry store];
[store registerClass:superclass];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
class.nameOfSuperclass = superclass.nameOfClass;
class.superclass = superclass;
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:store];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(1));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"Base"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], isNot(nil));
}
- (void)testVariablesForClass_inheritsFrom_shouldPrepareSpecificationForClassHierarchy {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *level2 = [GBClassData classDataWithName:@"Level2"];
level2.nameOfSuperclass = @"NSObject";
GBClassData *level1 = [GBClassData classDataWithName:@"Level1"];
level1.nameOfSuperclass = level2.nameOfClass;
level1.superclass = level2;
GBClassData *class = [GBClassData classDataWithName:@"Class"];
class.nameOfSuperclass = level1.nameOfClass;
class.superclass = level1;
GBStore *store = [GBTestObjectsRegistry store];
[store registerClass:level1];
[store registerClass:level2];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:store];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify - note that href is created even if superclass is not registered to store as long as a superclass property is non-nil.
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(3));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"Level1"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], isNot(nil));
assertThat([[values objectAtIndex:1] objectForKey:@"string"], is(@"Level2"));
assertThat([[values objectAtIndex:1] objectForKey:@"href"], isNot(nil));
assertThat([[values objectAtIndex:2] objectForKey:@"string"], is(@"NSObject"));
assertThat([[values objectAtIndex:2] objectForKey:@"href"], is(nil));
}
#pragma mark Conforms to
- (void)testVariablesForClass_conformsTo_shouldIgnoreSpecificationForNonAdoptingClass {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
assertThatInteger([specifications count], equalToInteger(0));
}
- (void)testVariablesForClass_conformsTo_shouldPrepareSpecificationForUnknownProtocol {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
[class.adoptedProtocols registerProtocol:[GBProtocolData protocolDataWithName:@"Protocol"]];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(1));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"Protocol"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], is(nil));
}
- (void)testVariablesForClass_conformsTo_shouldPrepareSpecificationForKnownProtocol {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBProtocolData *protocol = [GBProtocolData protocolDataWithName:@"Protocol"];
GBStore *store = [GBTestObjectsRegistry store];
[store registerProtocol:protocol];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
[class.adoptedProtocols registerProtocol:protocol];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:store];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(1));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"Protocol"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], isNot(nil));
}
- (void)testVariablesForClass_conformsTo_shouldPrepareSpecificationForComplexProtocolsList {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBProtocolData *protocol1 = [GBProtocolData protocolDataWithName:@"Protocol1"];
GBProtocolData *protocol2 = [GBProtocolData protocolDataWithName:@"Protocol2"];
GBProtocolData *protocol3 = [GBProtocolData protocolDataWithName:@"Protocol3"];
GBStore *store = [GBTestObjectsRegistry store];
[store registerProtocol:protocol1];
[store registerProtocol:protocol3];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
[class.adoptedProtocols registerProtocol:protocol1];
[class.adoptedProtocols registerProtocol:protocol2];
[class.adoptedProtocols registerProtocol:protocol3];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:store];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(3));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"Protocol1"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], isNot(nil));
assertThat([[values objectAtIndex:1] objectForKey:@"string"], is(@"Protocol2"));
assertThat([[values objectAtIndex:1] objectForKey:@"href"], is(nil));
assertThat([[values objectAtIndex:2] objectForKey:@"string"], is(@"Protocol3"));
assertThat([[values objectAtIndex:2] objectForKey:@"href"], isNot(nil));
}
#pragma mark Declared in
- (void)testVariablesForClass_declaredIn_shouldPrepareSpecificationForSingleSourceInfo {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
[class registerSourceInfo:[GBSourceInfo infoWithFilename:@"file.h" lineNumber:10]];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(1));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"file.h"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], is(nil));
}
- (void)testVariablesForClass_declaredIn_shouldPrepareSpecificationForMultipleSourceInfos {
// setup
GBHTMLTemplateVariablesProvider *provider = [GBHTMLTemplateVariablesProvider providerWithSettingsProvider:[GBTestObjectsRegistry realSettingsProvider]];
GBClassData *class = [GBClassData classDataWithName:@"Class"];
[class registerSourceInfo:[GBSourceInfo infoWithFilename:@"file1.h" lineNumber:10]];
[class registerSourceInfo:[GBSourceInfo infoWithFilename:@"file2.h" lineNumber:55]];
// execute
NSDictionary *vars = [provider variablesForClass:class withStore:[GBTestObjectsRegistry store]];
NSArray *specifications = [vars valueForKeyPath:@"page.specifications.values"];
// verify
NSDictionary *specification = [specifications objectAtIndex:0];
NSArray *values = [specification objectForKey:@"values"];
assertThatInteger([values count], equalToInteger(2));
assertThat([[values objectAtIndex:0] objectForKey:@"string"], is(@"file1.h"));
assertThat([[values objectAtIndex:0] objectForKey:@"href"], is(nil));
assertThat([[values objectAtIndex:1] objectForKey:@"string"], is(@"file2.h"));
assertThat([[values objectAtIndex:1] objectForKey:@"href"], is(nil));
}
@end