forked from apache/cordova-node-xcode
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaddFramework.js
262 lines (221 loc) · 10.4 KB
/
addFramework.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
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
/**
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
'License'); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
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();
}
function nonComments(obj) {
var keys = Object.keys(obj),
newObj = {}, i = 0;
for (i; i < keys.length; i++) {
if (!/_comment$/.test(keys[i])) {
newObj[keys[i]] = obj[keys[i]];
}
}
return newObj;
}
function frameworkSearchPaths(proj) {
var configs = nonComments(proj.pbxXCBuildConfigurationSection()),
allPaths = [],
ids = Object.keys(configs), i, buildSettings;
for (i = 0; i< ids.length; i++) {
buildSettings = configs[ids[i]].buildSettings;
if (buildSettings['FRAMEWORK_SEARCH_PATHS']) {
allPaths.push(buildSettings['FRAMEWORK_SEARCH_PATHS']);
}
}
return allPaths;
}
exports.addFramework = {
'should return a pbxFile': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib');
test.equal(newFile.constructor, pbxFile);
test.done()
},
'should set a fileRef on the pbxFile': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib');
test.ok(newFile.fileRef);
test.done()
},
'should populate the PBXFileReference section with 2 fields': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib');
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.addFramework('libsqlite3.dylib');
fileRefSection = proj.pbxFileReferenceSection(),
commentKey = newFile.fileRef + '_comment';
test.equal(fileRefSection[commentKey], 'libsqlite3.dylib');
test.done();
},
'should add the PBXFileReference object correctly': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
fileRefSection = proj.pbxFileReferenceSection(),
fileRefEntry = fileRefSection[newFile.fileRef];
test.equal(fileRefEntry.isa, 'PBXFileReference');
test.equal(fileRefEntry.lastKnownFileType, 'compiled.mach-o.dylib');
test.equal(fileRefEntry.name, 'libsqlite3.dylib');
test.equal(fileRefEntry.path, '"usr/lib/libsqlite3.dylib"');
test.equal(fileRefEntry.sourceTree, 'SDKROOT');
test.done();
},
'should populate the PBXBuildFile section with 2 fields': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
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.addFramework('libsqlite3.dylib'),
commentKey = newFile.uuid + '_comment',
buildFileSection = proj.pbxBuildFileSection();
test.equal(buildFileSection[commentKey], 'libsqlite3.dylib in Frameworks');
test.done();
},
'should add the PBXBuildFile object correctly': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
buildFileSection = proj.pbxBuildFileSection(),
buildFileEntry = buildFileSection[newFile.uuid];
test.equal(buildFileEntry.isa, 'PBXBuildFile');
test.equal(buildFileEntry.fileRef, newFile.fileRef);
test.equal(buildFileEntry.fileRef_comment, 'libsqlite3.dylib');
test.equal(buildFileEntry.settings, undefined);
test.done();
},
'should add the PBXBuildFile object correctly /w weak linked frameworks': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib', { weak: true }),
buildFileSection = proj.pbxBuildFileSection(),
buildFileEntry = buildFileSection[newFile.uuid];
test.equal(buildFileEntry.isa, 'PBXBuildFile');
test.equal(buildFileEntry.fileRef, newFile.fileRef);
test.equal(buildFileEntry.fileRef_comment, 'libsqlite3.dylib');
test.deepEqual(buildFileEntry.settings, { ATTRIBUTES: [ 'Weak' ] });
test.done();
},
'should add to the Frameworks PBXGroup': function (test) {
var newLength = proj.pbxGroupByName('Frameworks').children.length + 1,
newFile = proj.addFramework('libsqlite3.dylib'),
frameworks = proj.pbxGroupByName('Frameworks');
test.equal(frameworks.children.length, newLength);
test.done();
},
'should have the right values for the PBXGroup entry': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
frameworks = proj.pbxGroupByName('Frameworks').children,
framework = frameworks[frameworks.length - 1];
test.equal(framework.comment, 'libsqlite3.dylib');
test.equal(framework.value, newFile.fileRef);
test.done();
},
'should add to the PBXFrameworksBuildPhase': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
frameworks = proj.pbxFrameworksBuildPhaseObj();
test.equal(frameworks.files.length, 16);
test.done();
},
'should not add to the PBXFrameworksBuildPhase': function (test) {
var newFile = proj.addFramework('Private.framework', {link: false}),
frameworks = proj.pbxFrameworksBuildPhaseObj();
test.equal(frameworks.files.length, 15);
test.done();
},
'should have the right values for the Sources entry': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib'),
frameworks = proj.pbxFrameworksBuildPhaseObj(),
framework = frameworks.files[15];
test.equal(framework.comment, 'libsqlite3.dylib in Frameworks');
test.equal(framework.value, newFile.uuid);
test.done();
},
'duplicate entries': {
'should return same build file': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib');
var sameFile = proj.addFramework('libsqlite3.dylib');
test.equal(newFile.uuid, sameFile.uuid);
test.equal(newFile.fileRef, sameFile.fileRef);
test.done();
},
'should return different build file with same ref for different target': function (test) {
var newFile = proj.addFramework('libsqlite3.dylib');
var differentFile = proj.addFramework('libsqlite3.dylib', { target: "1D6058900D05DD3D006BFB54"});
test.notEqual(newFile.uuid, differentFile.uuid);
test.equal(newFile.fileRef, differentFile.fileRef);
test.done();
}
},
'should pbxFile correctly for custom frameworks': function (test) {
var newFile = proj.addFramework('/path/to/Custom.framework', {customFramework: true});
test.ok(newFile.customFramework);
test.ok(!newFile.fileEncoding);
test.equal(newFile.sourceTree, '"<group>"');
test.equal(newFile.group, 'Frameworks');
test.equal(newFile.basename, 'Custom.framework');
test.equal(newFile.dirname, '/path/to');
// XXX framework has to be copied over to PROJECT root. That is what XCode does when you drag&drop
test.equal(newFile.path, '/path/to/Custom.framework');
// should add path to framework search path
var frameworkPaths = frameworkSearchPaths(proj);
expectedPath = '"\\"/path/to\\""';
for (i = 0; i < frameworkPaths.length; i++) {
var current = frameworkPaths[i];
test.ok(current.indexOf('"$(inherited)"') >= 0);
test.ok(current.indexOf(expectedPath) >= 0);
}
test.done();
},
'should add to the Embed Frameworks PBXCopyFilesBuildPhase': function (test) {
var newFile = proj.addFramework('/path/to/SomeEmbeddableCustom.framework', {customFramework: true, embed: true}),
frameworks = proj.pbxEmbedFrameworksBuildPhaseObj();
var buildPhaseInPbx = proj.pbxEmbedFrameworksBuildPhaseObj();
test.equal(buildPhaseInPbx.dstSubfolderSpec, 10);
test.equal(frameworks.files.length, 1);
test.done();
},
'should not add to the Embed Frameworks PBXCopyFilesBuildPhase by default': function (test) {
var newFile = proj.addFramework('/path/to/Custom.framework', {customFramework: true}),
frameworks = proj.pbxEmbedFrameworksBuildPhaseObj();
test.equal(frameworks.files.length, 0);
test.done();
},
'should add the PBXBuildFile object correctly /w signable frameworks': function (test) {
var newFile = proj.addFramework('/path/to/SomeSignable.framework', { customFramework: true, embed: true, sign: true }),
buildFileSection = proj.pbxBuildFileSection(),
buildFileEntry = buildFileSection[newFile.uuid];
test.equal(newFile.group, 'Embed Frameworks');
test.equal(buildFileEntry.isa, 'PBXBuildFile');
test.equal(buildFileEntry.fileRef, newFile.fileRef);
test.equal(buildFileEntry.fileRef_comment, 'SomeSignable.framework');
test.deepEqual(buildFileEntry.settings, { ATTRIBUTES: [ 'CodeSignOnCopy' ] });
test.done();
},
}