-
Notifications
You must be signed in to change notification settings - Fork 0
test: Added test for sql queries made in storage.ts in redeem-solver with correct Miniflare Setup #224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Rcc999
wants to merge
11
commits into
master
Choose a base branch
from
rayane/storage-test-for-redeem-solver
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
test: Added test for sql queries made in storage.ts in redeem-solver with correct Miniflare Setup #224
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e37a7b0
test: Added test for sql queries made in storage.ts in redeem-solver …
Rcc999 656b4ae
Added condition is_active=1 for test of function getActiveNetworks()
Rcc999 7c378aa
removed comments
Rcc999 e259917
removed comments
Rcc999 5950745
Added helper function
Rcc999 8b40ca3
Moved db.test.ts into common package for test setup in lib
Rcc999 3f2ca4c
Merge branch 'master' into rayane/storage-test-for-redeem-solver
Rcc999 cff6e04
Merge branch 'master' into rayane/storage-test-for-redeem-solver
Rcc999 8a3c69c
Corrected test after merge
Rcc999 565552a
Merge branch 'master' into rayane/storage-test-for-redeem-solver
Rcc999 33d5226
Merge branch 'master' into rayane/storage-test-for-redeem-solver
Rcc999 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,9 @@ | ||
| import * as path from "path"; | ||
| import { readdir } from "fs/promises"; | ||
| import { D1Database } from "@cloudflare/workers-types"; | ||
| import { initDb as initDbShared } from "@gonative-cc/lib/common-setup/db.test"; | ||
|
|
||
| const MIGRATIONS_PATH = path.resolve(__dirname, "../db/migrations"); | ||
|
|
||
| export async function initDb(db: D1Database) { | ||
| const migrationFiles = await readdir(MIGRATIONS_PATH); | ||
| migrationFiles.sort(); | ||
|
|
||
| for (const filename of migrationFiles) { | ||
| if (filename.endsWith(".sql")) { | ||
| const file = Bun.file(path.join(MIGRATIONS_PATH, filename)); | ||
| const migration = await file.text(); | ||
| const cleanedMigration = migration | ||
| .replace(/--.*/g, "") | ||
| .replace(/\n/g, " ") | ||
| .replace(/\s{2,}/g, " ") | ||
| .trim(); | ||
| if (cleanedMigration.length > 0) { | ||
| await db.exec(cleanedMigration); | ||
| } | ||
| } | ||
| } | ||
| await initDbShared(db, MIGRATIONS_PATH); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| import * as path from "path"; | ||
| import { readdir } from "fs/promises"; | ||
| import { D1Database } from "@cloudflare/workers-types"; | ||
|
|
||
| export async function initDb(db: D1Database, migrationsPath: string) { | ||
| const migrationFiles = await readdir(migrationsPath); | ||
| migrationFiles.sort(); | ||
|
|
||
| for (const filename of migrationFiles) { | ||
| if (filename.endsWith(".sql")) { | ||
| const file = Bun.file(path.join(migrationsPath, filename)); | ||
| const migration = await file.text(); | ||
| const cleanedMigration = migration | ||
| .replace(/--.*/g, "") | ||
Rcc999 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| .replace(/\n/g, " ") | ||
| .replace(/\s{2,}/g, " ") | ||
| .trim(); | ||
| if (cleanedMigration.length > 0) { | ||
| await db.exec(cleanedMigration); | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import * as path from "path"; | ||
| import { D1Database } from "@cloudflare/workers-types"; | ||
| import { initDb as initDbShared } from "@gonative-cc/lib/common-setup/db.test"; | ||
|
|
||
| const MIGRATIONS_PATH = path.resolve(__dirname, "../../btcindexer/db/migrations"); | ||
|
|
||
| export async function initDb(db: D1Database) { | ||
| await initDbShared(db, MIGRATIONS_PATH); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.