-
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.
Set $PROJECT_NAME properly when installing plugins (#910)
- Loading branch information
Showing
5 changed files
with
82 additions
and
21 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
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
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,63 @@ | ||
/** | ||
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 path = require('path'); | ||
const fs = require('fs-extra'); | ||
const EventEmitter = require('events').EventEmitter; | ||
const ConfigParser = require('cordova-common').ConfigParser; | ||
const PluginInfo = require('cordova-common').PluginInfo; | ||
const Api = require('../../../bin/templates/scripts/cordova/Api'); | ||
|
||
const FIXTURES = path.join(__dirname, 'fixtures'); | ||
const DUMMY_PLUGIN = 'org.test.plugins.dummyplugin'; | ||
|
||
const iosProjectFixture = path.join(FIXTURES, 'ios-config-xml'); | ||
const iosProject = path.join(FIXTURES, 'dummyProj'); | ||
const iosPlatform = path.join(iosProject, 'platforms/ios'); | ||
const dummyPlugin = path.join(FIXTURES, DUMMY_PLUGIN); | ||
|
||
describe('plugin add', () => { | ||
let api; | ||
|
||
beforeEach(() => { | ||
fs.ensureDirSync(iosPlatform); | ||
fs.copySync(iosProjectFixture, iosPlatform); | ||
api = new Api('ios', iosPlatform, new EventEmitter()); | ||
}); | ||
|
||
afterEach(() => { | ||
fs.removeSync(iosPlatform); | ||
}); | ||
|
||
it('should handle plugin preference default values', () => { | ||
return api.addPlugin(new PluginInfo(dummyPlugin)) | ||
.then(() => { | ||
const cfg = new ConfigParser(api.locations.configXml); | ||
expect(cfg.getPreference('PluginPackageName', 'ios')).toEqual('com.example.friendstring'); | ||
}); | ||
}); | ||
|
||
it('should handle plugin preference provided values', () => { | ||
return api.addPlugin(new PluginInfo(dummyPlugin), { variables: { NAME_SPACE: 'com.mycompany.myapp' } }) | ||
.then(() => { | ||
const cfg = new ConfigParser(api.locations.configXml); | ||
expect(cfg.getPreference('PluginNameSpace', 'ios')).toEqual('com.mycompany.myapp'); | ||
}); | ||
}); | ||
}); |