-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
feat: Add Firebird SQL module #1073
feat: Add Firebird SQL module #1073
Conversation
✅ Deploy Preview for testcontainers-dotnet ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Thank you for the PR. I haven't had the time to review it yet, but I will do so in the coming days. |
pinned version to v4.0
Thank you for addressing the comments. I have made some minor changes to ensure the module aligns with the other modules. I left three additional comments, and happy to merge the PR soon, once those comments are addressed. Thank you again. |
Thank you for your commits. I ran into an issue where the path to the database does not need to be modified with the /firebird/data path when using EntityFramework instead of the raw SqlConnection. I am still trying to figure out why that is. Until I can figure that out we should leave the PR open, it seems I prematurely opened it. |
If we figure out the correct wait strategy, I think we can merge the PR in the meantime (if you like). We can then update the configuration to work with EF afterward. |
That sounds good, I will take a look at open comments and issues (next week) and we can incrementally improve this. |
What does this PR do?
Adding Testcontainers.FirebirdSql project that allows to use Firebird SQL with Testcontainers
Why is it important?
Firebird SQL is not supported for Testcontainers .NET yet.
There is support for Testcontainers Java on the Firebird Repository (https://github.com/FirebirdSQL/firebird-testcontainers-java) which these changes are based on.
Related issues
none
How to test this PR
I created unit tests that test against the four tagged versions 2.5-ss, 2.5-sc, 3.0, 4.0
This is because the 2.5 versions behave differently and as such I wanted to ensure all the currently available versions will work.
Comment
The code is based on the implementation of the MsSql project and the mentioned firebird-testcontainers-java repository. I am open to discuss if this is the right place or rather the firebird repository.