2016-12-15 16:52:47 +08:00
|
|
|
moduleFor('component:group-membership-button');
|
2016-12-07 12:06:56 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test('canJoinGroup', function(assert) {
|
2016-12-07 12:06:56 +08:00
|
|
|
this.subject().setProperties({
|
2017-07-28 10:37:10 +08:00
|
|
|
model: { public_admission: false, is_group_user: true }
|
2016-12-07 12:06:56 +08:00
|
|
|
});
|
|
|
|
|
2017-07-28 10:37:10 +08:00
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canJoinGroup"), false,
|
|
|
|
"can't join group if public_admission is false"
|
|
|
|
);
|
2016-12-07 12:06:56 +08:00
|
|
|
|
2017-07-28 10:37:10 +08:00
|
|
|
this.subject().set("model.public_admission", true);
|
2016-12-07 12:06:56 +08:00
|
|
|
|
2017-07-28 10:37:10 +08:00
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canJoinGroup"), false,
|
|
|
|
"can't join group if user is already in the group"
|
|
|
|
);
|
2016-12-07 12:06:56 +08:00
|
|
|
|
2017-07-28 10:37:10 +08:00
|
|
|
this.subject().set("model.is_group_user", false);
|
2016-12-07 12:06:56 +08:00
|
|
|
|
2017-07-28 10:37:10 +08:00
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canJoinGroup"), true,
|
|
|
|
"allowed to join group"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test('canLeaveGroup', function(assert) {
|
|
|
|
this.subject().setProperties({
|
|
|
|
model: { public_exit: false, is_group_user: false }
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canLeaveGroup"), false,
|
|
|
|
"can't leave group if public_exit is false"
|
|
|
|
);
|
|
|
|
|
|
|
|
this.subject().set("model.public_exit", true);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canLeaveGroup"), false,
|
|
|
|
"can't leave group if user is not in the group"
|
|
|
|
);
|
|
|
|
|
|
|
|
this.subject().set("model.is_group_user", true);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
this.subject().get("canLeaveGroup"), true,
|
|
|
|
"allowed to leave group"
|
|
|
|
);
|
2016-12-07 12:06:56 +08:00
|
|
|
});
|
2016-12-12 22:46:45 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test('userIsGroupUser', function(assert) {
|
2017-01-03 14:36:56 +08:00
|
|
|
this.subject().setProperties({
|
|
|
|
model: { is_group_user: true }
|
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.equal(this.subject().get('userIsGroupUser'), true);
|
2017-01-03 14:36:56 +08:00
|
|
|
|
|
|
|
this.subject().set('model.is_group_user', false);
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.equal(this.subject().get('userIsGroupUser'), false);
|
2017-01-03 14:36:56 +08:00
|
|
|
|
2018-03-19 18:47:17 +08:00
|
|
|
this.subject().set('model.is_group_user', null);
|
2017-03-16 11:33:55 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.equal(this.subject().get('userIsGroupUser'), false);
|
2017-01-03 14:36:56 +08:00
|
|
|
});
|