You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/test/image.js

39 lines
1003 B
JavaScript

'use strict';
const assert = require('assert');
const path = require('path');
const db = require('./mocks/databasemock');
const image = require('../src/image');
const file = require('../src/file');
describe('image', () => {
it('should normalise image', (done) => {
image.normalise(path.join(__dirname, 'files/normalise.jpg'), '.jpg', (err) => {
assert.ifError(err);
file.exists(path.join(__dirname, 'files/normalise.jpg.png'), (err, exists) => {
assert.ifError(err);
assert(exists);
done();
});
});
});
8 years ago
it('should resize an image', (done) => {
8 years ago
image.resizeImage({
path: path.join(__dirname, 'files/normalise.jpg'),
target: path.join(__dirname, 'files/normalise-resized.jpg'),
width: 50,
height: 40,
}, (err) => {
8 years ago
assert.ifError(err);
image.size(path.join(__dirname, 'files/normalise-resized.jpg'), (err, bitmap) => {
8 years ago
assert.ifError(err);
assert.equal(bitmap.width, 50);
assert.equal(bitmap.height, 40);
done();
});
});
});
});