-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcloudinaryTests.js
45 lines (42 loc) · 1.9 KB
/
cloudinaryTests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* Created by yaniv on 6/1/17.
*/
'use strict';
const chai = require('chai');
const assert = chai.assert;
const cloudinaryParser = require('../cloudinary/cloudinaryResultParser');
const fs = require('fs');
describe('Cloudinary parser tests', ()=> {
it('Check results keys', () => {
let resultJson = JSON.parse(fs.readFileSync('./test/resources/cloudRes.json'));
let parsedResults = cloudinaryParser.parseCloudinaryResults(resultJson);
assert.isArray(parsedResults.imagesTestResults, "Image test results should be an array");
assert.isObject(parsedResults.resultSumm, "Results sum should be an object");
assert.equal(parsedResults.resultSumm.totalImagesCount, parsedResults.imagesTestResults.length, "Total image count should be equal to image list");
assert.isNumber(parsedResults.resultSumm.totalImagesWeight, "Total image weight should be a number");
assert.isNumber(parsedResults.resultSumm.totalImagesCount, "Total image count should ba a number");
assert.isString(parsedResults.resultSumm.totalPercentChange, "Total percent change should be a string");
});
it('Check percent added to transformed images', () => {
let resultJson = JSON.parse(fs.readFileSync('./test/resources/cloudRes.json'));
let parsedResults = cloudinaryParser.parseCloudinaryResults(resultJson);
for (let res of parsedResults.imagesTestResults) {
if (res.eager) {
assert.isTrue(res.eager.every((trans) => {
return typeof trans.percentChange === 'string'
}));
}
}
});
it('Check added best image transformation', () => {
let resultJson = JSON.parse(fs.readFileSync('./test/resources/cloudRes.json'));
let parsedResults = cloudinaryParser.parseCloudinaryResults(resultJson);
for (let res of parsedResults.imagesTestResults) {
if (res.eager) {
assert.isTrue(res.eager.some((trans) => {
return trans.best
}));
}
}
});
});