discourse/test/javascripts/components/group-membership-button-tes...

83 lines
2.0 KiB
Plaintext
Raw Normal View History

2016-12-15 03:52:47 -05:00
moduleFor('component:group-membership-button');
2016-12-06 23:06:56 -05:00
2017-06-14 13:57:58 -04:00
QUnit.test('canJoinGroup', function(assert) {
2016-12-06 23:06:56 -05:00
this.subject().setProperties({
model: { public_admission: false, is_group_user: true }
2016-12-06 23:06:56 -05:00
});
assert.equal(
this.subject().get("canJoinGroup"), false,
"can't join group if public_admission is false"
);
2016-12-06 23:06:56 -05:00
this.subject().set("model.public_admission", true);
2016-12-06 23:06:56 -05:00
assert.equal(
this.subject().get("canJoinGroup"), false,
"can't join group if user is already in the group"
);
2016-12-06 23:06:56 -05:00
this.subject().set("model.is_group_user", false);
2016-12-06 23:06:56 -05: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-06 23:06:56 -05:00
});
2017-06-14 13:57:58 -04:00
QUnit.test('userIsGroupUser', function(assert) {
this.subject().setProperties({
model: { is_group_user: true }
});
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), true);
this.subject().set('model.is_group_user', false);
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), false);
this.subject().setProperties({ model: { id: 1 }, groupUserIds: [1] });
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), true);
this.subject().set('groupUserIds', [3]);
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), false);
this.subject().set('groupUserIds', undefined);
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), false);
this.subject().setProperties({
groupUserIds: [1, 3],
model: { id: 1, is_group_user: false }
});
2017-06-14 13:57:58 -04:00
assert.equal(this.subject().get('userIsGroupUser'), false);
});