Require Ladill Pay only for Merchant checkouts.
Deploy Ladill Merchant / deploy (push) Successful in 51s

Remove custom/owner payment gateway option and always route customer payments through Ladill Pay with platform fees.
This commit is contained in:
isaacclad
2026-07-24 14:15:39 +00:00
parent ce41c1ece7
commit 0a3e142f47
3 changed files with 10 additions and 44 deletions
+5 -23
View File
@@ -4,6 +4,7 @@ namespace Tests\Feature;
use App\Models\PaymentGatewaySetting;
use App\Models\User;
use App\Services\Billing\PlanEntitlementService;
use App\Services\Payments\MerchantGatewayService;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Http;
@@ -13,39 +14,20 @@ class PaymentGatewayPolicyTest extends TestCase
{
use RefreshDatabase;
public function test_free_cannot_activate_saved_owner_gateway_but_pro_can(): void
public function test_owner_gateway_is_never_used_even_with_saved_keys(): void
{
config(['billing.api_url' => 'https://ladill.com/api/billing', 'billing.api_key' => 'merchant-test']);
$owner = User::factory()->create(['public_id' => 'usr_merchant_policy']);
$setting = PaymentGatewaySetting::create([
PaymentGatewaySetting::create([
'owner_ref' => $owner->public_id, 'provider' => 'paystack',
'public_key' => 'pk_test_saved', 'secret_key' => 'sk_test_saved', 'is_active' => true,
]);
Http::fakeSequence()
->push(['data' => ['effective_plan' => 'free', 'features' => []]])
->push(['data' => ['effective_plan' => 'pro', 'features' => ['custom_payment_gateway']]])
->push(['data' => ['effective_plan' => 'pro', 'features' => ['custom_payment_gateway']]]);
$this->assertFalse(app(MerchantGatewayService::class)->shouldUseOwnerGateway($owner));
$setting->update(['is_active' => false]);
$this->assertFalse(app(MerchantGatewayService::class)->shouldUseOwnerGateway($owner));
$setting->update(['is_active' => true]);
$this->assertTrue(app(MerchantGatewayService::class)->shouldUseOwnerGateway($owner));
}
public function test_invalid_pro_credentials_fall_back_to_ladill_pay(): void
{
config(['billing.api_url' => 'https://ladill.com/api/billing', 'billing.api_key' => 'merchant-test']);
Http::fake(['*/suite-entitlements*' => Http::response(['data' => [
'effective_plan' => 'business', 'features' => ['custom_payment_gateway'],
'effective_plan' => 'enterprise', 'features' => ['custom_payment_gateway'],
]])]);
$owner = User::factory()->create(['public_id' => 'usr_merchant_invalid']);
PaymentGatewaySetting::create([
'owner_ref' => $owner->public_id, 'provider' => 'paystack',
'public_key' => 'invalid', 'secret_key' => 'invalid', 'is_active' => true,
]);
$this->assertFalse(app(PlanEntitlementService::class)->canUseCustomPaymentGateway($owner));
$this->assertFalse(app(MerchantGatewayService::class)->shouldUseOwnerGateway($owner));
}
}