loopback/test/role.test.js

411 lines
14 KiB
JavaScript
Raw Normal View History

2013-11-10 06:22:16 +00:00
var assert = require('assert');
var sinon = require('sinon');
2013-11-10 06:22:16 +00:00
var loopback = require('../index');
var Role = loopback.Role;
var RoleMapping = loopback.RoleMapping;
2013-11-10 06:22:16 +00:00
var User = loopback.User;
var Application = loopback.Application;
var ACL = loopback.ACL;
var async = require('async');
var expect = require('chai').expect;
2013-11-10 06:22:16 +00:00
2013-11-12 18:10:32 +00:00
function checkResult(err, result) {
// console.log(err, result);
assert(!err);
}
2014-11-21 02:35:36 +00:00
describe('role model', function() {
var ds;
beforeEach(function() {
ds = loopback.createDataSource({connector: 'memory'});
// Re-attach the models so that they can have isolated store to avoid
// pollutions from other tests
ACL.attachTo(ds);
User.attachTo(ds);
Role.attachTo(ds);
RoleMapping.attachTo(ds);
Application.attachTo(ds);
ACL.roleModel = Role;
ACL.roleMappingModel = RoleMapping;
ACL.userModel = User;
ACL.applicationModel = Application;
Role.roleMappingModel = RoleMapping;
Role.userModel = User;
Role.applicationModel = Application;
});
2013-11-12 18:10:32 +00:00
2014-11-21 02:35:36 +00:00
it('should define role/role relations', function() {
Role.create({name: 'user'}, function(err, userRole) {
Role.create({name: 'admin'}, function(err, adminRole) {
userRole.principals.create({principalType: RoleMapping.ROLE, principalId: adminRole.id}, function(err, mapping) {
Role.find(function(err, roles) {
2013-11-12 18:10:32 +00:00
assert.equal(roles.length, 2);
});
2014-11-21 02:35:36 +00:00
RoleMapping.find(function(err, mappings) {
2013-11-12 18:10:32 +00:00
assert.equal(mappings.length, 1);
assert.equal(mappings[0].principalType, RoleMapping.ROLE);
assert.equal(mappings[0].principalId, adminRole.id);
});
2014-11-21 02:35:36 +00:00
userRole.principals(function(err, principals) {
2013-11-12 18:10:32 +00:00
assert.equal(principals.length, 1);
});
2014-11-21 02:35:36 +00:00
userRole.roles(function(err, roles) {
2013-11-12 18:10:32 +00:00
assert.equal(roles.length, 1);
2013-11-12 06:16:51 +00:00
});
2013-11-10 06:22:16 +00:00
});
});
});
2013-11-12 18:10:32 +00:00
});
2014-11-21 02:35:36 +00:00
it('should define role/user relations', function() {
2014-11-21 02:35:36 +00:00
User.create({name: 'Raymond', email: 'x@y.com', password: 'foobar'}, function(err, user) {
2013-11-12 18:10:32 +00:00
// console.log('User: ', user.id);
2014-11-21 02:35:36 +00:00
Role.create({name: 'userRole'}, function(err, role) {
role.principals.create({principalType: RoleMapping.USER, principalId: user.id}, function(err, p) {
Role.find(function(err, roles) {
2013-11-12 18:10:32 +00:00
assert(!err);
assert.equal(roles.length, 1);
assert.equal(roles[0].name, 'userRole');
});
2014-11-21 02:35:36 +00:00
role.principals(function(err, principals) {
2013-11-12 18:10:32 +00:00
assert(!err);
// console.log(principals);
assert.equal(principals.length, 1);
assert.equal(principals[0].principalType, RoleMapping.USER);
assert.equal(principals[0].principalId, user.id);
});
2014-11-21 02:35:36 +00:00
role.users(function(err, users) {
2013-11-12 18:10:32 +00:00
assert(!err);
assert.equal(users.length, 1);
assert.equal(users[0].id, user.id);
2013-11-12 06:16:51 +00:00
});
2013-11-10 06:22:16 +00:00
});
});
2014-06-10 23:39:32 +00:00
});
});
2014-11-21 02:35:36 +00:00
it('should automatically generate role id', function() {
2014-06-10 23:39:32 +00:00
2014-11-21 02:35:36 +00:00
User.create({name: 'Raymond', email: 'x@y.com', password: 'foobar'}, function(err, user) {
2014-06-10 23:39:32 +00:00
// console.log('User: ', user.id);
2014-11-21 02:35:36 +00:00
Role.create({name: 'userRole'}, function(err, role) {
2014-06-10 23:39:32 +00:00
assert(role.id);
2014-11-21 02:35:36 +00:00
role.principals.create({principalType: RoleMapping.USER, principalId: user.id}, function(err, p) {
2014-06-10 23:39:32 +00:00
assert(p.id);
assert.equal(p.roleId, role.id);
2014-11-21 02:35:36 +00:00
Role.find(function(err, roles) {
2014-06-10 23:39:32 +00:00
assert(!err);
assert.equal(roles.length, 1);
assert.equal(roles[0].name, 'userRole');
});
2014-11-21 02:35:36 +00:00
role.principals(function(err, principals) {
2014-06-10 23:39:32 +00:00
assert(!err);
// console.log(principals);
assert.equal(principals.length, 1);
assert.equal(principals[0].principalType, RoleMapping.USER);
assert.equal(principals[0].principalId, user.id);
});
2014-11-21 02:35:36 +00:00
role.users(function(err, users) {
2014-06-10 23:39:32 +00:00
assert(!err);
assert.equal(users.length, 1);
assert.equal(users[0].id, user.id);
2014-06-10 23:39:32 +00:00
});
});
});
2013-11-10 06:22:16 +00:00
});
2013-11-12 06:16:51 +00:00
2013-11-10 06:22:16 +00:00
});
2013-11-12 18:10:32 +00:00
2014-11-21 02:35:36 +00:00
it('should support getRoles() and isInRole()', function() {
User.create({name: 'Raymond', email: 'x@y.com', password: 'foobar'}, function(err, user) {
2013-11-12 18:47:59 +00:00
// console.log('User: ', user.id);
2014-11-21 02:35:36 +00:00
Role.create({name: 'userRole'}, function(err, role) {
role.principals.create({principalType: RoleMapping.USER, principalId: user.id}, function(err, p) {
2013-11-12 18:47:59 +00:00
// Role.find(console.log);
// role.principals(console.log);
2014-11-21 02:35:36 +00:00
Role.isInRole('userRole', {principalType: RoleMapping.USER, principalId: user.id}, function(err, exists) {
2013-11-12 18:47:59 +00:00
assert(!err && exists === true);
});
2014-11-21 02:35:36 +00:00
Role.isInRole('userRole', {principalType: RoleMapping.APP, principalId: user.id}, function(err, exists) {
2013-11-12 18:47:59 +00:00
assert(!err && exists === false);
});
2014-11-21 02:35:36 +00:00
Role.isInRole('userRole', {principalType: RoleMapping.USER, principalId: 100}, function(err, exists) {
2013-11-12 18:47:59 +00:00
assert(!err && exists === false);
});
2014-11-21 02:35:36 +00:00
Role.getRoles({principalType: RoleMapping.USER, principalId: user.id}, function(err, roles) {
assert.equal(roles.length, 3); // everyone, authenticated, userRole
2014-11-21 02:35:36 +00:00
assert(roles.indexOf(role.id) >= 0);
assert(roles.indexOf(Role.EVERYONE) >= 0);
assert(roles.indexOf(Role.AUTHENTICATED) >= 0);
});
2014-11-21 02:35:36 +00:00
Role.getRoles({principalType: RoleMapping.APP, principalId: user.id}, function(err, roles) {
assert.equal(roles.length, 2);
2014-11-21 02:35:36 +00:00
assert(roles.indexOf(Role.EVERYONE) >= 0);
assert(roles.indexOf(Role.AUTHENTICATED) >= 0);
2013-11-12 18:47:59 +00:00
});
2014-11-21 02:35:36 +00:00
Role.getRoles({principalType: RoleMapping.USER, principalId: 100}, function(err, roles) {
assert.equal(roles.length, 2);
2014-11-21 02:35:36 +00:00
assert(roles.indexOf(Role.EVERYONE) >= 0);
assert(roles.indexOf(Role.AUTHENTICATED) >= 0);
2013-11-12 18:47:59 +00:00
});
2014-11-21 02:35:36 +00:00
Role.getRoles({principalType: RoleMapping.USER, principalId: null}, function(err, roles) {
assert.equal(roles.length, 2);
2014-11-21 02:35:36 +00:00
assert(roles.indexOf(Role.EVERYONE) >= 0);
assert(roles.indexOf(Role.UNAUTHENTICATED) >= 0);
2013-11-12 18:47:59 +00:00
});
});
});
});
});
2014-11-21 02:35:36 +00:00
it('should support owner role resolver', function() {
var Album = ds.createModel('Album', {
name: String,
userId: Number
}, {
relations: {
user: {
type: 'belongsTo',
model: 'User',
foreignKey: 'userId'
}
}
});
2014-11-21 02:35:36 +00:00
User.create({name: 'Raymond', email: 'x@y.com', password: 'foobar'}, function(err, user) {
Role.isInRole(Role.AUTHENTICATED, {principalType: ACL.USER, principalId: user.id}, function(err, yes) {
assert(!err && yes);
});
2014-11-21 02:35:36 +00:00
Role.isInRole(Role.AUTHENTICATED, {principalType: ACL.USER, principalId: null}, function(err, yes) {
assert(!err && !yes);
});
2014-11-21 02:35:36 +00:00
Role.isInRole(Role.UNAUTHENTICATED, {principalType: ACL.USER, principalId: user.id}, function(err, yes) {
2013-11-20 21:38:14 +00:00
assert(!err && !yes);
});
2014-11-21 02:35:36 +00:00
Role.isInRole(Role.UNAUTHENTICATED, {principalType: ACL.USER, principalId: null}, function(err, yes) {
2013-11-20 21:38:14 +00:00
assert(!err && yes);
});
2014-11-21 02:35:36 +00:00
Role.isInRole(Role.EVERYONE, {principalType: ACL.USER, principalId: user.id}, function(err, yes) {
assert(!err && yes);
});
2014-11-21 02:35:36 +00:00
Role.isInRole(Role.EVERYONE, {principalType: ACL.USER, principalId: null}, function(err, yes) {
assert(!err && yes);
});
// console.log('User: ', user.id);
2014-11-21 02:35:36 +00:00
Album.create({name: 'Album 1', userId: user.id}, function(err, album1) {
Role.isInRole(Role.OWNER, {principalType: ACL.USER, principalId: user.id, model: Album, id: album1.id}, function(err, yes) {
assert(!err && yes);
});
2014-11-21 02:35:36 +00:00
Album.create({name: 'Album 2'}, function(err, album2) {
Role.isInRole(Role.OWNER, {principalType: ACL.USER, principalId: user.id, model: Album, id: album2.id}, function(err, yes) {
assert(!err && !yes);
});
});
});
});
});
describe('isMappedToRole', function() {
var user, app, role;
beforeEach(function(done) {
User.create({
username: 'john',
email: 'john@gmail.com',
password: 'jpass'
}, function(err, u) {
if (err) return done(err);
user = u;
User.create({
username: 'mary',
email: 'mary@gmail.com',
password: 'mpass'
}, function(err, u) {
if (err) return done(err);
Application.create({
name: 'demo'
}, function(err, a) {
if (err) return done(err);
app = a;
Role.create({
name: 'admin'
}, function(err, r) {
if (err) return done(err);
role = r;
var principals = [
{
principalType: ACL.USER,
principalId: user.id
},
{
principalType: ACL.APP,
principalId: app.id
}
];
async.each(principals, function(p, done) {
role.principals.create(p, done);
}, done);
});
});
});
});
});
it('should resolve user by id', function(done) {
ACL.resolvePrincipal(ACL.USER, user.id, function(err, u) {
if (err) return done(err);
expect(u.id).to.eql(user.id);
done();
});
});
it('should resolve user by username', function(done) {
ACL.resolvePrincipal(ACL.USER, user.username, function(err, u) {
if (err) return done(err);
expect(u.username).to.eql(user.username);
done();
});
});
it('should resolve user by email', function(done) {
ACL.resolvePrincipal(ACL.USER, user.email, function(err, u) {
if (err) return done(err);
expect(u.email).to.eql(user.email);
done();
});
});
it('should resolve app by id', function(done) {
ACL.resolvePrincipal(ACL.APP, app.id, function(err, a) {
if (err) return done(err);
expect(a.id).to.eql(app.id);
done();
});
});
it('should resolve app by name', function(done) {
ACL.resolvePrincipal(ACL.APP, app.name, function(err, a) {
if (err) return done(err);
expect(a.name).to.eql(app.name);
done();
});
});
it('should report isMappedToRole by user.username', function(done) {
ACL.isMappedToRole(ACL.USER, user.username, 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(true);
done();
});
});
it('should report isMappedToRole by user.email', function(done) {
ACL.isMappedToRole(ACL.USER, user.email, 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(true);
done();
});
});
it('should report isMappedToRole by user.username for mismatch',
function(done) {
ACL.isMappedToRole(ACL.USER, 'mary', 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(false);
done();
});
});
it('should report isMappedToRole by app.name', function(done) {
ACL.isMappedToRole(ACL.APP, app.name, 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(true);
done();
});
});
it('should report isMappedToRole by app.name', function(done) {
ACL.isMappedToRole(ACL.APP, app.name, 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(true);
done();
});
});
});
2015-03-13 22:30:53 +00:00
describe('listByPrincipalType', function() {
var sandbox;
2015-03-13 22:30:53 +00:00
beforeEach(function() {
sandbox = sinon.sandbox.create();
});
2015-03-13 22:30:53 +00:00
afterEach(function() {
sandbox.restore();
});
it('should fetch all models assigned to the role', function(done) {
var principalTypesToModels = {};
var runs = 0;
var mappings;
principalTypesToModels[RoleMapping.USER] = User;
principalTypesToModels[RoleMapping.APPLICATION] = Application;
principalTypesToModels[RoleMapping.ROLE] = Role;
mappings = Object.keys(principalTypesToModels);
2015-03-13 22:30:53 +00:00
mappings.forEach(function(principalType) {
var Model = principalTypesToModels[principalType];
2015-03-13 22:30:53 +00:00
Model.create({name:'test', email:'x@y.com', password: 'foobar'}, function(err, model) {
Role.create({name:'testRole'}, function(err, role) {
role.principals.create({principalType: principalType, principalId: model.id}, function(err, p) {
var pluralName = Model.pluralModelName.toLowerCase();
2015-03-13 22:30:53 +00:00
role[pluralName](function(err, models) {
assert(!err);
assert.equal(models.length, 1);
if (++runs === mappings.length) {
done();
}
});
});
2015-03-13 22:30:53 +00:00
});
});
});
});
it('should apply query', function(done) {
User.create({name: 'Raymond', email: 'x@y.com', password: 'foobar'}, function(err, user) {
Role.create({name: 'userRole'}, function(err, role) {
role.principals.create({principalType: RoleMapping.USER, principalId: user.id}, function(err, p) {
2015-03-13 22:30:53 +00:00
var query = {fields:['id', 'name']};
sandbox.spy(User, 'find');
role.users(query, function(err, users) {
assert(!err);
assert.equal(users.length, 1);
assert.equal(users[0].id, user.id);
assert(User.find.calledWith(query));
done();
});
});
});
});
});
2015-03-13 22:30:53 +00:00
});
2013-11-10 06:22:16 +00:00
});