Skip to content
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

Allow wrapping raw synchronous databases as SqliteDatabase #86

Merged
merged 1 commit into from
Feb 5, 2025

Conversation

simolus3
Copy link
Contributor

@simolus3 simolus3 commented Feb 4, 2025

The asynchronous, isolate-based APIs provided by this package are a great default to access sqlite databases. For some test setups, they can stand in the way however. In particular,

  1. They make it almost impossible to use in-memory databases (which are otherwise a great fit for tests).
  2. The use of multiple isolates makes some async interactions much harder to debug (I ran into this writing tests for the PowerSync SDK, which was frustrating enough to make these changes here 😄 ).
  3. Since the default factories set up workers, it's impossible to register custom functions in tests without compiling a custom worker for tests.

While it's a good thing that our unit tests have a setup very similar to what users have in practice, some individual components are easier to test when keeping everything on a single isolate. So, this:

  1. Exports the existing SyncSqliteConnection as an easily-accessible factory wrapping a CommonDatabase.
  2. Allows turning a single SqliteConnection into a SqliteDatabase.

There are documentation comments warning that these methods should not be used in apps, but they are helpful for tests.

@simolus3
Copy link
Contributor Author

simolus3 commented Feb 5, 2025

There's another issue I want to look at before a release, so I'll merge this without releasing.

@simolus3 simolus3 merged commit 2938232 into main Feb 5, 2025
6 checks passed
@simolus3 simolus3 deleted the feat/allow-wrapping-common-database branch February 5, 2025 10:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants