Merge pull request #10977 from electron/refactor-native-image-tests

Light refactoring of the nativeImage module tests
This commit is contained in:
Shelley Vohr 2017-11-01 22:00:01 -04:00 committed by GitHub
commit 577012370e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,102 @@ const {nativeImage} = require('electron')
const path = require('path') const path = require('path')
describe('nativeImage module', () => { describe('nativeImage module', () => {
const ImageFormat = {
PNG: 'png',
JPEG: 'jpeg'
}
const images = [
{
filename: 'logo.png',
format: ImageFormat.PNG,
hasAlphaChannel: true,
hasDataUrl: false,
width: 538,
height: 190
},
{
dataUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=',
filename: '1x1.png',
format: ImageFormat.PNG,
hasAlphaChannel: true,
hasDataUrl: true,
height: 1,
width: 1
},
{
dataUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFUlEQVQYlWP8////fwYGBgYmBigAAD34BABBrq9BAAAAAElFTkSuQmCC',
filename: '2x2.jpg',
format: ImageFormat.JPEG,
hasAlphaChannel: false,
hasDataUrl: true,
height: 2,
width: 2
},
{
dataUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADElEQVQYlWNgIAoAAAAnAAGZWEMnAAAAAElFTkSuQmCC',
filename: '3x3.png',
format: ImageFormat.PNG,
hasAlphaChannel: true,
hasDataUrl: true,
height: 3,
width: 3
}
]
/**
* @param {?string} filename
* @returns {?string} Full path.
*/
const getImagePathFromFilename = (filename) => {
return (filename === null) ? null
: path.join(__dirname, 'fixtures', 'assets', filename)
}
/**
* @param {!Object} image
* @param {Object} filters
* @returns {boolean}
*/
const imageMatchesTheFilters = (image, filters = null) => {
if (filters === null) {
return true
}
return Object.entries(filters)
.every(([key, value]) => image[key] === value)
}
/**
* @param {!Object} filters
* @returns {!Array} A matching images list.
*/
const getImages = (filters) => {
const matchingImages = images
.filter(i => imageMatchesTheFilters(i, filters))
// Add `.path` property to every image.
matchingImages
.forEach(i => { i.path = getImagePathFromFilename(i.filename) })
return matchingImages
}
/**
* @param {!Object} filters
* @returns {Object} A matching image if any.
*/
const getImage = (filters) => {
const matchingImages = getImages(filters)
let matchingImage = null
if (matchingImages.length > 0) {
matchingImage = matchingImages[0]
}
return matchingImage
}
describe('createEmpty()', () => { describe('createEmpty()', () => {
it('returns an empty image', () => { it('returns an empty image', () => {
const empty = nativeImage.createEmpty() const empty = nativeImage.createEmpty()
@ -71,69 +167,103 @@ describe('nativeImage module', () => {
}) })
describe('createFromDataURL(dataURL)', () => { describe('createFromDataURL(dataURL)', () => {
it('returns an empty image when the dataURL is empty', () => { it('returns an empty image from the empty string', () => {
assert(nativeImage.createFromDataURL('').isEmpty()) assert(nativeImage.createFromDataURL('').isEmpty())
}) })
it('returns an image created from the given buffer', () => { it('returns an image created from the given string', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')) const imagesData = getImages({hasDataUrl: true})
const imageB = nativeImage.createFromDataURL(imageA.toDataURL()) for (const imageData of imagesData) {
assert.deepEqual(imageB.getSize(), {width: 538, height: 190}) const imageFromPath = nativeImage.createFromPath(imageData.path)
assert(imageA.toBitmap().equals(imageB.toBitmap())) const imageFromDataUrl = nativeImage.createFromDataURL(imageData.dataUrl)
assert(!imageFromDataUrl.isEmpty())
assert.deepEqual(imageFromDataUrl.getSize(), imageFromPath.getSize())
assert(imageFromPath.toBitmap().equals(imageFromDataUrl.toBitmap()))
}
}) })
}) })
describe('toDataURL()', () => { describe('toDataURL()', () => {
it('returns a PNG data URL', () => { it('returns a PNG data URL', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '1x1.png')) const imagesData = getImages({hasDataUrl: true})
assert.equal(imageA.toDataURL(), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=') for (const imageData of imagesData) {
assert.equal(imageA.toDataURL({scaleFactor: 2.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=') const imageFromPath = nativeImage.createFromPath(imageData.path)
assert.equal(imageFromPath.toDataURL(), imageData.dataUrl)
assert.equal(imageFromPath.toDataURL({scaleFactor: 2.0}), imageData.dataUrl)
}
}) })
it('returns a data URL at 1x scale factor by default', () => { it('returns a data URL at 1x scale factor by default', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')) const imageData = getImage({filename: 'logo.png'})
const imageB = nativeImage.createFromBuffer(imageA.toPNG(), { const image = nativeImage.createFromPath(imageData.path)
width: imageA.getSize().width,
height: imageA.getSize().height, const imageOne = nativeImage.createFromBuffer(image.toPNG(), {
width: image.getSize().width,
height: image.getSize().height,
scaleFactor: 2.0 scaleFactor: 2.0
}) })
assert.deepEqual(imageB.getSize(), {width: 269, height: 95}) assert.deepEqual(imageOne.getSize(),
{width: imageData.width / 2, height: imageData.height / 2})
const imageC = nativeImage.createFromDataURL(imageB.toDataURL()) const imageTwo = nativeImage.createFromDataURL(imageOne.toDataURL())
assert.deepEqual(imageC.getSize(), {width: 538, height: 190}) assert.deepEqual(imageTwo.getSize(),
assert(imageB.toBitmap().equals(imageC.toBitmap())) {width: imageData.width, height: imageData.height})
assert(imageOne.toBitmap().equals(imageTwo.toBitmap()))
}) })
it('supports a scale factor', () => { it('supports a scale factor', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')) const imageData = getImage({filename: 'logo.png'})
const imageB = nativeImage.createFromDataURL(imageA.toDataURL({scaleFactor: 1.0})) const image = nativeImage.createFromPath(imageData.path)
assert.deepEqual(imageB.getSize(), {width: 538, height: 190}) const expectedSize = {width: imageData.width, height: imageData.height}
const imageC = nativeImage.createFromDataURL(imageA.toDataURL({scaleFactor: 2.0}))
assert.deepEqual(imageC.getSize(), {width: 538, height: 190}) const imageFromDataUrlOne = nativeImage.createFromDataURL(
image.toDataURL({scaleFactor: 1.0}))
assert.deepEqual(imageFromDataUrlOne.getSize(), expectedSize)
const imageFromDataUrlTwo = nativeImage.createFromDataURL(
image.toDataURL({scaleFactor: 2.0}))
assert.deepEqual(imageFromDataUrlTwo.getSize(), expectedSize)
}) })
}) })
describe('toPNG()', () => { describe('toPNG()', () => {
it('returns a buffer at 1x scale factor by default', () => { it('returns a buffer at 1x scale factor by default', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')) const imageData = getImage({filename: 'logo.png'})
const imageA = nativeImage.createFromPath(imageData.path)
const imageB = nativeImage.createFromBuffer(imageA.toPNG(), { const imageB = nativeImage.createFromBuffer(imageA.toPNG(), {
width: imageA.getSize().width, width: imageA.getSize().width,
height: imageA.getSize().height, height: imageA.getSize().height,
scaleFactor: 2.0 scaleFactor: 2.0
}) })
assert.deepEqual(imageB.getSize(), {width: 269, height: 95}) assert.deepEqual(imageB.getSize(),
{width: imageData.width / 2, height: imageData.height / 2})
const imageC = nativeImage.createFromBuffer(imageB.toPNG()) const imageC = nativeImage.createFromBuffer(imageB.toPNG())
assert.deepEqual(imageC.getSize(), {width: 538, height: 190}) assert.deepEqual(imageC.getSize(),
{width: imageData.width, height: imageData.height})
assert(imageB.toBitmap().equals(imageC.toBitmap())) assert(imageB.toBitmap().equals(imageC.toBitmap()))
}) })
it('supports a scale factor', () => { it('supports a scale factor', () => {
const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')) const imageData = getImage({filename: 'logo.png'})
const imageB = nativeImage.createFromBuffer(imageA.toPNG({scaleFactor: 1.0})) const image = nativeImage.createFromPath(imageData.path)
assert.deepEqual(imageB.getSize(), {width: 538, height: 190})
const imageC = nativeImage.createFromBuffer(imageA.toPNG({scaleFactor: 2.0}), {scaleFactor: 2.0}) const imageFromBufferOne = nativeImage.createFromBuffer(
assert.deepEqual(imageC.getSize(), {width: 269, height: 95}) image.toPNG({scaleFactor: 1.0}))
assert.deepEqual(
imageFromBufferOne.getSize(),
{width: imageData.width, height: imageData.height})
const imageFromBufferTwo = nativeImage.createFromBuffer(
image.toPNG({scaleFactor: 2.0}), {scaleFactor: 2.0})
assert.deepEqual(
imageFromBufferTwo.getSize(),
{width: imageData.width / 2, height: imageData.height / 2})
}) })
}) })
@ -272,27 +402,42 @@ describe('nativeImage module', () => {
}) })
describe('getAspectRatio()', () => { describe('getAspectRatio()', () => {
it('returns the aspect ratio of the image', () => { it('returns an aspect ratio of an empty image', () => {
assert.equal(nativeImage.createEmpty().getAspectRatio(), 1.0) assert.equal(nativeImage.createEmpty().getAspectRatio(), 1.0)
assert.equal(nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')).getAspectRatio(), 2.8315789699554443) })
it('returns an aspect ratio of an image', () => {
const imageData = getImage({filename: 'logo.png'})
// imageData.width / imageData.height = 2.831578947368421
const expectedAspectRatio = 2.8315789699554443
const image = nativeImage.createFromPath(imageData.path)
assert.equal(image.getAspectRatio(), expectedAspectRatio)
}) })
}) })
describe('addRepresentation()', () => { describe('addRepresentation()', () => {
it('supports adding a buffer representation for a scale factor', () => { it('supports adding a buffer representation for a scale factor', () => {
const image = nativeImage.createEmpty() const image = nativeImage.createEmpty()
const imageDataOne = getImage({width: 1, height: 1})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 1.0, scaleFactor: 1.0,
buffer: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '1x1.png')).toPNG() buffer: nativeImage.createFromPath(imageDataOne.path).toPNG()
}) })
const imageDataTwo = getImage({width: 2, height: 2})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 2.0, scaleFactor: 2.0,
buffer: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '2x2.jpg')).toPNG() buffer: nativeImage.createFromPath(imageDataTwo.path).toPNG()
}) })
const imageDataThree = getImage({width: 3, height: 3})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 3.0, scaleFactor: 3.0,
buffer: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '3x3.png')).toPNG() buffer: nativeImage.createFromPath(imageDataThree.path).toPNG()
}) })
image.addRepresentation({ image.addRepresentation({
scaleFactor: 4.0, scaleFactor: 4.0,
buffer: 'invalid' buffer: 'invalid'
@ -300,26 +445,34 @@ describe('nativeImage module', () => {
assert.equal(image.isEmpty(), false) assert.equal(image.isEmpty(), false)
assert.deepEqual(image.getSize(), {width: 1, height: 1}) assert.deepEqual(image.getSize(), {width: 1, height: 1})
assert.equal(image.toDataURL({scaleFactor: 1.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=')
assert.equal(image.toDataURL({scaleFactor: 2.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFUlEQVQYlWP8////fwYGBgYmBigAAD34BABBrq9BAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 1.0}), imageDataOne.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 3.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADElEQVQYlWNgIAoAAAAnAAGZWEMnAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 2.0}), imageDataTwo.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 4.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADElEQVQYlWNgIAoAAAAnAAGZWEMnAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 3.0}), imageDataThree.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 4.0}), imageDataThree.dataUrl)
}) })
it('supports adding a data URL representation for a scale factor', () => { it('supports adding a data URL representation for a scale factor', () => {
const image = nativeImage.createEmpty() const image = nativeImage.createEmpty()
const imageDataOne = getImage({width: 1, height: 1})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 1.0, scaleFactor: 1.0,
dataURL: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '1x1.png')).toDataURL() dataURL: imageDataOne.dataUrl
}) })
const imageDataTwo = getImage({width: 2, height: 2})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 2.0, scaleFactor: 2.0,
dataURL: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '2x2.jpg')).toDataURL() dataURL: imageDataTwo.dataUrl
}) })
const imageDataThree = getImage({width: 3, height: 3})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 3.0, scaleFactor: 3.0,
dataURL: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '3x3.png')).toDataURL() dataURL: imageDataThree.dataUrl
}) })
image.addRepresentation({ image.addRepresentation({
scaleFactor: 4.0, scaleFactor: 4.0,
dataURL: 'invalid' dataURL: 'invalid'
@ -327,25 +480,31 @@ describe('nativeImage module', () => {
assert.equal(image.isEmpty(), false) assert.equal(image.isEmpty(), false)
assert.deepEqual(image.getSize(), {width: 1, height: 1}) assert.deepEqual(image.getSize(), {width: 1, height: 1})
assert.equal(image.toDataURL({scaleFactor: 1.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=')
assert.equal(image.toDataURL({scaleFactor: 2.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFUlEQVQYlWP8////fwYGBgYmBigAAD34BABBrq9BAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 1.0}), imageDataOne.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 3.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADElEQVQYlWNgIAoAAAAnAAGZWEMnAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 2.0}), imageDataTwo.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 4.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAADElEQVQYlWNgIAoAAAAnAAGZWEMnAAAAAElFTkSuQmCC') assert.equal(image.toDataURL({scaleFactor: 3.0}), imageDataThree.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 4.0}), imageDataThree.dataUrl)
}) })
it('supports adding a representation to an existing image', () => { it('supports adding a representation to an existing image', () => {
const image = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '1x1.png')) const imageDataOne = getImage({width: 1, height: 1})
const image = nativeImage.createFromPath(imageDataOne.path)
const imageDataTwo = getImage({width: 2, height: 2})
image.addRepresentation({ image.addRepresentation({
scaleFactor: 2.0, scaleFactor: 2.0,
dataURL: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '2x2.jpg')).toDataURL() dataURL: imageDataTwo.dataUrl
})
image.addRepresentation({
scaleFactor: 2.0,
dataURL: nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', '3x3.png')).toDataURL()
}) })
assert.equal(image.toDataURL({scaleFactor: 1.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYlWNgAAIAAAUAAdafFs0AAAAASUVORK5CYII=') const imageDataThree = getImage({width: 3, height: 3})
assert.equal(image.toDataURL({scaleFactor: 2.0}), 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFUlEQVQYlWP8////fwYGBgYmBigAAD34BABBrq9BAAAAAElFTkSuQmCC') image.addRepresentation({
scaleFactor: 2.0,
dataURL: imageDataThree.dataUrl
})
assert.equal(image.toDataURL({scaleFactor: 1.0}), imageDataOne.dataUrl)
assert.equal(image.toDataURL({scaleFactor: 2.0}), imageDataTwo.dataUrl)
}) })
}) })
}) })