blob: 80a4d81efd72371bb1a2800f12b1b0fbbd8adc72 [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'),
fs = require('fs'),
path = require('path');
describe('Cordova create and build', function(){
var projectFolder = 'testcreate 応用',
buildDirectory = path.join(__dirname, '../..'),
anycpuPackageFolder = path.join(buildDirectory, projectFolder, 'Bin', 'Debug'),
x86PackageFolder = path.join(buildDirectory, projectFolder, 'Bin', 'x86', 'Debug'),
armPackageFolder = path.join(buildDirectory, projectFolder, 'Bin', 'ARM', 'Debug'),
buildScriptPath = '"' + path.join(buildDirectory, projectFolder, 'cordova', 'build') + '"',
originalTimeout;
beforeEach(function(){
shell.exec(path.join('bin', 'create') + ' "' + projectFolder + '" com.test.app 応用', {silent : true});
originalTimeout = jasmine.getEnv().defaultTimeoutInterval;
jasmine.getEnv().defaultTimeoutInterval = 30000;
});
afterEach(function() {
shell.cd(buildDirectory);
shell.rm('-rf', projectFolder);
jasmine.getEnv().defaultTimeoutInterval = originalTimeout;
});
it('spec.1 should create new project', function(){
expect(fs.existsSync(projectFolder)).toBe(true);
});
it('spec.2 should build project', function(){
shell.exec(buildScriptPath, {silent:true});
var packages = shell.ls(anycpuPackageFolder);
expect(packages.filter(function(file) { return file.match(/.*AnyCPU\.xap$/); }).length).toBe(1);
});
it('spec.3 should build project for particular CPU', function(){
shell.exec(buildScriptPath + ' --archs=\"x86\"', {silent : true});
var x86Package = shell.ls(x86PackageFolder);
expect(x86Package.filter(function(file) { return file.match(/.*x86\.xap$/); }).length).toBe(1);
});
it('spec.4 should build project for CPUs separated by whitespaces', function(){
shell.exec(buildScriptPath + ' --archs=\"x86 arm anycpu\"', {silent : true});
var anycpuPackage = shell.ls(anycpuPackageFolder);
expect(anycpuPackage.filter(function(file) { return file.match(/.*AnyCPU\.xap$/); }).length).toBe(1);
var x86Package = shell.ls(x86PackageFolder);
expect(x86Package.filter(function(file) { return file.match(/.*x86\.xap$/); }).length).toBe(1);
var armPackage = shell.ls(armPackageFolder);
expect(armPackage.filter(function(file) { return file.match(/.*ARM\.xap$/); }).length).toBe(1);
});
});