blob: 5492c941829283617de1f18b1341b8ceb18a1343 [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.
*/
const rewire = require('rewire');
const path = require('path');
const rootDir = path.resolve(__dirname, '../../../..');
const run = rewire(path.join(rootDir, 'lib/run'));
describe('Run', () => {
describe('run export method', () => {
it('should run electron with cdv-electron-main.js.', () => {
const execaSpy = jasmine.createSpy('execa');
const onSpy = jasmine.createSpy('on');
const expectedPathToMain = path.join(rootDir, 'bin/templates/www/cdv-electron-main.js');
run.__set__('electron', 'electron-require');
spyOn(process, 'exit');
run.__set__('execa', execaSpy.and.returnValue({
on: onSpy.and.callThrough()
}));
run.run();
expect(execaSpy).toHaveBeenCalledWith('electron-require', [expectedPathToMain]);
expect(onSpy).toHaveBeenCalled();
expect(process.exit).not.toHaveBeenCalled();
// trigger exist as if process was killed
onSpy.calls.argsFor(0)[1]();
expect(process.exit).toHaveBeenCalled();
});
it('should pass arguments to electron', () => {
const execaSpy = jasmine.createSpy('execa');
const onSpy = jasmine.createSpy('on');
const expectedElectronArguments = [
'--inspect-brk=5858',
path.join(rootDir, 'bin/templates/www/cdv-electron-main.js')
];
run.__set__('electron', 'electron-require');
spyOn(process, 'exit');
run.__set__('execa', execaSpy.and.returnValue({
on: onSpy.and.callThrough()
}));
run.run({ argv: ['--inspect-brk=5858'] });
expect(execaSpy).toHaveBeenCalledWith('electron-require', expectedElectronArguments);
expect(onSpy).toHaveBeenCalled();
expect(process.exit).not.toHaveBeenCalled();
// trigger exist as if process was killed
onSpy.calls.argsFor(0)[1]();
expect(process.exit).toHaveBeenCalled();
});
});
describe('help export method', () => {
it('should console out run usage.', () => {
spyOn(console, 'log');
run.help({ binPath: 'foobar' });
expect(console.log.calls.argsFor(0)[0]).toContain('Usage');
expect(console.log.calls.argsFor(0)[0]).toContain('foobar');
expect(console.log.calls.argsFor(0)[0]).toContain('nobuild');
});
});
});