vault/ui/tests/unit/utils/api-path-test.js
Matthew Irish 27e595e352
UI - dynamic related capabilities (#7013)
* lay groundwork for application serializer to setup capabilities relationships

* add api path util and tests, and attach-capabilites fn

* make attach-capabilities work with array responses, add tests
2019-06-28 16:07:45 -05:00

24 lines
773 B
JavaScript

import apiPath from 'vault/utils/api-path';
import { module, test } from 'qunit';
module('Unit | Util | api path', function() {
test('it returns a function', function(assert) {
let ret = apiPath`foo`;
assert.ok(typeof ret === 'function');
});
test('it iterpolates strings from passed context object', function(assert) {
let ret = apiPath`foo/${'one'}/${'two'}`;
let result = ret({ one: 1, two: 2 });
assert.equal(result, 'foo/1/2', 'returns the expected string');
});
test('it throws when the key is not found in the context', function(assert) {
let ret = apiPath`foo/${'one'}/${'two'}`;
assert.throws(() => {
ret({ one: 1 });
}, /Error: Assertion Failed: Expected 2 keys in apiPath context, only recieved 1/);
});
});