forked from alunny/node-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddResourceFile.js
More file actions
267 lines (221 loc) · 10.4 KB
/
addResourceFile.js
File metadata and controls
267 lines (221 loc) · 10.4 KB
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
var fullProject = require('./fixtures/full-project')
fullProjectStr = JSON.stringify(fullProject),
pbx = require('../lib/pbxProject'),
pbxFile = require('../lib/pbxFile'),
proj = new pbx('.');
function cleanHash() {
return JSON.parse(fullProjectStr);
}
exports.setUp = function (callback) {
proj.hash = cleanHash();
callback();
}
exports.addResourceFile = {
'should return a pbxFile': function (test) {
var newFile = proj.addResourceFile('assets.bundle');
test.equal(newFile.constructor, pbxFile);
test.done()
},
'should set a uuid on the pbxFile': function (test) {
var newFile = proj.addResourceFile('assets.bundle');
test.ok(newFile.uuid);
test.done()
},
'should set a fileRef on the pbxFile': function (test) {
var newFile = proj.addResourceFile('assets.bundle');
test.ok(newFile.fileRef);
test.done()
},
'should populate the PBXBuildFile section with 2 fields': function (test) {
var newFile = proj.addResourceFile('assets.bundle'),
buildFileSection = proj.pbxBuildFileSection(),
bfsLength = Object.keys(buildFileSection).length;
test.equal(60, bfsLength);
test.ok(buildFileSection[newFile.uuid]);
test.ok(buildFileSection[newFile.uuid + '_comment']);
test.done();
},
'should add the PBXBuildFile comment correctly': function (test) {
var newFile = proj.addResourceFile('assets.bundle'),
commentKey = newFile.uuid + '_comment',
buildFileSection = proj.pbxBuildFileSection();
test.equal(buildFileSection[commentKey], 'assets.bundle in Resources');
test.done();
},
'should add the PBXBuildFile object correctly': function (test) {
var newFile = proj.addResourceFile('assets.bundle'),
buildFileSection = proj.pbxBuildFileSection(),
buildFileEntry = buildFileSection[newFile.uuid];
test.equal(buildFileEntry.isa, 'PBXBuildFile');
test.equal(buildFileEntry.fileRef, newFile.fileRef);
test.equal(buildFileEntry.fileRef_comment, 'assets.bundle');
test.done();
},
'should populate the PBXFileReference section with 2 fields': function (test) {
var newFile = proj.addResourceFile('assets.bundle'),
fileRefSection = proj.pbxFileReferenceSection(),
frsLength = Object.keys(fileRefSection).length;
test.equal(68, frsLength);
test.ok(fileRefSection[newFile.fileRef]);
test.ok(fileRefSection[newFile.fileRef + '_comment']);
test.done();
},
'should populate the PBXFileReference comment correctly': function (test) {
var newFile = proj.addResourceFile('assets.bundle'),
fileRefSection = proj.pbxFileReferenceSection(),
commentKey = newFile.fileRef + '_comment';
test.equal(fileRefSection[commentKey], 'assets.bundle');
test.done();
},
'should add the PBXFileReference object correctly': function (test) {
delete proj.pbxGroupByName('Resources').path;
var newFile = proj.addResourceFile('Resources/assets.bundle'),
fileRefSection = proj.pbxFileReferenceSection(),
fileRefEntry = fileRefSection[newFile.fileRef];
test.equal(fileRefEntry.isa, 'PBXFileReference');
test.equal(fileRefEntry.fileEncoding, undefined);
test.equal(fileRefEntry.lastKnownFileType, 'wrapper.plug-in');
test.equal(fileRefEntry.name, '"assets.bundle"');
test.equal(fileRefEntry.path, '"Resources/assets.bundle"');
test.equal(fileRefEntry.sourceTree, '"<group>"');
test.done();
},
'should add to the Resources PBXGroup group': function (test) {
var newFile = proj.addResourceFile('Resources/assets.bundle'),
resources = proj.pbxGroupByName('Resources');
test.equal(resources.children.length, 10);
test.done();
},
'should have the right values for the PBXGroup entry': function (test) {
var newFile = proj.addResourceFile('Resources/assets.bundle'),
resources = proj.pbxGroupByName('Resources'),
resourceObj = resources.children[9];
test.equal(resourceObj.comment, 'assets.bundle');
test.equal(resourceObj.value, newFile.fileRef);
test.done();
},
'should add to the PBXSourcesBuildPhase': function (test) {
var newFile = proj.addResourceFile('Resources/assets.bundle'),
sources = proj.pbxResourcesBuildPhaseObj();
test.equal(sources.files.length, 13);
test.done();
},
'should have the right values for the Sources entry': function (test) {
var newFile = proj.addResourceFile('Resources/assets.bundle'),
sources = proj.pbxResourcesBuildPhaseObj(),
sourceObj = sources.files[12];
test.equal(sourceObj.comment, 'assets.bundle in Resources');
test.equal(sourceObj.value, newFile.uuid);
test.done();
},
'should remove "Resources/" from path if group path is set': function (test) {
var resources = proj.pbxGroupByName('Resources'),
newFile;
resources.path = '"Test200/Resources"';
newFile = proj.addResourceFile('Resources/assets.bundle');
test.equal(newFile.path, 'assets.bundle');
test.done();
},
'when added with { plugin: true }': {
'should add the PBXFileReference with the "Plugins" path': function (test) {
delete proj.pbxGroupByName('Plugins').path;
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }),
fileRefSection = proj.pbxFileReferenceSection(),
fileRefEntry = fileRefSection[newFile.fileRef];
test.equal(fileRefEntry.isa, 'PBXFileReference');
test.equal(fileRefEntry.fileEncoding, undefined);
test.equal(fileRefEntry.lastKnownFileType, 'wrapper.plug-in');
test.equal(fileRefEntry.name, '"assets.bundle"');
test.equal(fileRefEntry.path, '"Plugins/assets.bundle"');
test.equal(fileRefEntry.sourceTree, '"<group>"');
test.done();
},
'should add to the Plugins PBXGroup group': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }),
plugins = proj.pbxGroupByName('Plugins');
test.equal(plugins.children.length, 1);
test.done();
},
'should have the Plugins values for the PBXGroup entry': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }),
plugins = proj.pbxGroupByName('Plugins'),
pluginObj = plugins.children[0];
test.equal(pluginObj.comment, 'assets.bundle');
test.equal(pluginObj.value, newFile.fileRef);
test.done();
},
'should add to the PBXSourcesBuildPhase': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }),
sources = proj.pbxResourcesBuildPhaseObj();
test.equal(sources.files.length, 13);
test.done();
},
'should have the right values for the Sources entry': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }),
sources = proj.pbxResourcesBuildPhaseObj(),
sourceObj = sources.files[12];
test.equal(sourceObj.comment, 'assets.bundle in Resources');
test.equal(sourceObj.value, newFile.uuid);
test.done();
},
'should remove "Plugins/" from path if group path is set': function (test) {
var plugins = proj.pbxGroupByName('Plugins'),
newFile;
plugins.path = '"Test200/Plugins"';
newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true });
test.equal(newFile.path, 'assets.bundle');
test.done();
}
},
'when added with { variantGroup: true }': {
'should not add to the PBXResourcesBuildPhase and PBXBuildFile': function (test) {
var newFile = proj.addResourceFile('en.lproj/Localization.strings',
{ variantGroup: true });
var sources = proj.pbxResourcesBuildPhaseObj();
test.equal(sources.files.length, 12);
var buildFileSection = proj.pbxBuildFileSection();
test.ok(buildFileSection[newFile.uuid] === undefined);
test.done();
},
},
'duplicate entries': {
'should return false': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle');
test.ok(!proj.addResourceFile('Plugins/assets.bundle'));
test.done();
},
'should return false (plugin entries)': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true });
test.ok(!proj.addResourceFile('Plugins/assets.bundle',
{ plugin: true }));
test.done();
},
'should not add another entry anywhere': function (test) {
var newFile = proj.addResourceFile('Plugins/assets.bundle'),
buildFileSection = proj.pbxBuildFileSection(),
bfsLength = Object.keys(buildFileSection).length,
fileRefSection = proj.pbxFileReferenceSection(),
frsLength = Object.keys(fileRefSection).length,
resources = proj.pbxGroupByName('Resources'),
sources = proj.pbxResourcesBuildPhaseObj();
proj.addResourceFile('Plugins/assets.bundle');
// check lengths
test.equal(60, bfsLength);
test.equal(68, frsLength);
test.equal(resources.children.length, 10);
test.equal(sources.files.length, 13);
test.done();
}
},
tearDown: function (callback) {
delete proj.pbxGroupByName('Resources').path;
callback();
}
}