2016-02-17 21:37:58 +08:00
|
|
|
/**
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* jshint node:true */
|
|
|
|
|
|
|
|
var Q = require('q');
|
|
|
|
var os = require('os');
|
|
|
|
var path = require('path');
|
|
|
|
var common = require('cordova-common');
|
2016-10-07 20:12:25 +08:00
|
|
|
var rewire = require('rewire');
|
2016-02-17 21:37:58 +08:00
|
|
|
|
|
|
|
var AndroidProject = require('../../bin/templates/cordova/lib/AndroidProject');
|
|
|
|
var builders = require('../../bin/templates/cordova/lib/builders/builders');
|
|
|
|
|
|
|
|
var PluginInfo = common.PluginInfo;
|
|
|
|
|
|
|
|
var FIXTURES = path.join(__dirname, '../e2e/fixtures');
|
|
|
|
var FAKE_PROJECT_DIR = path.join(os.tmpdir(), 'plugin-test-project');
|
|
|
|
|
|
|
|
describe('addPlugin method', function () {
|
2016-10-07 20:12:25 +08:00
|
|
|
var api, fail, gradleBuilder, oldClean;
|
|
|
|
var Api = rewire('../../bin/templates/cordova/Api');
|
2016-02-17 21:37:58 +08:00
|
|
|
|
|
|
|
beforeEach(function() {
|
2016-04-22 21:03:02 +08:00
|
|
|
var pluginManager = jasmine.createSpyObj('pluginManager', ['addPlugin']);
|
|
|
|
pluginManager.addPlugin.andReturn(Q());
|
|
|
|
spyOn(common.PluginManager, 'get').andReturn(pluginManager);
|
2016-02-17 21:37:58 +08:00
|
|
|
|
2016-04-22 21:03:02 +08:00
|
|
|
var projectSpy = jasmine.createSpyObj('AndroidProject', ['getPackageName', 'write']);
|
|
|
|
spyOn(AndroidProject, 'getProjectFile').andReturn(projectSpy);
|
2016-02-17 21:37:58 +08:00
|
|
|
|
2016-10-07 20:12:25 +08:00
|
|
|
oldClean = Api.__get__('Api.prototype.clean');
|
|
|
|
Api.__set__('Api.prototype.clean', Q);
|
2016-02-17 21:37:58 +08:00
|
|
|
api = new Api('android', FAKE_PROJECT_DIR);
|
|
|
|
|
|
|
|
fail = jasmine.createSpy('fail');
|
|
|
|
gradleBuilder = jasmine.createSpyObj('gradleBuilder', ['prepBuildFiles']);
|
|
|
|
spyOn(builders, 'getBuilder').andReturn(gradleBuilder);
|
|
|
|
});
|
|
|
|
|
2016-10-07 20:12:25 +08:00
|
|
|
afterEach(function () {
|
|
|
|
Api.__set__('Api.prototype.clean', oldClean);
|
|
|
|
});
|
|
|
|
|
2016-02-17 21:37:58 +08:00
|
|
|
it('should call gradleBuilder.prepBuildFiles for every plugin with frameworks', function(done) {
|
|
|
|
api.addPlugin(new PluginInfo(path.join(FIXTURES, 'cordova-plugin-fake')))
|
|
|
|
.catch(fail)
|
|
|
|
.fin(function () {
|
|
|
|
expect(fail).not.toHaveBeenCalled();
|
|
|
|
expect(gradleBuilder.prepBuildFiles).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shouldn\'t trigger gradleBuilder.prepBuildFiles for plugins without android frameworks', function(done) {
|
|
|
|
api.addPlugin(new PluginInfo(path.join(FIXTURES, 'cordova-plugin-fake-ios-frameworks')))
|
|
|
|
.catch(fail)
|
|
|
|
.fin(function () {
|
|
|
|
expect(fail).not.toHaveBeenCalled();
|
|
|
|
expect(gradleBuilder.prepBuildFiles).not.toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|