discourse/test/javascripts/admin/models/admin-user-test.js.es6

31 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-10-22 15:53:08 -04:00
module("Discourse.AdminUser");
asyncTestDiscourse('generate key', function() {
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse, 'ajax').returns(Ember.RSVP.resolve({api_key: {id: 1234, key: 'asdfasdf'}}));
2013-10-22 15:53:08 -04:00
var adminUser = Discourse.AdminUser.create({id: 333});
blank(adminUser.get('api_key'), 'it has no api key by default');
adminUser.generateApiKey().then(function() {
start();
ok(Discourse.ajax.calledWith("/admin/users/333/generate_api_key", { type: 'POST' }), "it POSTed to the url");
present(adminUser.get('api_key'), 'it has an api_key now');
});
});
asyncTestDiscourse('revoke key', function() {
var apiKey = Discourse.ApiKey.create({id: 1234, key: 'asdfasdf'}),
adminUser = Discourse.AdminUser.create({id: 333, api_key: apiKey});
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse, 'ajax').returns(Ember.RSVP.resolve());
2013-10-22 15:53:08 -04:00
equal(adminUser.get('api_key'), apiKey, 'it has the api key in the beginning');
adminUser.revokeApiKey().then(function() {
start();
ok(Discourse.ajax.calledWith("/admin/users/333/revoke_api_key", { type: 'DELETE' }), "it DELETEd to the url");
blank(adminUser.get('api_key'), 'it cleared the api_key');
});
2014-07-30 18:56:01 -04:00
});