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

Feature: Add a trait for easy testing applications that use the Passport package #1806

Conversation

alizeinodin
Copy link

@alizeinodin alizeinodin commented Feb 27, 2025

In testing, when we use the Sanctum package, everything is easy. We can to use the Sanctum::actingAs() method for testing But in the Passport, We must config our client save it in the database, and then write our test. This trait (WithPersoanlClient) will ease our work and like the RefreshDatabase trait can be used in our test. A Personal client is created for the user and without any config user can write a test and use Passport::actingAs().

The developer must define two properties in the .env file:

PASSPORT_PERSONAL_ACCESS_CLIENT_ID=[client_id]

PASSPORT_PERSONAL_ACCESS_CLIENT_SECRET=[client-secret]

These values will be created for the user when installing the Passport in personal client mode.

@alizeinodin alizeinodin changed the title Add WithPersonalClient trait Feature: Add a trait for easy testing applications that use the Passport package Feb 27, 2025
@hafezdivandari
Copy link
Contributor

But a client is not needed when using Passport::actingAs(), what am I missing here? You may refer to docs:

use App\Models\User;
use Laravel\Passport\Passport;
 
public function test_servers_can_be_created(): void
{
    Passport::actingAs(
        User::factory()->create(),
        ['create-servers']
    );
 
    $response = $this->post('/api/create-server');
 
    $response->assertStatus(201);
}

@alizeinodin
Copy link
Author

But a client is not needed when using Passport::actingAs(), what am I missing here? You may refer to docs:

use App\Models\User;
use Laravel\Passport\Passport;
 
public function test_servers_can_be_created(): void
{
    Passport::actingAs(
        User::factory()->create(),
        ['create-servers']
    );
 
    $response = $this->post('/api/create-server');
 
    $response->assertStatus(201);
}

When we want to test auth routes, this error returns:
Attempt to read property "secret" on null

This issue was solved by this trait.

@hafezdivandari
Copy link
Contributor

Would you please share your test and/or the exception's stack trace?

@taylorotwell
Copy link
Member

Thanks for your pull request to Laravel!

Unfortunately, I'm going to delay merging this code for now. To preserve our ability to adequately maintain the framework, we need to be very careful regarding the amount of code we include.

If applicable, please consider releasing your code as a package so that the community can still take advantage of your contributions!

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.

3 participants