discourse/test/javascripts/admin/controllers/admin-badges-test.js.es6

63 lines
2.2 KiB
Plaintext
Raw Normal View History

2014-07-30 17:53:14 -04:00
moduleFor("controller:admin-badges", "controller:admin-badges", {
needs: ['controller:modal', 'controller:admin-badge']
});
2014-03-05 07:52:20 -05:00
test("canEditDescription", function() {
2014-07-30 17:53:14 -04:00
var badge = Discourse.Badge.create({id: 101, name: "Test Badge"});
var controller = this.subject({ model: [badge] });
2014-03-05 07:52:20 -05:00
controller.send('selectBadge', badge);
ok(controller.get('canEditDescription'), "allows editing description when a translation exists for the badge name");
2014-07-30 17:53:14 -04:00
badge.set('translatedDescription', 'translated');
ok(!controller.get('canEditDescription'), "can't edit the description when it's got a translation");
2014-03-05 07:52:20 -05:00
});
2014-05-23 22:33:46 -04:00
test("createNewBadge", function() {
2014-07-30 17:53:14 -04:00
var controller = this.subject();
2014-05-23 22:33:46 -04:00
controller.send('createNewBadge');
2014-03-05 07:52:20 -05:00
equal(controller.get('model.length'), 1, "adds a new badge to the list of badges");
});
test("selectBadge", function() {
var badge = Discourse.Badge.create({id: 101, name: "Test Badge"}),
2014-07-30 17:53:14 -04:00
controller = this.subject({ model: [badge] });
2014-03-05 07:52:20 -05:00
controller.send('selectBadge', badge);
equal(controller.get('selectedItem'), badge, "the badge is selected");
});
test("save", function() {
var badge = Discourse.Badge.create({id: 101, name: "Test Badge"}),
otherBadge = Discourse.Badge.create({id: 102, name: "Other Badge"}),
2014-07-30 17:53:14 -04:00
controller = this.subject({ model: [badge, otherBadge] });
2014-03-05 07:52:20 -05:00
controller.send('selectBadge', badge);
2014-07-30 18:56:01 -04:00
sandbox.stub(badge, "save").returns(Ember.RSVP.resolve({}));
2014-03-05 07:52:20 -05:00
controller.send("save");
ok(badge.save.calledOnce, "called save on the badge");
});
test("destroy", function() {
var badge = Discourse.Badge.create({id: 101, name: "Test Badge"}),
otherBadge = Discourse.Badge.create({id: 102, name: "Other Badge"}),
2014-07-30 17:53:14 -04:00
controller = this.subject({model: [badge, otherBadge]});
2014-03-05 07:52:20 -05:00
2014-07-30 18:56:01 -04:00
sandbox.stub(badge, 'destroy').returns(Ember.RSVP.resolve({}));
2014-03-05 07:52:20 -05:00
bootbox.confirm = function(text, yes, no, func) {
func(false);
};
controller.send('selectBadge', badge);
controller.send('destroy');
ok(!badge.destroy.calledOnce, "badge is not destroyed if they user clicks no");
bootbox.confirm = function(text, yes, no, func) {
func(true);
};
controller.send('selectBadge', badge);
controller.send('destroy');
ok(badge.destroy.calledOnce, "badge is destroyed if they user clicks yes");
});