Update tests to update users
parent
f45698088a
commit
a85293dbc4
|
@ -98,11 +98,18 @@
|
||||||
],
|
],
|
||||||
"users": [
|
"users": [
|
||||||
{
|
{
|
||||||
"usersName" : "test",
|
"usersName" : "Owner user",
|
||||||
"userEmail" : "test@test.com",
|
"userEmail" : "owner@test.com",
|
||||||
"userPassword" : "$2a$10$7jQx/hQOWrRni531b/dHRuH8o1ZP8Yo8g..GpTOF4M7RrEH/pzTMy",
|
"userPassword" : "$2a$10$7jQx/hQOWrRni531b/dHRuH8o1ZP8Yo8g..GpTOF4M7RrEH/pzTMy",
|
||||||
"isAdmin" : true,
|
"isAdmin" : true,
|
||||||
"isOwner": true
|
"isOwner": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"usersName" : "Non Owner",
|
||||||
|
"userEmail" : "nonowner@test.com",
|
||||||
|
"userPassword" : "$2a$10$7jQx/hQOWrRni531b/dHRuH8o1ZP8Yo8g..GpTOF4M7RrEH/pzTMy",
|
||||||
|
"isAdmin" : false,
|
||||||
|
"isOwner": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"orders": [
|
"orders": [
|
||||||
|
|
|
@ -15,10 +15,5 @@
|
||||||
"isAdmin": {
|
"isAdmin": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"required": [
|
|
||||||
"usersName",
|
|
||||||
"userEmail",
|
|
||||||
"isAdmin"
|
|
||||||
]
|
|
||||||
}
|
}
|
|
@ -208,7 +208,12 @@ router.post('/admin/user/update', restrict, async (req, res) => {
|
||||||
// create the update doc
|
// create the update doc
|
||||||
const updateDoc = {};
|
const updateDoc = {};
|
||||||
updateDoc.isAdmin = isAdmin;
|
updateDoc.isAdmin = isAdmin;
|
||||||
updateDoc.usersName = req.body.usersName;
|
if(req.body.usersName){
|
||||||
|
updateDoc.usersName = req.body.usersName;
|
||||||
|
}
|
||||||
|
if(req.body.userEmail){
|
||||||
|
updateDoc.userEmail = req.body.userEmail;
|
||||||
|
}
|
||||||
if(req.body.userPassword){
|
if(req.body.userPassword){
|
||||||
updateDoc.userPassword = bcrypt.hashSync(req.body.userPassword);
|
updateDoc.userPassword = bcrypt.hashSync(req.body.userPassword);
|
||||||
}
|
}
|
||||||
|
@ -227,14 +232,17 @@ router.post('/admin/user/update', restrict, async (req, res) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
try{
|
try{
|
||||||
await db.users.updateOne(
|
const updatedUser = await db.users.findOneAndUpdate(
|
||||||
{ _id: common.getId(req.body.userId) },
|
{ _id: common.getId(req.body.userId) },
|
||||||
{
|
{
|
||||||
$set: updateDoc
|
$set: updateDoc
|
||||||
}, { multi: false }
|
}, { multi: false, returnOriginal: false }
|
||||||
);
|
);
|
||||||
if(req.apiAuthenticated){
|
if(req.apiAuthenticated){
|
||||||
res.status(200).json({ message: 'User account updated' });
|
const returnUser = updatedUser.value;
|
||||||
|
delete returnUser.userPassword;
|
||||||
|
delete returnUser.apiKey;
|
||||||
|
res.status(200).json({ message: 'User account updated', user: updatedUser.value });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// show the view
|
// show the view
|
||||||
|
@ -242,11 +250,11 @@ router.post('/admin/user/update', restrict, async (req, res) => {
|
||||||
req.session.messageType = 'success';
|
req.session.messageType = 'success';
|
||||||
res.redirect('/admin/user/edit/' + req.body.userId);
|
res.redirect('/admin/user/edit/' + req.body.userId);
|
||||||
}catch(ex){
|
}catch(ex){
|
||||||
|
console.error(colors.red('Failed updating user: ' + ex));
|
||||||
if(req.apiAuthenticated){
|
if(req.apiAuthenticated){
|
||||||
res.status(400).json({ message: 'Failed to update user' });
|
res.status(400).json({ message: 'Failed to update user' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.error(colors.red('Failed updating user: ' + ex));
|
|
||||||
req.session.message = 'Failed to update user';
|
req.session.message = 'Failed to update user';
|
||||||
req.session.messageType = 'danger';
|
req.session.messageType = 'danger';
|
||||||
res.redirect('/admin/user/edit/' + req.body.userId);
|
res.redirect('/admin/user/edit/' + req.body.userId);
|
||||||
|
|
|
@ -90,3 +90,22 @@ test('[Fail] Create new user with invalid email', async t => {
|
||||||
.expect(400);
|
.expect(400);
|
||||||
t.deepEqual(res.body[0].message, 'should match format "emailAddress"');
|
t.deepEqual(res.body[0].message, 'should match format "emailAddress"');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('[Success] Update user', async t => {
|
||||||
|
const user = {
|
||||||
|
userId: g.users[1]._id,
|
||||||
|
usersName: 'Jim Smith',
|
||||||
|
userEmail: 'jim.smith@gmail.com',
|
||||||
|
userPassword: 'test',
|
||||||
|
isAdmin: false
|
||||||
|
};
|
||||||
|
const res = await g.request
|
||||||
|
.post('/admin/user/update')
|
||||||
|
.send(user)
|
||||||
|
.set('apiKey', g.users[0].apiKey)
|
||||||
|
.expect(200);
|
||||||
|
t.deepEqual(res.body.user._id, g.users[1]._id.toString());
|
||||||
|
t.deepEqual(res.body.user.usersName, 'Jim Smith');
|
||||||
|
t.deepEqual(res.body.user.userEmail, 'jim.smith@gmail.com');
|
||||||
|
t.deepEqual(res.body.message, 'User account updated');
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue