Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
List of integration tests and scenarios to be written :
CORDOVA PLATFORM/PLUGIN ADD TESTS :
- Ensure that support for custom .tgz files is still enabled (VS depends on this)
- cordova platform add android --save [empty config.xml]
- cordova platform add android --save [config.xml already contains android@3.6.0]
- cordova platform add android --save [config.xml contains android@file://C:/path/to/android]
- cordova platform add android@3.18.9 --save [invalid version => in this case, install should fail and should not update config.xml]
- cordova platform add C://path/to/android/platform --save
- support for custom branch checkout : cordova platform add https://github.com/apache/cordova-android.git#2.6.x
- cordova plugin add cordova-plugin-console –save [config.xml empty]
- cordova plugin add cordova-plugin-console –save [config.xml already contains cordova-plugin-console@0.2.11]
- cordova plugin add facebook-plugins –variables … –save [testing variables support]
- cordova plugin add git_url
- cordova plugin add local_folder
CORDOVA PLATFORM/PLUGIN REMOVE TESTS :
- cordova platform remove android --save [config.xml is empty]
- cordova platform remove android --save [config.xml contains android@C:/path/to/android/platform]
- cordova plugin remove plugin-id --save [config.xml is empty]
- cordova plugin remove plugin-id --save [config.xml contains git-url of plugin]
CORDOVA PLATFORM/PLUGIN UPDATE TESTS :
- cordova platform update android@3.7.0 --save [config.xml already contains android@3.8.0]
- support for git-urls : cordova platform update https://github.com/apache/cordova-android.git –save
- cordova plugin update cordova-plugin-console --save
- cordova plugin update cordova-plugin-console@0.2.11 --save
MASS-SAVE TESTS :
- cordova platform save [no platforms installed => no update to config.xml]
- cordova platform save [with some platforms installed]
- cordova plugin save [no plugins installed => no update to config.xml]
- cordova plugin save [with some plugins installed: one with version, one with local folder and another one via git cloning]
PLATFORM/PLUGIN RESTORATION :
- cordova prepare => should restore all platforms and plugins
- cordova prepare android