mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
04fb7f8e69
- refactoring the acceptance tests to use async-await removes all the Promise chaining we had, and streamlines the coding styles we have across the code so test files are more alike
76 lines
3.1 KiB
JavaScript
76 lines
3.1 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/shared/config');
|
|
|
|
describe('Images API', function () {
|
|
const images = [];
|
|
let request;
|
|
|
|
before(async function () {
|
|
await testUtils.startGhost();
|
|
request = supertest.agent(config.get('url'));
|
|
await localUtils.doAuth(request);
|
|
});
|
|
|
|
after(function () {
|
|
images.forEach(function (image) {
|
|
fs.removeSync(config.get('paths').appRoot + image);
|
|
});
|
|
});
|
|
|
|
it('Can upload a png', async function () {
|
|
const res = await 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);
|
|
|
|
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'), ''));
|
|
});
|
|
|
|
it('Can upload a jpg', async function () {
|
|
const res = await 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);
|
|
|
|
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'), ''));
|
|
});
|
|
|
|
it('Can upload a gif', async function () {
|
|
const res = await 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);
|
|
|
|
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'), ''));
|
|
});
|
|
|
|
it('Can upload a square profile image', async function () {
|
|
const res = await 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);
|
|
|
|
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'), ''));
|
|
});
|
|
});
|