-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix #1193. Implementation of Group Manager The group manager is accessible from the "Manage Groups" button. It is implemented using the user manager look and feel.
- Loading branch information
1 parent
64e174c
commit 56df40b
Showing
33 changed files
with
2,146 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,255 @@ | ||
/** | ||
* Copyright 2016, GeoSolutions Sas. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
const expect = require('expect'); | ||
const assign = require('object-assign'); | ||
const { | ||
GETGROUPS, | ||
STATUS_SUCCESS, | ||
STATUS_ERROR, | ||
getUserGroups, | ||
editGroup, | ||
EDITGROUP, | ||
changeGroupMetadata, | ||
EDITGROUPDATA, | ||
saveGroup, | ||
UPDATEGROUP, | ||
deleteGroup, | ||
DELETEGROUP, | ||
STATUS_DELETED, | ||
searchUsers, | ||
SEARCHUSERS | ||
} = require('../usergroups'); | ||
let GeoStoreDAO = require('../../api/GeoStoreDAO'); | ||
let oldAddBaseUri = GeoStoreDAO.addBaseUrl; | ||
|
||
describe('Test correctness of the usergroups actions', () => { | ||
beforeEach(() => { | ||
GeoStoreDAO.addBaseUrl = (options) => { | ||
return assign(options, {baseURL: 'base/web/client/test-resources/geostore/'}); | ||
}; | ||
}); | ||
|
||
afterEach(() => { | ||
GeoStoreDAO.addBaseUrl = oldAddBaseUri; | ||
}); | ||
it('get UserGroups', (done) => { | ||
const retFun = getUserGroups('usergroups.json', {params: {start: 0, limit: 10}}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(GETGROUPS); | ||
count++; | ||
if (count === 2) { | ||
expect(action.status).toBe(STATUS_SUCCESS); | ||
expect(action.groups).toExist(); | ||
expect(action.groups[0]).toExist(); | ||
expect(action.groups[0].groupName).toExist(); | ||
done(); | ||
} | ||
|
||
}, () => ({ | ||
userGroups: { | ||
searchText: "*" | ||
} | ||
})); | ||
|
||
}); | ||
it('getUserGroups error', (done) => { | ||
const retFun = getUserGroups('MISSING_LINK', {params: {start: 0, limit: 10}}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(GETGROUPS); | ||
count++; | ||
if (count === 2) { | ||
expect(action.status).toBe(STATUS_ERROR); | ||
expect(action.error).toExist(); | ||
done(); | ||
} | ||
|
||
}); | ||
|
||
}); | ||
it('edit UserGroup', (done) => { | ||
const retFun = editGroup({id: 1}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(EDITGROUP); | ||
count++; | ||
if (count === 2) { | ||
expect(action.group).toExist(); | ||
expect(action.status).toBe("success"); | ||
done(); | ||
} | ||
}); | ||
}, {security: {user: {role: "ADMIN"}}}); | ||
|
||
it('edit UserGroup new', (done) => { | ||
let template = {groupName: "hello"}; | ||
const retFun = editGroup(template); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(EDITGROUP); | ||
count++; | ||
if (count === 1) { | ||
expect(action.group).toExist(); | ||
expect(action.group).toBe(template); | ||
done(); | ||
} | ||
}); | ||
}); | ||
it('edit UserGroup error', (done) => { | ||
const retFun = editGroup({id: 99999}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(EDITGROUP); | ||
count++; | ||
if (count === 2) { | ||
expect(action.error).toExist(); | ||
expect(action.status).toBe("error"); | ||
done(); | ||
} | ||
}); | ||
}); | ||
|
||
it('change usergroup metadata', () => { | ||
const action = changeGroupMetadata("groupName", "New Group Name"); | ||
expect(action).toExist(); | ||
expect(action.type).toBe(EDITGROUPDATA); | ||
expect(action.key).toBe("groupName"); | ||
expect(action.newValue).toBe("New Group Name"); | ||
|
||
}); | ||
|
||
it('update usergroup', (done) => { | ||
// 1# is a workaround to skip the trailing slash of the request | ||
// that can not be managed by the test-resources | ||
const retFun = saveGroup({id: "1#", newUsers: [{id: 100, name: "name1"}]}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
if (action.type) { | ||
expect(action.type).toBe(UPDATEGROUP); | ||
} | ||
count++; | ||
if (count === 2) { | ||
expect(action.group).toExist(); | ||
expect(action.status).toBe("saved"); | ||
} | ||
if (count === 3) { | ||
// the third call is for update list | ||
done(); | ||
} | ||
}); | ||
}); | ||
it('create usergroup', (done) => { | ||
GeoStoreDAO.addBaseUrl = (options) => { | ||
return assign(options, {baseURL: 'base/web/client/test-resources/geostore/usergroups/newGroup.txt#'}); | ||
}; | ||
const retFun = saveGroup({groupName: "TEST"}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
if (action.type) { | ||
expect(action.type).toBe(UPDATEGROUP); | ||
} | ||
count++; | ||
if (count === 2) { | ||
expect(action.group).toExist(); | ||
expect(action.group.id).toExist(); | ||
expect(action.group.id).toBe(1); | ||
expect(action.status).toBe("created"); | ||
} | ||
if (count === 3) { | ||
// the third call is for update list | ||
done(); | ||
} | ||
}); | ||
}); | ||
it('create usergroup with groups', (done) => { | ||
GeoStoreDAO.addBaseUrl = (options) => { | ||
return assign(options, {baseURL: 'base/web/client/test-resources/geostore/usergroups/newGroup.txt#'}); | ||
}; | ||
const retFun = saveGroup({groupName: "TEST", newUsers: [{id: 100, name: "name1"}]}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
if (action.type) { | ||
expect(action.type).toBe(UPDATEGROUP); | ||
} | ||
count++; | ||
if (count === 2) { | ||
expect(action.group).toExist(); | ||
expect(action.group.id).toExist(); | ||
expect(action.group.id).toBe(1); | ||
expect(action.status).toBe("created"); | ||
} | ||
if (count === 3) { | ||
// the third call is for update list | ||
done(); | ||
} | ||
}); | ||
}); | ||
|
||
it('delete Group', (done) => { | ||
let confirm = deleteGroup(1); | ||
expect(confirm).toExist(); | ||
expect(confirm.status).toBe("confirm"); | ||
const retFun = deleteGroup(1, "delete"); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
if (action.type) { | ||
expect(action.type).toBe(DELETEGROUP); | ||
} | ||
count++; | ||
if (count === 2) { | ||
expect(action.status).toExist(); | ||
expect(action.status).toBe(STATUS_DELETED); | ||
expect(action.id).toBe(1); | ||
done(); | ||
} | ||
if (count === 3) { | ||
// the third call is for update list | ||
done(); | ||
} | ||
}); | ||
}); | ||
it('search users', (done) => { | ||
const retFun = searchUsers('users.json', 0, 10, {params: {start: 0, limit: 10}}, ""); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(SEARCHUSERS); | ||
count++; | ||
if (count === 2) { | ||
expect(action.users).toExist(); | ||
expect(action.users[0]).toExist(); | ||
expect(action.users[0].groups).toExist(); | ||
done(); | ||
} | ||
}); | ||
}); | ||
it('search users', (done) => { | ||
const retFun = searchUsers('MISSING_LINK', {params: {start: 0, limit: 10}}); | ||
expect(retFun).toExist(); | ||
let count = 0; | ||
retFun((action) => { | ||
expect(action.type).toBe(SEARCHUSERS); | ||
count++; | ||
if (count === 2) { | ||
expect(action.error).toExist(); | ||
done(); | ||
} | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.