mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
7f1d3ebc07
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
106 lines
3.8 KiB
JavaScript
106 lines
3.8 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs-extra');
|
|
const should = require('should');
|
|
const supertest = require('supertest');
|
|
const localUtils = require('./utils');
|
|
const testUtils = require('../../utils');
|
|
const config = require('../../../core/server/config');
|
|
|
|
const ghost = testUtils.startGhost;
|
|
|
|
describe('Images API', function () {
|
|
const images = [];
|
|
let request;
|
|
|
|
before(function () {
|
|
return ghost()
|
|
.then(function () {
|
|
request = supertest.agent(config.get('url'));
|
|
})
|
|
.then(function () {
|
|
return localUtils.doAuth(request);
|
|
});
|
|
});
|
|
|
|
after(function () {
|
|
images.forEach(function (image) {
|
|
fs.removeSync(config.get('paths').appRoot + image);
|
|
});
|
|
});
|
|
|
|
it('Can upload a png', function (done) {
|
|
request.post(localUtils.API.getApiQuery('images/upload'))
|
|
.set('Origin', config.get('url'))
|
|
.expect('Content-Type', /json/)
|
|
.field('purpose', 'image')
|
|
.field('ref', 'https://ghost.org/ghost-logo.png')
|
|
.attach('file', path.join(__dirname, '/../../utils/fixtures/images/ghost-logo.png'))
|
|
.expect(201)
|
|
.end(function (err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
res.body.images[0].url.should.match(new RegExp(`${config.get('url')}/content/images/\\d+/\\d+/ghost-logo.png`));
|
|
res.body.images[0].ref.should.equal('https://ghost.org/ghost-logo.png');
|
|
images.push(res.body.images[0].url.replace(config.get('url'), ''));
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('Can upload a jpg', function (done) {
|
|
request.post(localUtils.API.getApiQuery('images/upload'))
|
|
.set('Origin', config.get('url'))
|
|
.expect('Content-Type', /json/)
|
|
.attach('file', path.join(__dirname, '/../../utils/fixtures/images/ghosticon.jpg'))
|
|
.expect(201)
|
|
.end(function (err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
res.body.images[0].url.should.match(new RegExp(`${config.get('url')}/content/images/\\d+/\\d+/ghosticon.jpg`));
|
|
should(res.body.images[0].ref).equal(null);
|
|
|
|
images.push(res.body.images[0].url.replace(config.get('url'), ''));
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('Can upload a gif', function (done) {
|
|
request.post(localUtils.API.getApiQuery('images/upload'))
|
|
.set('Origin', config.get('url'))
|
|
.expect('Content-Type', /json/)
|
|
.attach('file', path.join(__dirname, '/../../utils/fixtures/images/loadingcat.gif'))
|
|
.expect(201)
|
|
.end(function (err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
res.body.images[0].url.should.match(new RegExp(`${config.get('url')}/content/images/\\d+/\\d+/loadingcat.gif`));
|
|
|
|
images.push(res.body.images[0].url.replace(config.get('url'), ''));
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('Can upload a square profile image', function (done) {
|
|
request.post(localUtils.API.getApiQuery('images/upload'))
|
|
.set('Origin', config.get('url'))
|
|
.expect('Content-Type', /json/)
|
|
.attach('file', path.join(__dirname, '/../../utils/fixtures/images/loadingcat_square.gif'))
|
|
.expect(201)
|
|
.end(function (err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
res.body.images[0].url.should.match(new RegExp(`${config.get('url')}/content/images/\\d+/\\d+/loadingcat_square.gif`));
|
|
|
|
images.push(res.body.images[0].url.replace(config.get('url'), ''));
|
|
done();
|
|
});
|
|
});
|
|
});
|