-
Notifications
You must be signed in to change notification settings - Fork 986
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase build, check req, and versions code coverage
- Loading branch information
Showing
3 changed files
with
374 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/** | ||
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 rewire = require('rewire'); | ||
var checkReqs = rewire('../../../../bin/templates/scripts/cordova/lib/check_reqs'); | ||
|
||
describe('check_reqs', function () { | ||
describe('checkTool method', () => { | ||
const originalVersion = checkReqs.__get__('versions'); | ||
let shellWhichSpy; | ||
let rejectSpy; | ||
let resolveSpy; | ||
let getToolVersionSpy; | ||
|
||
beforeEach(() => { | ||
// Shell Spy | ||
shellWhichSpy = jasmine.createSpy('shellWhichSpy'); | ||
checkReqs.__set__('shell', { | ||
which: shellWhichSpy | ||
}); | ||
|
||
// Q Spy | ||
rejectSpy = jasmine.createSpy('rejectSpy'); | ||
resolveSpy = jasmine.createSpy('resolveSpy'); | ||
checkReqs.__set__('Q', { | ||
reject: rejectSpy, | ||
resolve: resolveSpy | ||
}); | ||
|
||
// Versions Spy | ||
getToolVersionSpy = jasmine.createSpy('rejectSpy'); | ||
}); | ||
|
||
it('should not have found tool.', () => { | ||
shellWhichSpy.and.returnValue(false); | ||
const checkTool = checkReqs.__get__('checkTool'); | ||
|
||
checkTool('node', '1.0.0'); | ||
|
||
expect(rejectSpy).toHaveBeenCalledWith(jasmine.stringMatching(/^node was not found./)); | ||
}); | ||
|
||
it('should throw error because version is not following semver-notated.', (done) => { | ||
shellWhichSpy.and.returnValue('/bin/node'); | ||
const checkTool = checkReqs.__get__('checkTool'); | ||
|
||
checkReqs.__set__('versions', { | ||
get_tool_version: getToolVersionSpy.and.returnValue(new Promise((resolve) => { | ||
return resolve('1.0.0'); | ||
}).catch((error) => { console.log(error); })), | ||
compareVersions: originalVersion.compareVersions | ||
}); | ||
|
||
checkTool('node', 'v1.0.0').catch((error) => { | ||
expect(error).toEqual('Version should contain only numbers and dots'); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should resolve passing back tool version.', (done) => { | ||
shellWhichSpy.and.returnValue('/bin/node'); | ||
const checkTool = checkReqs.__get__('checkTool'); | ||
|
||
checkReqs.__set__('versions', { | ||
get_tool_version: getToolVersionSpy.and.returnValue(new Promise((resolve) => { | ||
return resolve('1.0.0'); | ||
})), | ||
compareVersions: originalVersion.compareVersions | ||
}); | ||
|
||
checkTool('node', '1.0.0').then(() => { | ||
let actual = resolveSpy.calls.argsFor(0)[0]; | ||
expect(actual).toEqual({version: '1.0.0'}); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should reject because tool does not meet minimum requirement.', (done) => { | ||
shellWhichSpy.and.returnValue('/bin/node'); | ||
const checkTool = checkReqs.__get__('checkTool'); | ||
|
||
checkReqs.__set__('versions', { | ||
get_tool_version: getToolVersionSpy.and.returnValue(new Promise((resolve) => { | ||
return resolve('1.0.0'); | ||
})), | ||
compareVersions: originalVersion.compareVersions | ||
}); | ||
|
||
checkTool('node', '1.0.1').then(() => { | ||
let actual = rejectSpy.calls.argsFor(0)[0]; | ||
expect(actual).toContain('version 1.0.1 or greater'); | ||
expect(actual).toContain('you have version 1.0.0'); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/** | ||
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 rewire = require('rewire'); | ||
var versions = rewire('../../../bin/templates/scripts/cordova/lib/versions'); | ||
|
||
// These tests can not run on windows. | ||
if (process.platform === 'darwin') { | ||
describe('versions', function () { | ||
describe('get_apple_ios_version method', () => { | ||
it('should have found ios version.', (done) => { | ||
let _console = versions.__get__('console'); | ||
let logSpy = jasmine.createSpy('logSpy'); | ||
versions.__set__('console', {log: logSpy}); | ||
|
||
versions.get_apple_ios_version().then(() => { | ||
expect(logSpy).not.toHaveBeenCalledWith(undefined); | ||
versions.__set__('console', _console); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('get_apple_osx_version method', () => { | ||
it('should have found osx version.', (done) => { | ||
let _console = versions.__get__('console'); | ||
let logSpy = jasmine.createSpy('logSpy'); | ||
versions.__set__('console', {log: logSpy}); | ||
|
||
versions.get_apple_osx_version().then(() => { | ||
expect(logSpy).not.toHaveBeenCalledWith(undefined); | ||
versions.__set__('console', _console); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('get_tool_version method', () => { | ||
it('should not have found tool by name.', (done) => { | ||
versions.get_tool_version('unknown').catch((error) => { | ||
expect(error).toContain('is not valid tool name'); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find xcodebuild version.', (done) => { | ||
versions.get_tool_version('xcodebuild').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find ios-sim version.', (done) => { | ||
versions.get_tool_version('ios-sim').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find ios-deploy version.', (done) => { | ||
versions.get_tool_version('ios-deploy').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find pod version.', (done) => { | ||
versions.get_tool_version('pod').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} |