blob: 6ec8106c3268b5c2bfd0553bb6717ed35e923032 [file] [log] [blame]
/**
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 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();
}