This repository was archived by the owner on May 27, 2021. It is now read-only.
forked from alunny/node-xcode
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathremoveSourceFile.js
More file actions
146 lines (126 loc) · 5.25 KB
/
removeSourceFile.js
File metadata and controls
146 lines (126 loc) · 5.25 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
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.removeSourceFile = {
'should return a pbxFile': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m');
test.equal(newFile.constructor, pbxFile);
test.done()
},
'should set a uuid on the pbxFile': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m');
test.ok(newFile.uuid);
test.done()
},
'should set a fileRef on the pbxFile': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m');
test.ok(newFile.fileRef);
test.done()
},
'should remove 2 fields from the PBXBuildFile section': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m'),
buildFileSection = proj.pbxBuildFileSection(),
bfsLength = Object.keys(buildFileSection).length;
test.equal(58, bfsLength);
test.ok(!buildFileSection[newFile.uuid]);
test.ok(!buildFileSection[newFile.uuid + '_comment']);
test.done();
},
'should remove comment from the PBXBuildFile correctly': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m'),
commentKey = newFile.uuid + '_comment',
buildFileSection = proj.pbxBuildFileSection();
test.notEqual(!buildFileSection[commentKey], 'file.m in Sources');
test.done();
},
'should remove the PBXBuildFile object correctly': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m'),
buildFileSection = proj.pbxBuildFileSection(),
buildFileEntry = buildFileSection[newFile.uuid];
test.equal(buildFileEntry, undefined);
test.done();
},
'should remove 2 fields from the PBXFileReference section': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m'),
fileRefSection = proj.pbxFileReferenceSection(),
frsLength = Object.keys(fileRefSection).length;
test.equal(66, frsLength);
test.ok(!fileRefSection[newFile.fileRef]);
test.ok(!fileRefSection[newFile.fileRef + '_comment']);
test.done();
},
'should remove the PBXFileReference comment correctly': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('file.m'),
fileRefSection = proj.pbxFileReferenceSection(),
commentKey = newFile.fileRef + '_comment';
test.ok(!fileRefSection[commentKey]);
test.done();
},
'should remove the PBXFileReference object correctly': function (test) {
proj.addSourceFile('file.m');
var newFile = proj.removeSourceFile('Plugins/file.m'),
fileRefSection = proj.pbxFileReferenceSection(),
fileRefEntry = fileRefSection[newFile.fileRef];
test.ok(!fileRefEntry);
test.done();
},
'should remove from the Plugins PBXGroup group': function (test) {
proj.addSourceFile('Plugins/file.m');
var newFile = proj.removeSourceFile('Plugins/file.m'),
plugins = proj.pbxGroupByName('Plugins');
test.equal(plugins.children.length, 0);
test.done();
},
'should have the right values for the PBXGroup entry': function (test) {
proj.addSourceFile('Plugins/file.m');
var newFile = proj.removeSourceFile('Plugins/file.m'),
plugins = proj.pbxGroupByName('Plugins'),
pluginObj = plugins.children[0];
test.ok(!pluginObj);
test.done();
},
'should remove from the PBXSourcesBuildPhase': function (test) {
proj.addSourceFile('Plugins/file.m');
var newFile = proj.removeSourceFile('Plugins/file.m'),
sources = proj.pbxSourcesBuildPhaseObj();
test.equal(sources.files.length, 2);
test.done();
},
'should have the right values for the Sources entry': function (test) {
proj.addSourceFile('Plugins/file.m');
var newFile = proj.removeSourceFile('Plugins/file.m'),
sources = proj.pbxSourcesBuildPhaseObj(),
sourceObj = sources.files[2];
test.ok(!sourceObj);
test.done();
},
'should remove file from PBXFileReference after modified by Xcode': function(test) {
var fileRef = proj.addSourceFile('Plugins/file.m').fileRef;
// Simulate Xcode's behaviour of stripping quotes around path and name
// properties.
var entry = proj.pbxFileReferenceSection()[fileRef];
entry.name = entry.name.replace(/^"(.*)"$/, "$1");
entry.path = entry.path.replace(/^"(.*)"$/, "$1");
var newFile = proj.removeSourceFile('Plugins/file.m');
test.ok(newFile.uuid);
test.ok(!proj.pbxFileReferenceSection()[fileRef]);
test.done();
}
}