open-vault/ui/tests/unit/services/auth-test.js

30 lines
803 B
JavaScript
Raw Normal View History

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
2018-04-03 14:16:57 +00:00
module('Unit | Service | auth', function(hooks) {
setupTest(hooks);
[
['#calculateExpiration w/ttl', { ttl: 30 }, 30],
['#calculateExpiration w/lease_duration', { ttl: 15 }, 15],
].forEach(([testName, response, ttlValue]) => {
test(testName, function(assert) {
let now = Date.now();
let service = this.owner.factoryFor('service:auth').create({
now() {
return now;
},
});
let resp = service.calculateExpiration(response);
assert.equal(resp.ttl, ttlValue, 'returns the ttl');
assert.equal(
resp.tokenExpirationEpoch,
now + ttlValue * 1e3,
'calculates expiration from ttl as epoch timestamp'
);
2018-04-03 14:16:57 +00:00
});
});
});