Added more test cases for GET /records/{recordId}/credentials
This commit is contained in:
parent
61430dd1d4
commit
2447d10dd2
1 changed files with 45 additions and 0 deletions
|
@ -21,5 +21,50 @@ test.run(async function () {
|
||||||
type: 'key'
|
type: 'key'
|
||||||
}
|
}
|
||||||
], 'Result fail for ' + res.config.url);
|
], 'Result fail for ' + res.config.url);
|
||||||
|
|
||||||
|
//Test query
|
||||||
|
var res = await req({
|
||||||
|
url: '/records/4/credentials',
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.equal(res.status, 200, 'Status should be OK');
|
||||||
|
assert.equal(res.data.results, [
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
description: 'Key Test',
|
||||||
|
type: 'key'
|
||||||
|
}
|
||||||
|
], 'Result fail for ' + res.config.url);
|
||||||
|
});
|
||||||
|
|
||||||
|
await test('user', async function (assert, req) {
|
||||||
|
//Test query
|
||||||
|
var res = await req({
|
||||||
|
url: '/records/1/credentials',
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.equal(res.status, 200, 'Status should be OK');
|
||||||
|
assert.equal(res.data.results, [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
description: 'Password Test',
|
||||||
|
type: 'password'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
description: 'Key Test 2',
|
||||||
|
type: 'key'
|
||||||
|
}
|
||||||
|
], 'Result fail for ' + res.config.url);
|
||||||
|
|
||||||
|
//Test permissions
|
||||||
|
var res = await req({
|
||||||
|
url: '/records/4/credentials',
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.equal(res.status, 403, 'Request should fail without permissions.');
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in a new issue