mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 05:14:12 +03:00
30 lines
969 B
JavaScript
30 lines
969 B
JavaScript
|
const should = require('should');
|
||
|
const supertest = require('supertest');
|
||
|
const testUtils = require('../../../../utils');
|
||
|
const localUtils = require('./utils');
|
||
|
const config = require('../../../../../core/shared/config');
|
||
|
|
||
|
describe('Config API (v2)', function () {
|
||
|
let request;
|
||
|
|
||
|
before(async function () {
|
||
|
await testUtils.startGhost();
|
||
|
request = supertest.agent(config.get('url'));
|
||
|
await localUtils.doAuth(request);
|
||
|
});
|
||
|
|
||
|
it('can retrieve config and all expected properties', async function () {
|
||
|
const res = await request
|
||
|
.get(localUtils.API.getApiQuery('site/'))
|
||
|
.set('Origin', config.get('url'))
|
||
|
.expect('Content-Type', /json/)
|
||
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
||
|
.expect(200);
|
||
|
|
||
|
localUtils.API.checkResponse(res.body.site, 'site');
|
||
|
|
||
|
// minor (safe) version
|
||
|
res.body.site.version.should.match(/\d+\.\d+/);
|
||
|
});
|
||
|
});
|