-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Unable to upgrade to v3 as all tests fail due to database name #33
Comments
I think I figured it out - I believe it's caused by the My guess is that when Paratest loads (Pest) it also tries to register a macro on the request called I think the fix would be to rename this to something else. |
@Sammyjo20 Are you able to replicate this on a plane laravel 10 installation with just this package installed and running parallel testing? The macro is only registered if another one is not already added and there is even logging occurring if that is the case: |
Hey @bilfeldt I had another look today and it turns out for us it's caused by the I wonder if it's worth just removing the warning? Note: In the screenshot one of the macro names has been changed (this was just me debugging) |
@Sammyjo20 thanks for the debugging. So there are two questions that should be addressed first here:
You might very well be right that the logs should be removed. But right now they are there because of a problem - namely that the macros are already registered. Logging issuesIf we start with the logging. Everything called in the boot method of service provider should have access to the log facade:
So my first question is what error you are getting? Macro already registeredCan you in any way see where this was registered the first time? My guess is that it is registered in the exact same file, but that is for some reason being called twice. |
So I believe the issue/behaviour is called with Parallel tests because this also baffled me once - I thought that the service providers were only loaded once and then kept in memory - but it turns out that after each test the application is terminated and then rebooted again. You can see this behaviour by creating a fresh Laravel app and putting a As to why the Logs are breaking our database name - I really have no idea. I think your check to see if the Macro has already been registered is correct but due to the nature of testing I think it would be fine to remove the warning. |
Yes I believe it's just re-running the same file/provider for each test where it is seeing it is registered - which to me is okay and normal, so your check to see if it's registered is good |
I must admit I don't get it. I just ran this package with parallel testing in another project without any issues. That the app is booted and terminated again should not cause any problems. So far, this logic seems okay in my view and the error seems to be related to your codebase and not a plane parallel test suite I am afraid. What if you write |
Hey @bilfeldt I've just tested putting |
Oh yes it really is. We can setup a videocall on monday if that makes debugging easier? It would be fun to try to elliminate other stuff from you app. What if you create a two dummy test classe and run them in parallel (you can add the |
Could it be that your app adds some global log context like the user and then there is a logging happening before the users table is created? |
Closes due to inactivity |
Subject of the issue
Hi... me again 😆
I was trying to upgrade to v3 and when running all tests in parallel we're getting a weird issue:
It looks like the name of the database is being changed and is causing every test to fail in our application. Switching back down to v2 works.
Your environment
We're running Laravel 10 and PHP 8.1
Steps to reproduce
Tell us how to reproduce this issue in steps:
Expected behaviour
Run tests
Actual behaviour
As above
The text was updated successfully, but these errors were encountered: