2014-07-31 06:56:01 +08:00
|
|
|
moduleFor("controller:user-dropdown");
|
2014-02-12 09:56:49 +08:00
|
|
|
|
|
|
|
test("logout action logs out the current user", function () {
|
2015-02-27 01:25:25 +08:00
|
|
|
const logoutMock = sinon.mock(Discourse, "logout");
|
|
|
|
logoutMock.expects("logout").once();
|
2014-02-12 09:56:49 +08:00
|
|
|
|
2015-02-27 01:25:25 +08:00
|
|
|
this.subject().send('logout');
|
2014-02-12 09:56:49 +08:00
|
|
|
|
2015-02-27 01:25:25 +08:00
|
|
|
logoutMock.verify();
|
2014-02-12 09:56:49 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
test("showAdminLinks", function() {
|
2015-02-27 01:25:25 +08:00
|
|
|
const currentUser = Ember.Object.create({ staff: true });
|
|
|
|
const controller = this.subject({ currentUser });
|
2014-02-12 09:56:49 +08:00
|
|
|
equal(controller.get("showAdminLinks"), true, "is true when current user is a staff member");
|
|
|
|
|
2015-02-27 01:25:25 +08:00
|
|
|
currentUser.set("staff", false);
|
2014-02-12 09:56:49 +08:00
|
|
|
equal(controller.get("showAdminLinks"), false, "is false when current user is not a staff member");
|
|
|
|
});
|