1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Linting and fixing client test case, have to mock getAppId as the location will never be set during testing.

This commit is contained in:
Michael Drury 2020-11-03 14:30:20 +00:00
parent d8da28502e
commit 19bcecf9f3
5 changed files with 12 additions and 7 deletions

View file

@ -1,5 +1,5 @@
import {authenticate} from "./authenticate"
import {getAppIdFromPath} from "../render/getAppId";
import { authenticate } from "./authenticate"
import { getAppIdFromPath } from "../render/getAppId"
const apiCall = method => async ({ url, body }) => {
const response = await fetch(url, {
@ -38,7 +38,7 @@ const del = apiCall("DELETE")
const ERROR_MEMBER = "##error"
const error = message => {
// appStore.update(s => s["##error_message"], message)
return {[ERROR_MEMBER]: message}
return { [ERROR_MEMBER]: message }
}
const isSuccess = obj => !obj || !obj[ERROR_MEMBER]

View file

@ -1,5 +1,8 @@
import { load, makePage, makeScreen, walkComponentTree } from "./testAppDef"
import { isScreenSlot } from "../src/render/builtinComponents"
jest.mock("../src/render/getAppId", () => ({
getAppIdFromPath: () => "TEST_APP_ID"
}))
describe("screenRouting", () => {
it("should load correct screen, for initial URL", async () => {

View file

@ -1,15 +1,17 @@
import jsdom, { JSDOM } from "jsdom"
import { loadBudibase } from "../src/index"
export const APP_ID = "TEST_APP_ID"
export const load = async (page, screens, url, host = "test.com") => {
screens = screens || []
url = url || "/"
const fullUrl = `http://${host}${url}`
const cookieJar = new jsdom.CookieJar()
const cookie = `${btoa("{}")}.${btoa('{"appId":"TEST_APP_ID"}')}.signature`
const cookie = `${btoa("{}")}.${btoa(`{"appId":"${APP_ID}"}`)}.signature`
cookieJar.setCookie(
`budibase:TEST_APP_ID:local=${cookie};domain=${host};path=/`,
`budibase:${APP_ID}:local=${cookie};domain=${host};path=/`,
fullUrl,
{
looseMode: false,

View file

@ -33,7 +33,7 @@ exports.authenticate = async ctx => {
const payload = {
userId: dbUser._id,
accessLevelId: dbUser.accessLevelId,
version: app.version
version: app.version,
}
// if in cloud add the user api key
if (env.CLOUD) {

View file

@ -25,7 +25,7 @@
document.cookie = `budibase:${appId}:${environment}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;`
}
}
location.href=`/${appId}`
location.href = `/${appId}`
}
</script>