Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added tests for AgreedToPersonalDataCollection field in dh_user #149

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions integration-tests/rest-user.js
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,27 @@ describe('REST API User', function () {
});
});

it('should update current user agreedToPersonalDataCollection field', function (done) {
req.update(path.combine(path.USER, path.CURRENT))
.params({jwt: jwt, data: {agreedToPersonalDataCollection: true}})
.send(function (err) {
if (err) {
return done(err);
}

req.get(path.combine(path.USER, path.CURRENT))
.params({jwt: jwt})
.expect({
id: user.id,
login: user.login,
role: 1,
status: 0,
agreedToPersonalDataCollection: true
})
.send(done);
});
});

it('should update current user data field', function (done) {
req.update(path.combine(path.USER, path.CURRENT))
.params({jwt: jwt, data: {data: {userdata: "userdata"}}})
Expand Down
76 changes: 56 additions & 20 deletions integration-tests/ws-user.js
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,42 @@ describe('WebSocket API User', function () {
});
});

it('should update current user agreedToPersonalDataCollection field', function (done) {
var requestId = getRequestId();

conn.on({
action: "user/updateCurrent",
requestId: requestId,
status: "success"
}, (err, data) => {
if (err) {
return done(err);
}
var requestId2 = getRequestId();

conn.on({
current: {
id: user.id,
login: user.login,
role: 1,
status: 0,
agreedToPersonalDataCollection: true
}
}, done);

conn.send({
action: 'user/getCurrent',
requestId: requestId
});
});

conn.send({
action: 'user/updateCurrent',
requestId: requestId,
user: { agreedToPersonalDataCollection: true }
});
});

it('should update current user data field', function (done) {
var requestId = getRequestId();
var requestId2 = getRequestId();
Expand Down Expand Up @@ -941,7 +977,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'authenticate',
requestId: getRequestId(),
Expand All @@ -956,7 +992,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/list',
requestId: getRequestId(),
Expand All @@ -971,7 +1007,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/get',
requestId: getRequestId(),
Expand All @@ -986,7 +1022,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/getCurrent',
requestId: getRequestId(),
Expand All @@ -1001,7 +1037,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/insert',
requestId: getRequestId(),
Expand All @@ -1016,7 +1052,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/update',
requestId: getRequestId(),
Expand All @@ -1031,7 +1067,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/updateCurrent',
requestId: getRequestId(),
Expand All @@ -1046,7 +1082,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Unauthorized'
}, done);

noTokenConn.send({
action: 'user/delete',
requestId: getRequestId(),
Expand Down Expand Up @@ -1100,7 +1136,7 @@ describe('WebSocket API User', function () {
action: 'authenticate',
status: 'success'
}, callback);

nonNetworkConn.send({
action: 'authenticate',
requestId: getRequestId(),
Expand All @@ -1125,7 +1161,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/list',
requestId: getRequestId()
Expand All @@ -1139,7 +1175,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/get',
requestId: getRequestId(),
Expand All @@ -1154,7 +1190,7 @@ describe('WebSocket API User', function () {
code: status.NOT_AUTHORIZED,
error: 'Invalid credentials'
}, done);

refreshConn.send({
action: 'authenticate',
requestId: getRequestId(),
Expand All @@ -1169,7 +1205,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/list',
requestId: getRequestId()
Expand All @@ -1183,7 +1219,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/list',
requestId: getRequestId(),
Expand All @@ -1198,7 +1234,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/insert',
requestId: getRequestId(),
Expand All @@ -1213,7 +1249,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/update',
requestId: getRequestId(),
Expand All @@ -1229,7 +1265,7 @@ describe('WebSocket API User', function () {
code: status.FORBIDDEN,
error: 'Access is denied'
}, done);

nonNetworkConn.send({
action: 'user/delete',
requestId: requestId,
Expand Down Expand Up @@ -1336,7 +1372,7 @@ describe('WebSocket API User', function () {
action: 'authenticate',
status: 'success'
}, callback);

conn.send({
action: 'authenticate',
requestId: getRequestId(),
Expand All @@ -1352,7 +1388,7 @@ describe('WebSocket API User', function () {
assert(data.user.lastLogin !== null);
done();
});

adminConn.send({
action: 'user/get',
userId: user.id
Expand Down Expand Up @@ -1463,7 +1499,7 @@ describe('WebSocket API User', function () {
action: 'authenticate',
status: 'success'
}, callback);

conn.send({
action: 'authenticate',
requestId: getRequestId(),
Expand Down
Loading