blob: 3a4d1a4c7319aa3d2eb6f6acd4cb2fa957ee0f11 [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 cordova = require('../cordova'),
et = require('elementtree'),
shell = require('shelljs'),
path = require('path'),
fs = require('fs'),
config_parser = require('../src/config_parser'),
android_parser = require('../src/metadata/android_parser'),
ios_parser = require('../src/metadata/ios_parser'),
blackberry_parser = require('../src/metadata/blackberry_parser'),
hooker = require('../src/hooker'),
fixtures = path.join(__dirname, 'fixtures'),
hooks = path.join(fixtures, 'hooks'),
tempDir = path.join(__dirname, '..', 'temp'),
cordova_project = path.join(fixtures, 'projects', 'cordova');
var cwd = process.cwd();
describe('emulate command', function() {
beforeEach(function() {
shell.rm('-rf', tempDir);
shell.mkdir('-p', tempDir);
});
it('should not run inside a Cordova-based project with no added platforms', function() {
this.after(function() {
process.chdir(cwd);
});
cordova.create(tempDir);
process.chdir(tempDir);
expect(function() {
cordova.emulate();
}).toThrow();
});
it('should run inside a Cordova-based project with at least one added platform', function() {
shell.mv('-f', path.join(cordova_project, 'platforms', 'blackberry'), path.join(tempDir));
shell.mv('-f', path.join(cordova_project, 'platforms', 'ios'), path.join(tempDir));
this.after(function() {
process.chdir(cwd);
shell.mv('-f', path.join(tempDir, 'blackberry'), path.join(cordova_project, 'platforms', 'blackberry'));
shell.mv('-f', path.join(tempDir, 'ios'), path.join(cordova_project, 'platforms', 'ios'));
});
process.chdir(cordova_project);
var s = spyOn(shell, 'exec');
var a_spy = spyOn(android_parser.prototype, 'update_project');
expect(function() {
cordova.emulate();
a_spy.mostRecentCall.args[1](); // fake out android parser
expect(s).toHaveBeenCalled();
}).not.toThrow();
});
it('should not run outside of a Cordova-based project', function() {
this.after(function() {
process.chdir(cwd);
});
shell.mkdir('-p', tempDir);
process.chdir(tempDir);
expect(function() {
cordova.emulate();
}).toThrow();
});
describe('per platform', function() {
beforeEach(function() {
process.chdir(cordova_project);
});
afterEach(function() {
process.chdir(cwd);
});
describe('Android', function() {
var s;
beforeEach(function() {
s = spyOn(require('shelljs'), 'exec');
});
it('should shell out to run command on Android', function() {
cordova.emulate('android');
expect(s.mostRecentCall.args[0].match(/\/cordova\/run/)).not.toBeNull();
});
it('should call android_parser\'s update_project', function() {
var spy = spyOn(android_parser.prototype, 'update_project');
cordova.emulate('android');
expect(spy).toHaveBeenCalled();
});
});
describe('iOS', function() {
it('should shell out to emulate command on iOS', function() {
var s = spyOn(require('shelljs'), 'exec');
var proj_spy = spyOn(ios_parser.prototype, 'update_project');
cordova.emulate('ios');
proj_spy.mostRecentCall.args[1]();
expect(s).toHaveBeenCalled();
expect(s.mostRecentCall.args[0].match(/\/cordova\/emulate/)).not.toBeNull();
});
it('should call ios_parser\'s update_project', function() {
var s = spyOn(ios_parser.prototype, 'update_project');
cordova.emulate('ios');
expect(s).toHaveBeenCalled();
});
});
describe('BlackBerry', function() {
it('should shell out to ant command on blackberry', function() {
var proj_spy = spyOn(blackberry_parser.prototype, 'update_project');
var s = spyOn(require('shelljs'), 'exec');
cordova.emulate('blackberry');
proj_spy.mostRecentCall.args[1](); // update_project fake
expect(s).toHaveBeenCalled();
expect(s.mostRecentCall.args[0]).toMatch(/ant -f .*build\.xml" qnx load-simulator/);
});
it('should call blackberry_parser\'s update_project', function() {
var s = spyOn(blackberry_parser.prototype, 'update_project');
cordova.emulate('blackberry');
expect(s).toHaveBeenCalled();
});
});
});
describe('hooks', function() {
var s, sh, ap;
beforeEach(function() {
s = spyOn(hooker.prototype, 'fire').andReturn(true);
});
describe('when platforms are added', function() {
beforeEach(function() {
shell.mv('-f', path.join(cordova_project, 'platforms', 'blackberry'), path.join(tempDir));
shell.mv('-f', path.join(cordova_project, 'platforms', 'ios'), path.join(tempDir));
sh = spyOn(shell, 'exec');
ap = spyOn(android_parser.prototype, 'update_project');
process.chdir(cordova_project);
});
afterEach(function() {
shell.mv('-f', path.join(tempDir, 'blackberry'), path.join(cordova_project, 'platforms', 'blackberry'));
shell.mv('-f', path.join(tempDir, 'ios'), path.join(cordova_project, 'platforms', 'ios'));
process.chdir(cwd);
});
it('should fire before hooks through the hooker module', function() {
cordova.emulate();
expect(s).toHaveBeenCalledWith('before_emulate');
});
it('should fire after hooks through the hooker module', function() {
cordova.emulate();
ap.mostRecentCall.args[1](); // fake parser call
sh.mostRecentCall.args[2](0); //fake shell call
expect(s).toHaveBeenCalledWith('after_emulate');
});
});
describe('with no platforms added', function() {
beforeEach(function() {
cordova.create(tempDir);
process.chdir(tempDir);
});
afterEach(function() {
process.chdir(cwd);
});
it('should not fire the hooker', function() {
spyOn(shell, 'exec');
expect(function() {
cordova.emulate();
}).toThrow();
expect(s).not.toHaveBeenCalledWith('before_emulate');
expect(s).not.toHaveBeenCalledWith('after_emulate');
});
});
});
});