Are anonymous functions evaluated before ->assertFormField*?
The user being tested does not have permissions to edit
$testUser
's email. It works correctly via front end.
If ->disabled()
is set without the anonymous function the test passes. But with the anonymous function it always fails.
I am assuming that the test is ran before the anonymous function executes, or am I doing something wrong.
Test:
Field being tested:
17 Replies
The user is not passed in with tests, you need define the user outside the livewire component and assert with the pest actingAs() helper.
Ie, in test you define a user, then they will apply for that test.
For brevity, I did not include that part of the test. But, yes that is done.
But your code is passing in a user to the livewire component, which doesn’t make sense.
I only included necessary part.
Right, but there should be no need to pass test user into the component.
Unless that is not the authenticated user.
Even if I return false directly from an anonymous function is fails.
The admin (acting as) does not have permissions to edit this user's email. Therefor the email field is disabled. That is the point of the test.
I have helper functions that set the necessary user for the test.
Are admins also registered users?
I could be wrong, sounds like the policy might be off.
No, there are only single roles in this application.
The anonymous functions are not being evaluated before the form test.
This still fails:
Maybe it’s because you are asserting twice that the form field isVisible for the email, based on the code you shared?
I tried both, even if I only evaluate it fails
Maybe it’s not actually disabled. Something could be overriding it. That’s why I’m asking so many questions.
Just trying to help with the limited insight I have to the code.
The front end is working as expected. That's why I'm trying to figure out why the tests are not. 🤷♂️
In the image about, the email field is disabled.
In the image about, the email field is disabled.

Don’t get me wrong, could be a bug just not seeing it at the moment.
I'm having the same issue with testing readonly settings also.
That is why I was wondering if there was something I didn't have correct, like waiting for the form to render first so the functions were able to execute.
Not sure. Sorry. Haven’t come across anything being off as long as the user and permissions are set up correctly. If you have repo I can see I can explore further.
I'm trying to make sure something didn't get out of sync between dev and testing database
Yeah, I'm seeing some differences between the two repositories which I'm sure will help some of these anomalies. I'm still trying to figure out why
->disabled(fn () => true)
isn't returning as disabled.
So, if I uncomment $this->withoutVite();
in TestCase->setup() everything works correctly. Not sure why that would interfere, but there is a difference.Hard to say. Something could be overriding it.