mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
|
import {
|
||
|
describeModule,
|
||
|
it
|
||
|
} from 'ember-mocha';
|
||
|
import {
|
||
|
ghUserCanAdmin
|
||
|
} from 'ghost/helpers/gh-user-can-admin';
|
||
|
|
||
|
describe ('GhUserCanAdminHelper', function () {
|
||
|
// Mock up roles and test for truthy
|
||
|
describe ('Owner role', function () {
|
||
|
var user = {get: function (role) {
|
||
|
if (role === 'isOwner') {
|
||
|
return true;
|
||
|
} else if (role === 'isAdmin') {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
it(' - can be Admin', function () {
|
||
|
var result = ghUserCanAdmin([user]);
|
||
|
expect(result).to.equal(true);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe ('Administrator role', function () {
|
||
|
var user = {
|
||
|
get: function (role) {
|
||
|
if (role === 'isOwner') {
|
||
|
return false;
|
||
|
} else if (role === 'isAdmin') {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
it(' - can be Admin', function () {
|
||
|
var result = ghUserCanAdmin([user]);
|
||
|
expect(result).to.equal(true);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe ('Editor and Author roles', function () {
|
||
|
var user = {
|
||
|
get: function (role) {
|
||
|
if (role === 'isOwner') {
|
||
|
return false;
|
||
|
} else if (role === 'isAdmin') {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
it(' - cannot be Admin', function () {
|
||
|
var result = ghUserCanAdmin([user]);
|
||
|
expect(result).to.equal(false);
|
||
|
});
|
||
|
});
|
||
|
});
|