CB-11447 Resolve iOS tests failures due to iOS quirks
* Skip image type verification if source is gallery and destination is native uri * Update docs t oclarify how camera works on iOS in some edge cases
This commit is contained in:
parent
7129fb2c12
commit
2027d69606
16
README.md
16
README.md
@ -126,16 +126,13 @@ one of the following formats, depending on the specified
|
|||||||
`cameraOptions`:
|
`cameraOptions`:
|
||||||
|
|
||||||
- A `String` containing the Base64-encoded photo image.
|
- A `String` containing the Base64-encoded photo image.
|
||||||
|
|
||||||
- A `String` representing the image file location on local storage (default).
|
- A `String` representing the image file location on local storage (default).
|
||||||
|
|
||||||
You can do whatever you want with the encoded image or URI, for
|
You can do whatever you want with the encoded image or URI, for
|
||||||
example:
|
example:
|
||||||
|
|
||||||
- Render the image in an `<img>` tag, as in the example below
|
- Render the image in an `<img>` tag, as in the example below
|
||||||
|
|
||||||
- Save the data locally (`LocalStorage`, [Lawnchair](http://brianleroux.github.com/lawnchair/), etc.)
|
- Save the data locally (`LocalStorage`, [Lawnchair](http://brianleroux.github.com/lawnchair/), etc.)
|
||||||
|
|
||||||
- Post the data to a remote server
|
- Post the data to a remote server
|
||||||
|
|
||||||
__NOTE__: Photo resolution on newer devices is quite good. Photos
|
__NOTE__: Photo resolution on newer devices is quite good. Photos
|
||||||
@ -258,6 +255,12 @@ Optional parameters to customize the camera settings.
|
|||||||
<a name="module_Camera.DestinationType"></a>
|
<a name="module_Camera.DestinationType"></a>
|
||||||
|
|
||||||
### Camera.DestinationType : <code>enum</code>
|
### Camera.DestinationType : <code>enum</code>
|
||||||
|
Defines the output format of `Camera.getPicture` call.
|
||||||
|
_Note:_ On iOS passing `DestinationType.NATIVE_URI` along with
|
||||||
|
`PictureSourceType.PHOTOLIBRARY` or `PictureSourceType.SAVEDPHOTOALBUM` will
|
||||||
|
disable any image modifications (resize, quality change, cropping, etc.) due
|
||||||
|
to implementation specific.
|
||||||
|
|
||||||
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
|
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
|
||||||
**Properties**
|
**Properties**
|
||||||
|
|
||||||
@ -293,6 +296,11 @@ Optional parameters to customize the camera settings.
|
|||||||
<a name="module_Camera.PictureSourceType"></a>
|
<a name="module_Camera.PictureSourceType"></a>
|
||||||
|
|
||||||
### Camera.PictureSourceType : <code>enum</code>
|
### Camera.PictureSourceType : <code>enum</code>
|
||||||
|
Defines the output format of `Camera.getPicture` call.
|
||||||
|
_Note:_ On iOS passing `PictureSourceType.PHOTOLIBRARY` or `PictureSourceType.SAVEDPHOTOALBUM`
|
||||||
|
along with `DestinationType.NATIVE_URI` will disable any image modifications (resize, quality
|
||||||
|
change, cropping, etc.) due to implementation specific.
|
||||||
|
|
||||||
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
|
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
|
||||||
**Properties**
|
**Properties**
|
||||||
|
|
||||||
@ -531,6 +539,8 @@ Tizen only supports a `destinationType` of
|
|||||||
|
|
||||||
- When using `destinationType.NATIVE_URI` and `sourceType.CAMERA`, photos are saved in the saved photo album regardless on the value of `saveToPhotoAlbum` parameter.
|
- When using `destinationType.NATIVE_URI` and `sourceType.CAMERA`, photos are saved in the saved photo album regardless on the value of `saveToPhotoAlbum` parameter.
|
||||||
|
|
||||||
|
- When using `destinationType.NATIVE_URI` and `sourceType.PHOTOLIBRARY` or `sourceType.SAVEDPHOTOALBUM`, all editing options are ignored and link is returned to original picture.
|
||||||
|
|
||||||
#### Tizen Quirks
|
#### Tizen Quirks
|
||||||
|
|
||||||
- options not supported
|
- options not supported
|
||||||
|
@ -119,10 +119,19 @@ module.exports.checkPicture = function (pid, options, cb) {
|
|||||||
var isAndroid = cordova.platformId === "android";
|
var isAndroid = cordova.platformId === "android";
|
||||||
// skip image type check if it's unmodified on Android:
|
// skip image type check if it's unmodified on Android:
|
||||||
// https://github.com/apache/cordova-plugin-camera/#android-quirks-1
|
// https://github.com/apache/cordova-plugin-camera/#android-quirks-1
|
||||||
var skipFileTypeCheck = isAndroid &&
|
var skipFileTypeCheckAndroid = isAndroid && options.quality === 100 &&
|
||||||
options.quality === 100 &&
|
|
||||||
!options.targetWidth && !options.targetHeight &&
|
!options.targetWidth && !options.targetHeight &&
|
||||||
!options.correctOrientation;
|
!options.correctOrientation;
|
||||||
|
|
||||||
|
// Skip image type check if destination is NATIVE_URI and source - device's photoalbum
|
||||||
|
// https://github.com/apache/cordova-plugin-camera/#ios-quirks-1
|
||||||
|
// TODO: correct link above
|
||||||
|
var skipFileTypeCheckiOS = isIos && options.destinationType === Camera.DestinationType.NATIVE_URI &&
|
||||||
|
(options.sourceType === Camera.PictureSourceType.PHOTOLIBRARY ||
|
||||||
|
options.sourceType === Camera.PictureSourceType.SAVEDPHOTOALBUM);
|
||||||
|
|
||||||
|
var skipFileTypeCheck = skipFileTypeCheckAndroid || skipFileTypeCheckiOS;
|
||||||
|
|
||||||
var desiredType = 'JPEG';
|
var desiredType = 'JPEG';
|
||||||
var mimeType = 'image/jpeg';
|
var mimeType = 'image/jpeg';
|
||||||
if (options.encodingType === Camera.EncodingType.PNG) {
|
if (options.encodingType === Camera.EncodingType.PNG) {
|
||||||
|
@ -286,7 +286,7 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.6 Verifying target image size, sourceType=CAMERA, destinationType=NATIVE_URI', function (done) {
|
it('camera.ui.spec.6 Verifying target image size, sourceType=CAMERA, destinationType=FILE_URL', function (done) {
|
||||||
// remove this line if you don't mind the tests leaving a photo saved on device
|
// remove this line if you don't mind the tests leaving a photo saved on device
|
||||||
pending('Cannot prevent iOS from saving the picture to photo library');
|
pending('Cannot prevent iOS from saving the picture to photo library');
|
||||||
|
|
||||||
@ -298,7 +298,7 @@ describe('Camera tests iOS.', function () {
|
|||||||
quality: 50,
|
quality: 50,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.CAMERA,
|
sourceType: cameraConstants.PictureSourceType.CAMERA,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 210,
|
targetWidth: 210,
|
||||||
targetHeight: 210
|
targetHeight: 210
|
||||||
@ -307,13 +307,13 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.7 Verifying target image size, sourceType=SAVEDPHOTOALBUM, destinationType=NATIVE_URI', function (done) {
|
it('camera.ui.spec.7 Verifying target image size, sourceType=SAVEDPHOTOALBUM, destinationType=FILE_URL', function (done) {
|
||||||
checkSession(done);
|
checkSession(done);
|
||||||
var options = {
|
var options = {
|
||||||
quality: 50,
|
quality: 50,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.SAVEDPHOTOALBUM,
|
sourceType: cameraConstants.PictureSourceType.SAVEDPHOTOALBUM,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 210,
|
targetWidth: 210,
|
||||||
targetHeight: 210
|
targetHeight: 210
|
||||||
@ -322,13 +322,13 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.8 Verifying target image size, sourceType=PHOTOLIBRARY, destinationType=NATIVE_URI', function (done) {
|
it('camera.ui.spec.8 Verifying target image size, sourceType=PHOTOLIBRARY, destinationType=FILE_URL', function (done) {
|
||||||
checkSession(done);
|
checkSession(done);
|
||||||
var options = {
|
var options = {
|
||||||
quality: 50,
|
quality: 50,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.PHOTOLIBRARY,
|
sourceType: cameraConstants.PictureSourceType.PHOTOLIBRARY,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 210,
|
targetWidth: 210,
|
||||||
targetHeight: 210
|
targetHeight: 210
|
||||||
@ -337,7 +337,7 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.9 Verifying target image size, sourceType=CAMERA, destinationType=NATIVE_URI, quality=100', function (done) {
|
it('camera.ui.spec.9 Verifying target image size, sourceType=CAMERA, destinationType=FILE_URL, quality=100', function (done) {
|
||||||
// remove this line if you don't mind the tests leaving a photo saved on device
|
// remove this line if you don't mind the tests leaving a photo saved on device
|
||||||
pending('Cannot prevent iOS from saving the picture to photo library');
|
pending('Cannot prevent iOS from saving the picture to photo library');
|
||||||
|
|
||||||
@ -349,7 +349,7 @@ describe('Camera tests iOS.', function () {
|
|||||||
quality: 100,
|
quality: 100,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.CAMERA,
|
sourceType: cameraConstants.PictureSourceType.CAMERA,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 305,
|
targetWidth: 305,
|
||||||
targetHeight: 305
|
targetHeight: 305
|
||||||
@ -357,13 +357,13 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.10 Verifying target image size, sourceType=SAVEDPHOTOALBUM, destinationType=NATIVE_URI, quality=100', function (done) {
|
it('camera.ui.spec.10 Verifying target image size, sourceType=SAVEDPHOTOALBUM, destinationType=FILE_URL, quality=100', function (done) {
|
||||||
checkSession(done);
|
checkSession(done);
|
||||||
var options = {
|
var options = {
|
||||||
quality: 100,
|
quality: 100,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.SAVEDPHOTOALBUM,
|
sourceType: cameraConstants.PictureSourceType.SAVEDPHOTOALBUM,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 305,
|
targetWidth: 305,
|
||||||
targetHeight: 305
|
targetHeight: 305
|
||||||
@ -372,13 +372,13 @@ describe('Camera tests iOS.', function () {
|
|||||||
runSpec(options).done(done);
|
runSpec(options).done(done);
|
||||||
}, 3 * MINUTE);
|
}, 3 * MINUTE);
|
||||||
|
|
||||||
it('camera.ui.spec.11 Verifying target image size, sourceType=PHOTOLIBRARY, destinationType=NATIVE_URI, quality=100', function (done) {
|
it('camera.ui.spec.11 Verifying target image size, sourceType=PHOTOLIBRARY, destinationType=FILE_URL, quality=100', function (done) {
|
||||||
checkSession(done);
|
checkSession(done);
|
||||||
var options = {
|
var options = {
|
||||||
quality: 100,
|
quality: 100,
|
||||||
allowEdit: false,
|
allowEdit: false,
|
||||||
sourceType: cameraConstants.PictureSourceType.PHOTOLIBRARY,
|
sourceType: cameraConstants.PictureSourceType.PHOTOLIBRARY,
|
||||||
destinationType: cameraConstants.DestinationType.NATIVE_URI,
|
destinationType: cameraConstants.DestinationType.FILE_URL,
|
||||||
saveToPhotoAlbum: false,
|
saveToPhotoAlbum: false,
|
||||||
targetWidth: 305,
|
targetWidth: 305,
|
||||||
targetHeight: 305
|
targetHeight: 305
|
||||||
|
@ -187,6 +187,8 @@ Tizen only supports a `destinationType` of
|
|||||||
|
|
||||||
- When using `destinationType.NATIVE_URI` and `sourceType.CAMERA`, photos are saved in the saved photo album regardless on the value of `saveToPhotoAlbum` parameter.
|
- When using `destinationType.NATIVE_URI` and `sourceType.CAMERA`, photos are saved in the saved photo album regardless on the value of `saveToPhotoAlbum` parameter.
|
||||||
|
|
||||||
|
- When using `destinationType.NATIVE_URI` and `sourceType.PHOTOLIBRARY` or `sourceType.SAVEDPHOTOALBUM`, all editing options are ignored and link is returned to original picture.
|
||||||
|
|
||||||
#### Tizen Quirks
|
#### Tizen Quirks
|
||||||
|
|
||||||
- options not supported
|
- options not supported
|
||||||
|
@ -99,16 +99,13 @@ for (var key in Camera) {
|
|||||||
* `cameraOptions`:
|
* `cameraOptions`:
|
||||||
*
|
*
|
||||||
* - A `String` containing the Base64-encoded photo image.
|
* - A `String` containing the Base64-encoded photo image.
|
||||||
*
|
|
||||||
* - A `String` representing the image file location on local storage (default).
|
* - A `String` representing the image file location on local storage (default).
|
||||||
*
|
*
|
||||||
* You can do whatever you want with the encoded image or URI, for
|
* You can do whatever you want with the encoded image or URI, for
|
||||||
* example:
|
* example:
|
||||||
*
|
*
|
||||||
* - Render the image in an `<img>` tag, as in the example below
|
* - Render the image in an `<img>` tag, as in the example below
|
||||||
*
|
|
||||||
* - Save the data locally (`LocalStorage`, [Lawnchair](http://brianleroux.github.com/lawnchair/), etc.)
|
* - Save the data locally (`LocalStorage`, [Lawnchair](http://brianleroux.github.com/lawnchair/), etc.)
|
||||||
*
|
|
||||||
* - Post the data to a remote server
|
* - Post the data to a remote server
|
||||||
*
|
*
|
||||||
* __NOTE__: Photo resolution on newer devices is quite good. Photos
|
* __NOTE__: Photo resolution on newer devices is quite good. Photos
|
||||||
|
@ -24,6 +24,13 @@
|
|||||||
*/
|
*/
|
||||||
module.exports = {
|
module.exports = {
|
||||||
/**
|
/**
|
||||||
|
* @description
|
||||||
|
* Defines the output format of `Camera.getPicture` call.
|
||||||
|
* _Note:_ On iOS passing `DestinationType.NATIVE_URI` along with
|
||||||
|
* `PictureSourceType.PHOTOLIBRARY` or `PictureSourceType.SAVEDPHOTOALBUM` will
|
||||||
|
* disable any image modifications (resize, quality change, cropping, etc.) due
|
||||||
|
* to implementation specific.
|
||||||
|
*
|
||||||
* @enum {number}
|
* @enum {number}
|
||||||
*/
|
*/
|
||||||
DestinationType:{
|
DestinationType:{
|
||||||
@ -55,6 +62,12 @@ module.exports = {
|
|||||||
ALLMEDIA : 2
|
ALLMEDIA : 2
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
* @description
|
||||||
|
* Defines the output format of `Camera.getPicture` call.
|
||||||
|
* _Note:_ On iOS passing `PictureSourceType.PHOTOLIBRARY` or `PictureSourceType.SAVEDPHOTOALBUM`
|
||||||
|
* along with `DestinationType.NATIVE_URI` will disable any image modifications (resize, quality
|
||||||
|
* change, cropping, etc.) due to implementation specific.
|
||||||
|
*
|
||||||
* @enum {number}
|
* @enum {number}
|
||||||
*/
|
*/
|
||||||
PictureSourceType:{
|
PictureSourceType:{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user