0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/test/unit/services/permissions/parse-context.test.js
Hannah Wolfe f08a55c21f
Renamed tests to .test.js & updated commands
refs: https://github.com/TryGhost/Team/issues/856
refs: https://github.com/TryGhost/Team/issues/756

- The .test.js extension is better than _spec.js as it's more obvious that it's an extension
- It also meaans we can use the --extension parameter in mocha, which should result in a better default behaviour for `yarn test`
- It also highlights that some of our tests were named incorrectly and were not (and still will not be) run (see https://github.com/TryGhost/Team/issues/856)
- Note: even with this change, `yarn test` is throwing errors, I believe because of this issue https://github.com/TryGhost/Team/issues/756
2021-07-06 20:45:01 +01:00

129 lines
3.9 KiB
JavaScript

const should = require('should');
const parseContext = require('../../../../core/server/services/permissions/parse-context');
describe('Permissions', function () {
describe('parseContext', function () {
it('should return public for no context', function () {
parseContext().should.eql({
internal: false,
external: false,
user: null,
api_key: null,
public: true,
integration: null
});
parseContext({}).should.eql({
internal: false,
external: false,
user: null,
api_key: null,
public: true,
integration: null
});
});
it('should return public for random context', function () {
parseContext('public').should.eql({
internal: false,
external: false,
user: null,
api_key: null,
public: true,
integration: null
});
parseContext({client: 'thing'}).should.eql({
internal: false,
external: false,
user: null,
api_key: null,
public: true,
integration: null
});
});
it('should return user if user populated', function () {
parseContext({user: 1}).should.eql({
internal: false,
external: false,
user: 1,
api_key: null,
public: false,
integration: null
});
});
it('should return api_key and public context if content api_key provided', function () {
parseContext({api_key: {
id: 1,
type: 'content'
}, integration: {id: 2}}).should.eql({
internal: false,
external: false,
user: null,
api_key: {
id: 1,
type: 'content'
},
public: true,
integration: {id: 2}
});
});
it('should return api_key and non public context if admin api_key provided', function () {
parseContext({api_key: {
id: 1,
type: 'admin'
}, integration: {id: 3}}).should.eql({
internal: false,
external: false,
user: null,
api_key: {
id: 1,
type: 'admin'
},
public: false,
integration: {id: 3}
});
});
it('should return internal if internal provided', function () {
parseContext({internal: true}).should.eql({
internal: true,
external: false,
user: null,
api_key: null,
public: false,
integration: null
});
parseContext('internal').should.eql({
internal: true,
external: false,
user: null,
api_key: null,
public: false,
integration: null
});
});
it('should return external if external provided', function () {
parseContext({external: true}).should.eql({
internal: false,
external: true,
user: null,
api_key: null,
public: false,
integration: null
});
parseContext('external').should.eql({
internal: false,
external: true,
user: null,
api_key: null,
public: false,
integration: null
});
});
});
});