mirror of https://github.com/Budibase/budibase.git
6 changed files with 15 additions and 127 deletions
@ -1,42 +0,0 @@ |
|||
const usageQuota = require("../../utilities/usageQuota") |
|||
const setup = require("./utilities") |
|||
const { BUILTIN_ROLE_IDS } = require("@budibase/auth/roles") |
|||
const { InternalTables } = require("../../db/utils") |
|||
|
|||
jest.mock("../../utilities/usageQuota") |
|||
|
|||
describe("test the create user action", () => { |
|||
let config = setup.getConfig() |
|||
let user |
|||
|
|||
beforeEach(async () => { |
|||
await config.init() |
|||
user = { |
|||
email: "test@test.com", |
|||
password: "password", |
|||
roleId: BUILTIN_ROLE_IDS.POWER |
|||
} |
|||
}) |
|||
|
|||
afterAll(setup.afterAll) |
|||
|
|||
it("should be able to run the action", async () => { |
|||
const res = await setup.runStep(setup.actions.CREATE_USER.stepId, user) |
|||
expect(res.id).toBeDefined() |
|||
expect(res.revision).toBeDefined() |
|||
const userDoc = await config.getRow(InternalTables.USER_METADATA, res.id) |
|||
expect(userDoc).toBeDefined() |
|||
}) |
|||
|
|||
it("should return an error if no inputs provided", async () => { |
|||
const res = await setup.runStep(setup.actions.CREATE_USER.stepId, {}) |
|||
expect(res.success).toEqual(false) |
|||
}) |
|||
|
|||
it("check usage quota attempts", async () => { |
|||
await setup.runInProd(async () => { |
|||
await setup.runStep(setup.actions.CREATE_USER.stepId, user) |
|||
expect(usageQuota.update).toHaveBeenCalledWith(setup.apiKey, "users", 1) |
|||
}) |
|||
}) |
|||
}) |
|||
Loading…
Reference in new issue