blob: 8bc144ff53a3c00a29d7dad47751cf8542c1ec0f [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 shell = require('shelljs');
var fs = require('fs');
var path = require('path');
var util = require('util');
var cordova_bin = path.join(__dirname, '../bin');// is this the same on all platforms?
var tmpDir = path.join(__dirname, '../temp');
var createScriptPath = path.join(cordova_bin, 'create');
function createAndBuild (projectname, projectid) {
var return_code = 0;
var command;
// remove existing folder
shell.rm('-rf', tmpDir);
shell.mkdir(tmpDir);
// create the project
command = util.format('"%s" "%s/%s" "%s" "%s"', createScriptPath, tmpDir, projectname, projectid, projectname);
return_code = shell.exec(command).code;
expect(return_code).toBe(0);
var platWwwPath = path.join(tmpDir, projectname, 'platform_www');
var manifestPath = path.join(platWwwPath, 'manifest.json');
expect(fs.existsSync(manifestPath)).toBe(true);
var manifestObj = require(manifestPath);
expect(manifestObj.name).toBe(projectname);
// start_url
expect(manifestObj.start_url).toBe('index.html');
// display
expect(manifestObj.display).toBe('standalone');
// description
expect(manifestObj.description).toBeDefined();
// background_color
expect(manifestObj.background_color).toBeDefined();
// theme_color
expect(manifestObj.theme_color).toBeDefined();
// scope
expect(manifestObj.scope).toBeDefined();
// orientation
expect(manifestObj.orientation).toBeDefined();
// icons
expect(manifestObj.icons).toBeDefined();
expect(Array.isArray(manifestObj.icons)).toBe(true);
expect(manifestObj.icons.length).toBeDefined();
expect(manifestObj.icons.length).toBeGreaterThan(0);
// related_applications[{platform:'web'},{platform:'play',url:...}] ?
// clean-up
shell.rm('-rf', tmpDir);
}
describe('create', function () {
it('create project with manifest.json', function () {
var projectname = 'testcreate';
var projectid = 'com.test.app1';
createAndBuild(projectname, projectid);
});
});