forked from alunny/node-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhash.js
More file actions
35 lines (30 loc) · 1.12 KB
/
hash.js
File metadata and controls
35 lines (30 loc) · 1.12 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
var PEG = require('pegjs'),
fs = require('fs'),
pbx = fs.readFileSync('test/parser/projects/hash.pbxproj', 'utf-8'),
grammar = fs.readFileSync('lib/parser/pbxproj.pegjs', 'utf-8'),
parser = PEG.generate(grammar),
rawProj = parser.parse(pbx),
project = rawProj.project;
exports['should have the top-line comment in place'] = function (test) {
test.equals(rawProj.headComment, '!$*UTF8*$!');
test.done()
}
exports['should parse a numeric attribute'] = function (test) {
test.strictEqual(project.archiveVersion, 1);
test.strictEqual(project.objectVersion, 45);
test.done()
}
exports['should parse an empty object'] = function (test) {
var empty = project.classes;
test.equal(Object.keys(empty).length, 0);
test.done()
}
exports['should split out properties and comments'] = function (test) {
test.equal(project.rootObject, '29B97313FDCFA39411CA2CEA');
test.equal(project['rootObject_comment'], 'Project object');
test.done();
}
exports['should parse non-commented hash things'] = function (test) {
test.equal(project.nonObject, '29B97313FDCFA39411CA2CEF');
test.done();
}