The most basic GET accounts
Some checks failed
Test and build / build (push) Failing after 20s

This commit is contained in:
2024-02-11 22:37:04 +01:00
parent 0536803aff
commit 8173dc4354
11 changed files with 1227 additions and 2224 deletions

View File

@@ -1,4 +1,4 @@
FROM node:18.16.0-alpine3.17
FROM node:20.11.0-alpine3.19
WORKDIR /srv

3015
tests/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,11 +10,11 @@
"author": "Lilleman",
"license": "ISC",
"dependencies": {
"dotenv": "16.0.3",
"got": "12.6.0",
"jsonwebtoken": "9.0.0",
"tap-spec": "5.0.0",
"tape": "5.6.3",
"dotenv": "16.4.2",
"got": "14.2.0",
"jsonwebtoken": "9.0.2",
"tap-spec": "2.2.2",
"tape": "5.7.4",
"tape-es": "1.2.17"
}
}

View File

@@ -1,6 +1,7 @@
import {} from 'dotenv/config';
import crypto from 'crypto';
import got from 'got';
import jwt from 'jsonwebtoken'
import setConfig from '../test-helpers/config.js';
import test from 'tape';
let adminJWT;
@@ -11,6 +12,7 @@ let userJWTString;
const userName = 'test-tomte nöff #18';
const password = 'lurpassare7½TUR';
test('test-cases/01basic.js: Authing with configurated API KEY', async t => {
// Wrong API key
try {
@@ -213,3 +215,59 @@ test('test-cases/01basic.js: Remove an account', async t => {
t.equal(err.message, 'Response code 404 (Not Found)', 'Response status for GETing the account again should be 404');
}
});
test('test-cases/01basic.js: list accounts', async t => {
// Create three accounts we can have to test with
const users = [
{
fields: [{ name: 'role', values: ['user'] }],
name: crypto.randomUUID(),
password: crypto.randomUUID(),
},
{
fields: [{ name: 'role', values: ['user', 'field-surgeon'] }],
name: crypto.randomUUID(),
password: crypto.randomUUID(),
},
{
fields: [{ name: 'role', values: ['user'] }, { name: 'foo', values: ['bar']}],
name: crypto.randomUUID(),
password: crypto.randomUUID(),
},
];
for (const [idx, user] of Object.entries(users)) {
const res = await got.post(`${process.env.AUTH_URL}/accounts`, {
headers: { 'Authorization': `bearer ${adminJWTString}`},
json: user,
responseType: 'json',
});
users[idx].id = res.body.id;
}
// List accounts
const res = await got.get(`${process.env.AUTH_URL}/accounts`, {
headers: { 'Authorization': `bearer ${adminJWTString}`},
responseType: 'json',
});
let foundAccounts = 0
for (const account of res.body) {
for (const user of users) {
if (user.id === account.id) {
foundAccounts++;
}
}
}
t.equal(foundAccounts, 3, 'Expected 3 accounts to be found, found: ' + foundAccounts);
// Clean up our test accounts
for (const [idx, user] of Object.entries(users)) {
await got.delete(`${process.env.AUTH_URL}/accounts/${user.id}`, {
headers: { 'Authorization': `bearer ${adminJWTString}`},
json: user,
responseType: 'json',
});
}
});