2016-11-08 14:29:50 -05:00
|
|
|
import { mapRoutes } from 'discourse/mapping-router';
|
|
|
|
|
2014-07-30 17:53:14 -04:00
|
|
|
moduleFor("controller:avatar-selector", "controller:avatar-selector", {
|
2017-06-14 13:57:58 -04:00
|
|
|
beforeEach() {
|
2016-11-08 14:29:50 -05:00
|
|
|
this.registry.register('router:main', mapRoutes());
|
|
|
|
},
|
2014-07-30 17:53:14 -04:00
|
|
|
needs: ['controller:modal']
|
|
|
|
});
|
2013-08-27 17:01:35 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("avatarTemplate", function(assert) {
|
2015-03-19 14:57:07 -04:00
|
|
|
const avatarSelectorController = this.subject();
|
|
|
|
|
2014-05-27 00:40:46 -04:00
|
|
|
avatarSelectorController.setProperties({
|
|
|
|
selected: "system",
|
|
|
|
system_avatar_upload_id:1,
|
|
|
|
gravatar_avatar_upload_id:2,
|
|
|
|
custom_avatar_upload_id: 3
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(avatarSelectorController.get("selectedUploadId"), 1, "we are using system by default");
|
2013-08-27 17:01:35 -04:00
|
|
|
|
2014-05-27 00:40:46 -04:00
|
|
|
avatarSelectorController.set('selected', 'gravatar');
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(avatarSelectorController.get("selectedUploadId"), 2, "we are using gravatar when set");
|
2013-08-27 17:01:35 -04:00
|
|
|
|
2014-05-27 00:40:46 -04:00
|
|
|
avatarSelectorController.set("selected", "custom");
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(avatarSelectorController.get("selectedUploadId"), 3, "we are using custom when set");
|
2013-08-27 17:01:35 -04:00
|
|
|
});
|