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.
22 lines
618 B
PHP
22 lines
618 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Actions\User\CreateUser;
|
|
|
|
test('the default trial length is 8 days', function () {
|
|
expect(config('cashier.trial_days'))->toBe(8);
|
|
});
|
|
|
|
test('signup grants a trial of cashier.trial_days in no-card mode', function () {
|
|
config(['trypost.billing.require_card_for_trial' => false]);
|
|
|
|
$user = CreateUser::execute([
|
|
'name' => 'Trial User',
|
|
'email' => 'trial@example.com',
|
|
'password' => 'secret123',
|
|
]);
|
|
|
|
expect($user->account->trial_ends_at->toDateString())
|
|
->toBe(now()->addDays(config('cashier.trial_days'))->toDateString());
|
|
});
|