diff --git a/core/test/acceptance/old/content/key_authentication_spec.js b/core/test/acceptance/old/content/key_authentication_spec.js new file mode 100644 index 0000000000..636ee55bb9 --- /dev/null +++ b/core/test/acceptance/old/content/key_authentication_spec.js @@ -0,0 +1,38 @@ +const should = require('should'); +const supertest = require('supertest'); +const _ = require('lodash'); +const testUtils = require('../../../utils'); +const localUtils = require('./utils'); +const config = require('../../../../server/config'); + +const ghost = testUtils.startGhost; + +describe('Content API V2 key authentication', function () { + let request; + + before(function () { + return ghost() + .then(function (_ghostServer) { + request = supertest.agent(config.get('url')); + }) + .then(function () { + return testUtils.initFixtures('api_keys'); + }); + }); + + it('forbid access without key', function () { + return request.get(localUtils.API.getApiQuery('posts/')) + .expect('Content-Type', /json/) + .expect('Cache-Control', testUtils.cacheRules.private) + .expect(403); + }); + + it('browse with valid key', function () { + const key = localUtils.getValidKey(); + + return request.get(localUtils.API.getApiQuery(`posts/?key=${key}`)) + .expect('Content-Type', /json/) + .expect('Cache-Control', testUtils.cacheRules.private) + .expect(200); + }); +});