mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-03 13:28:06 +08:00
test: ensure single top-level describe block in test file (#1094)
This makes it easier to map test output to files and allows for common setup & teardown of all tests in a file. * test(prepare): wrap in top-level describe block * test(Api): wrap in top-level describe block
This commit is contained in:
parent
3b56160d38
commit
b1f01d7a65
@ -29,39 +29,41 @@ var PluginInfo = common.PluginInfo;
|
|||||||
var FIXTURES = path.join(__dirname, '../e2e/fixtures');
|
var FIXTURES = path.join(__dirname, '../e2e/fixtures');
|
||||||
var FAKE_PROJECT_DIR = path.join(os.tmpdir(), 'plugin-test-project');
|
var FAKE_PROJECT_DIR = path.join(os.tmpdir(), 'plugin-test-project');
|
||||||
|
|
||||||
describe('addPlugin method', function () {
|
describe('Api', () => {
|
||||||
var api, Api;
|
describe('addPlugin method', function () {
|
||||||
|
var api, Api;
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
Api = rewire('../../bin/templates/cordova/Api');
|
Api = rewire('../../bin/templates/cordova/Api');
|
||||||
|
|
||||||
var pluginManager = jasmine.createSpyObj('pluginManager', ['addPlugin']);
|
var pluginManager = jasmine.createSpyObj('pluginManager', ['addPlugin']);
|
||||||
pluginManager.addPlugin.and.resolveTo();
|
pluginManager.addPlugin.and.resolveTo();
|
||||||
spyOn(common.PluginManager, 'get').and.returnValue(pluginManager);
|
spyOn(common.PluginManager, 'get').and.returnValue(pluginManager);
|
||||||
|
|
||||||
var projectSpy = jasmine.createSpyObj('AndroidProject', ['getPackageName', 'write', 'isClean']);
|
var projectSpy = jasmine.createSpyObj('AndroidProject', ['getPackageName', 'write', 'isClean']);
|
||||||
spyOn(AndroidProject, 'getProjectFile').and.returnValue(projectSpy);
|
spyOn(AndroidProject, 'getProjectFile').and.returnValue(projectSpy);
|
||||||
|
|
||||||
Api.__set__('Api.prototype.clean', async () => {});
|
Api.__set__('Api.prototype.clean', async () => {});
|
||||||
|
|
||||||
// Prevent logging to avoid polluting the test reports
|
// Prevent logging to avoid polluting the test reports
|
||||||
Api.__set__('selfEvents.emit', jasmine.createSpy());
|
Api.__set__('selfEvents.emit', jasmine.createSpy());
|
||||||
|
|
||||||
api = new Api('android', FAKE_PROJECT_DIR);
|
api = new Api('android', FAKE_PROJECT_DIR);
|
||||||
spyOn(api._builder, 'prepBuildFiles');
|
spyOn(api._builder, 'prepBuildFiles');
|
||||||
});
|
|
||||||
|
|
||||||
const getPluginFixture = name => new PluginInfo(path.join(FIXTURES, name));
|
|
||||||
|
|
||||||
it('Test#001 : should call gradleBuilder.prepBuildFiles for every plugin with frameworks', () => {
|
|
||||||
return api.addPlugin(getPluginFixture('cordova-plugin-fake')).then(() => {
|
|
||||||
expect(api._builder.prepBuildFiles).toHaveBeenCalled();
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('Test#002 : shouldn\'t trigger gradleBuilder.prepBuildFiles for plugins without android frameworks', () => {
|
const getPluginFixture = name => new PluginInfo(path.join(FIXTURES, name));
|
||||||
return api.addPlugin(getPluginFixture('cordova-plugin-fake-ios-frameworks')).then(() => {
|
|
||||||
expect(api._builder.prepBuildFiles).not.toHaveBeenCalled();
|
it('Test#001 : should call gradleBuilder.prepBuildFiles for every plugin with frameworks', () => {
|
||||||
|
return api.addPlugin(getPluginFixture('cordova-plugin-fake')).then(() => {
|
||||||
|
expect(api._builder.prepBuildFiles).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Test#002 : shouldn\'t trigger gradleBuilder.prepBuildFiles for plugins without android frameworks', () => {
|
||||||
|
return api.addPlugin(getPluginFixture('cordova-plugin-fake-ios-frameworks')).then(() => {
|
||||||
|
expect(api._builder.prepBuildFiles).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user