trypost/tests/Feature/Social/MastodonControllerTest.php
Paulo Castellano 17a091975d fix: merge-readiness — close two billing/network bugs, harden tests
Bugs (both with regression tests):
- OnboardingController::store now guards already-subscribed accounts (mirrors
  index), preventing a second Stripe Checkout / double subscription if a
  subscribed user re-POSTs /onboarding.
- SocialAccountObserver: drop the `platform_user_id != …` clause from the
  creating-time one-per-network check. On create there is no "self" to exclude,
  so it only weakened the rule — the same account connected via two network
  variants (e.g. Instagram standalone + via Facebook, same id) could slip a
  second account into the network. Now any account in the network blocks.

Robustness:
- CreateWorkspace wraps create + member attach + switchWorkspace in a
  transaction (cache-forget / quantity-sync run after), so a partial failure
  can't leave an orphan workspace that inflates the Stripe seat count — covers
  both the signup and the add-workspace paths.

Test honesty & coverage:
- Scope the ten "connect multiple <platform> accounts" tests to self-hosted
  mode (config + name); they only passed because the test env defaults
  SELF_HOSTED=true, and in cloud the one-per-network rule blocks them.
- network_taken popup now has controller-level tests on all six OAuth
  controllers (added Threads, YouTube, LinkedInPage, and a new
  InstagramFacebook test file; LinkedInPage/InstagramFacebook also exercise
  variant collapse).
- Wiring tests that creating/deleting a workspace actually calls
  syncWorkspaceQuantity (guards per-seat billing against silent breakage).
- Strengthen TrialLengthTest to assert the configured length reaches
  trial_ends_at; add a same-id network-variant block test.
2026-06-22 09:26:31 -03:00

213 lines
7.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Enums\SocialAccount\Platform;
use App\Enums\SocialAccount\Status;
use App\Enums\UserWorkspace\Role;
use App\Models\SocialAccount;
use App\Models\User;
use App\Models\Workspace;
use Illuminate\Support\Facades\Http;
beforeEach(function () {
$this->user = User::factory()->create();
$this->workspace = Workspace::factory()->create(['user_id' => $this->user->id]);
$this->user->update(['current_workspace_id' => $this->workspace->id]);
$this->workspace->members()->attach($this->user->id, ['role' => Role::Member->value]);
});
test('mastodon connect page can be rendered', function () {
$response = $this->actingAs($this->user)->get(route('app.social.mastodon.connect'));
$response->assertOk();
});
test('user can initiate mastodon oauth flow', function () {
Http::fake([
'https://mastodon.social/api/v1/apps' => Http::response([
'client_id' => 'test-client-id',
'client_secret' => 'test-client-secret',
'id' => '12345',
'name' => config('app.name'),
'redirect_uri' => route('app.social.mastodon.callback'),
], 200),
]);
$response = $this->actingAs($this->user)
->withHeader('X-Inertia', 'true')
->post(route('app.social.mastodon.authorize'), [
'instance' => 'https://mastodon.social',
]);
$response->assertStatus(409); // Inertia::location returns 409 with X-Inertia header
expect(session('mastodon_instance'))->toBe('https://mastodon.social');
expect(session('mastodon_client_id'))->toBe('test-client-id');
expect(session('mastodon_client_secret'))->toBe('test-client-secret');
});
test('user cannot connect to invalid mastodon instance', function () {
Http::fake([
'https://invalid-instance.com/api/v1/apps' => Http::response([], 404),
]);
$response = $this->actingAs($this->user)->post(route('app.social.mastodon.authorize'), [
'instance' => 'https://invalid-instance.com',
]);
$response->assertRedirect();
$response->assertSessionHasErrors('instance');
});
test('mastodon oauth callback creates account', function () {
// Setup session as if OAuth flow was initiated
session([
'mastodon_instance' => 'https://mastodon.social',
'mastodon_client_id' => 'test-client-id',
'mastodon_client_secret' => 'test-client-secret',
'mastodon_oauth_state' => 'test-state',
'social_connect_workspace' => $this->workspace->id,
]);
Http::fake([
'https://mastodon.social/oauth/token' => Http::response([
'access_token' => 'test-access-token',
'token_type' => 'Bearer',
'scope' => 'read:accounts write:statuses write:media',
'created_at' => time(),
], 200),
'https://mastodon.social/api/v1/accounts/verify_credentials' => Http::response([
'id' => '123456789',
'username' => 'testuser',
'acct' => 'testuser',
'display_name' => 'Test User',
'avatar' => null,
], 200),
]);
$response = $this->actingAs($this->user)->get(route('app.social.mastodon.callback', [
'code' => 'test-auth-code',
'state' => 'test-state',
]));
$response->assertOk();
$response->assertViewIs('auth.social-callback');
$response->assertViewHas('success', true);
$this->assertDatabaseHas('social_accounts', [
'workspace_id' => $this->workspace->id,
'platform' => Platform::Mastodon->value,
'platform_user_id' => '123456789',
'username' => 'testuser',
'status' => Status::Connected->value,
]);
$account = SocialAccount::where('platform', Platform::Mastodon->value)->first();
expect($account->scopes)->toBe(['read:accounts', 'write:statuses', 'write:media']);
});
test('mastodon callback fails with invalid state', function () {
session([
'mastodon_instance' => 'https://mastodon.social',
'mastodon_client_id' => 'test-client-id',
'mastodon_client_secret' => 'test-client-secret',
'mastodon_oauth_state' => 'correct-state',
'social_connect_workspace' => $this->workspace->id,
]);
$response = $this->actingAs($this->user)->get(route('app.social.mastodon.callback', [
'code' => 'test-auth-code',
'state' => 'wrong-state',
]));
$response->assertOk();
$response->assertViewHas('success', false);
$this->assertDatabaseMissing('social_accounts', [
'workspace_id' => $this->workspace->id,
'platform' => Platform::Mastodon->value,
]);
});
test('mastodon callback fails with expired session', function () {
// No session data - simulating expired session
$response = $this->actingAs($this->user)->get(route('app.social.mastodon.callback', [
'code' => 'test-auth-code',
'state' => 'test-state',
]));
$response->assertOk();
$response->assertViewHas('success', false);
$response->assertViewHas('message', 'Session expired. Please try again.');
});
test('user can connect multiple mastodon accounts in self-hosted mode', function () {
config()->set('trypost.self_hosted', true);
SocialAccount::factory()->mastodon()->create([
'workspace_id' => $this->workspace->id,
'platform_user_id' => '123456789',
]);
session([
'mastodon_instance' => 'https://mastodon.social',
'mastodon_client_id' => 'test-client-id',
'mastodon_client_secret' => 'test-client-secret',
'mastodon_oauth_state' => 'test-state',
'social_connect_workspace' => $this->workspace->id,
]);
Http::fake([
'https://mastodon.social/oauth/token' => Http::response([
'access_token' => 'new-access-token',
'token_type' => 'Bearer',
], 200),
'https://mastodon.social/api/v1/accounts/verify_credentials' => Http::response([
'id' => '987654321',
'username' => 'anotheruser',
'acct' => 'anotheruser',
'display_name' => 'Another User',
], 200),
]);
$response = $this->actingAs($this->user)->get(route('app.social.mastodon.callback', [
'code' => 'test-auth-code',
'state' => 'test-state',
]));
$response->assertOk();
$response->assertViewHas('success', true);
expect($this->workspace->socialAccounts()->where('platform', Platform::Mastodon)->count())->toBe(2);
});
test('mastodon connection validates instance url', function () {
$response = $this->actingAs($this->user)->post(route('app.social.mastodon.authorize'), [
'instance' => 'not-a-valid-url',
]);
$response->assertSessionHasErrors('instance');
});
test('mastodon works with custom instances', function () {
Http::fake([
'https://techhub.social/api/v1/apps' => Http::response([
'client_id' => 'custom-client-id',
'client_secret' => 'custom-client-secret',
'id' => '67890',
'name' => config('app.name'),
], 200),
]);
$response = $this->actingAs($this->user)
->withHeader('X-Inertia', 'true')
->post(route('app.social.mastodon.authorize'), [
'instance' => 'https://techhub.social',
]);
$response->assertStatus(409); // Inertia::location with X-Inertia header
expect(session('mastodon_instance'))->toBe('https://techhub.social');
});