From 34a3f2f132791ad33e6a6b59371bb6f029436ab4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Jul 2020 16:51:55 +0200 Subject: Tests and abc fix using Lars' branch --- src/abc | 1 + src/db/DBController.ts | 16 ++++++++++------ src/db/user.ts | 3 ++- src/groups/user.ts | 5 +++-- src/handler/user.ts | 3 ++- src/main.ts | 6 ++++-- 6 files changed, 22 insertions(+), 12 deletions(-) create mode 160000 src/abc (limited to 'src') diff --git a/src/abc b/src/abc new file mode 160000 index 0000000..adba5f8 --- /dev/null +++ b/src/abc @@ -0,0 +1 @@ +Subproject commit adba5f857e1f2a53bfffba1aa184c6d2ca5c48eb diff --git a/src/db/DBController.ts b/src/db/DBController.ts index 2cfd1f2..c01d7b4 100644 --- a/src/db/DBController.ts +++ b/src/db/DBController.ts @@ -34,10 +34,10 @@ export default class DBController { } } - async execute(query: string) { + async execute(query: string, params?: string[]) { if (this.client) { try { - return await this.client.execute(query); + return await this.client.execute(query, params); } catch (e) { throw e; } @@ -45,11 +45,15 @@ export default class DBController { } async execute_multiple(queries: string[]) { - await this.client!.transaction(async (conn) => { - queries.forEach(async (query) => { - await conn.execute(query); + try { + return await this.client!.transaction(async (conn) => { + queries.forEach(async (query) => { + await conn.execute(query); + }); }); - }); + } catch (e) { + throw e; + } } async close() { diff --git a/src/db/user.ts b/src/db/user.ts index c245b5f..1e20564 100644 --- a/src/db/user.ts +++ b/src/db/user.ts @@ -1,6 +1,7 @@ import DBController from "./DBController.ts"; -class User extends DBController { +class User { + createUser() {} } export default new User(); diff --git a/src/groups/user.ts b/src/groups/user.ts index ae6d2ad..59cda82 100644 --- a/src/groups/user.ts +++ b/src/groups/user.ts @@ -1,6 +1,7 @@ -import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts"; +// import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts"; +import type { Group, Context } from "../abc/mod.ts"; import * as handlers from "../handler/user.ts"; export default function (g: Group) { - g.get("/:name", handlers.index); + g.get("/:name", handlers.index); } diff --git a/src/handler/user.ts b/src/handler/user.ts index 33b96a2..78db609 100644 --- a/src/handler/user.ts +++ b/src/handler/user.ts @@ -1,4 +1,5 @@ -import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts"; +// import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts"; +import type { HandlerFunc, Context } from "../abc/mod.ts"; import db from "../db/user.ts"; export const index: HandlerFunc = async (c: Context) => c.params.name; diff --git a/src/main.ts b/src/main.ts index 3eded62..9b16126 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,8 @@ import "https://deno.land/x/dotenv/load.ts"; -import { Application } from "https://deno.land/x/abc@v1/mod.ts"; -import type { Context } from "https://deno.land/x/abc@v1/mod.ts"; +// import { Application } from "https://deno.land/x/abc@v1/mod.ts"; +// import type { Context } from "https://deno.land/x/abc@v1/mod.ts"; +import { Application } from "./abc/mod.ts"; +import type { Context } from "./abc/mod.ts"; import { renderFile } from "https://deno.land/x/dejs/mod.ts"; import * as groups from "./groups/index.ts"; import DBController from "./db/DBController.ts"; -- cgit v1.2.3