diff --git a/tests/tests/post.js b/tests/tests/post.js index f6e7518..0b326ac 100644 --- a/tests/tests/post.js +++ b/tests/tests/post.js @@ -138,6 +138,30 @@ const list = [ server: "localhost:7224", accountKey: accountKey + "lol" }, "error", "auth"); + }], ["admin", async (req) => { + await req({ + "authorization": `Digest name=${name1} server=localhost:7224 accountKey=${accountKey}` + }, "getAccounts", {}, "ok", [ + { + accID: 1, + rights: 65535, + name: "testUser1", + viewable: true, + deleted: false, + maxRooms: 2, + maxRoomSize: 10, + maxUsersPerRoom: 2 + }, { + accID: null, + rights: 3, + name: "testUser2", + viewable: true, + deleted: true, + maxRooms: 2, + maxRoomSize: 10, + maxUsersPerRoom: 2 + } + ]); }], ["room Owner", async (req) => { await req({ "authorization": `Digest name=${name1} server=localhost:7224 accountKey=${accountKey}`