Files
laralog/tests/Feature/MembershipFlowTest.php
T
ak 8ef250ba80 feat: 前台 paywall——整篇锁定渲染付费墙,付费块替换为 teaser
- membership/post.rendered 过滤:整篇锁定(members_only)渲染 paywall 视图(封面+标题+价格+单篇解锁/开通会员按钮,游客引导登录);[paid] 块替换为带解锁按钮的 teaser;替换改用 preg_replace_callback 避免 $ 转义问题
- 视图放 resources/views/membership/(主题同名文件可覆盖),两主题补充 .paywall/.paid-teaser 样式
- 修复泄漏:excerpt_or_fallback 对 members_only 文章不再回退截取正文,防止内容泄漏到 paywall 与 SEO meta
- 测试:更新 teaser 断言,新增 guest 见 paywall、登录用户见解锁/会员按钮
2026-08-12 01:02:10 +08:00

228 lines
7.8 KiB
PHP

<?php
namespace Tests\Feature;
use App\Models\Post;
use App\Models\Setting;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Plugins\Neatstudio\Membership\Models\MembershipPlan;
use Plugins\Neatstudio\Membership\Models\Subscription;
use Plugins\Neatstudio\Payment\Models\Payment;
use Tests\TestCase;
class MembershipFlowTest extends TestCase
{
use RefreshDatabase;
private User $user;
private MembershipPlan $plan;
protected function setUp(): void
{
parent::setUp();
$this->seed();
Setting::set('pay_sandbox', '1');
$this->user = User::create([
'name' => '测试会员',
'email' => 'member@test.com',
'password' => bcrypt('password'),
]);
$this->plan = MembershipPlan::create([
'name' => '月付会员',
'slug' => 'monthly',
'price' => 9900,
'duration_days' => 30,
'permissions' => ['read_members_only'],
'active' => true,
]);
}
public function test_membership_page_lists_plans(): void
{
$this->get('/membership')->assertOk()->assertSee('月付会员');
}
public function test_subscribe_creates_payment_and_redirects(): void
{
$this->actingAs($this->user)
->post('/membership/'.$this->plan->id.'/subscribe')
->assertRedirect();
$payment = Payment::query()->where('user_id', $this->user->id)->first();
$this->assertNotNull($payment);
$this->assertSame('pending', $payment->status);
$this->assertTrue($payment->payable->is($this->plan));
$this->assertNull($payment->description);
}
public function test_sandbox_payment_activates_subscription(): void
{
$this->actingAs($this->user)->post('/membership/'.$this->plan->id.'/subscribe');
$payment = Payment::query()->where('user_id', $this->user->id)->first();
$this->actingAs($this->user)->get('/pay/checkout/'.$payment->id)->assertRedirect();
$this->actingAs($this->user)->post('/pay/sandbox/'.$payment->order_no.'/confirm')->assertRedirect();
$payment->refresh();
$this->assertSame('paid', $payment->status);
$subscription = Subscription::query()->where('user_id', $this->user->id)->first();
$this->assertNotNull($subscription);
$this->assertTrue($subscription->isActive());
}
public function test_paid_content_hidden_for_guest_and_visible_for_member(): void
{
$post = Post::create([
'title' => '付费文章',
'slug' => 'paid-post',
'content' => "公开内容\n\n[paid]\n付费隐藏内容\n[/paid]",
'content_format' => 'markdown',
'status' => 'published',
'published_at' => now(),
]);
// 游客:付费部分被替换为 teaser
$this->get('/posts/paid-post.shtml')
->assertOk()
->assertDontSee('付费隐藏内容')
->assertSee('本文包含付费内容')
->assertSee('登录后查看');
// 会员:可见
$this->actingAs($this->user)->post('/membership/'.$this->plan->id.'/subscribe');
$payment = Payment::query()->where('user_id', $this->user->id)->first();
$this->actingAs($this->user)->post('/pay/sandbox/'.$payment->order_no.'/confirm');
$this->actingAs($this->user)->get('/posts/paid-post.shtml')
->assertOk()
->assertSee('付费隐藏内容');
}
public function test_unlock_post_creates_payment_with_payable_and_grants_access(): void
{
$post = Post::create([
'title' => '单篇付费',
'slug' => 'single-paid',
'content' => '付费内容正文',
'content_format' => 'markdown',
'status' => 'published',
'published_at' => now(),
// members_only:非会员被拦截,可单篇支付解锁
'meta' => ['price' => 500, 'members_only' => true],
]);
$this->actingAs($this->user)
->post('/posts/'.$post->id.'/unlock')
->assertRedirect();
$payment = Payment::query()->where('user_id', $this->user->id)->first();
$this->assertNotNull($payment);
$this->assertTrue($payment->payable->is($post));
$this->assertSame(500, $payment->amount);
$this->assertStringContainsString('单篇付费', $payment->payable_label);
$this->assertNotNull($payment->payable_url);
// 沙箱支付后写入解锁用户
$this->actingAs($this->user)->post('/pay/sandbox/'.$payment->order_no.'/confirm');
$post->refresh();
$this->assertContains($this->user->id, $post->meta['unlocked_user_ids']);
}
public function test_legacy_order_without_payable_shows_placeholder(): void
{
$payment = Payment::create([
'order_no' => 'LEGACY0001',
'user_id' => $this->user->id,
'subject' => '历史订单',
'amount' => 100,
'status' => 'paid',
'paid_at' => now(),
]);
$this->assertSame('—', $payment->payable_label);
$this->assertNull($payment->payable_url);
}
public function test_unlock_post_skips_payment_when_already_unlocked(): void
{
$post = Post::create([
'title' => '已解锁',
'slug' => 'already-unlocked',
'content' => '内容',
'content_format' => 'markdown',
'status' => 'published',
'published_at' => now(),
'meta' => ['price' => 500, 'unlocked_user_ids' => [$this->user->id]],
]);
$this->actingAs($this->user)
->post('/posts/'.$post->id.'/unlock')
->assertRedirect('/posts/already-unlocked.shtml');
$this->assertSame(0, Payment::query()->count());
}
public function test_subscribe_skips_payment_when_plan_already_active(): void
{
Subscription::create([
'user_id' => $this->user->id,
'membership_plan_id' => $this->plan->id,
'status' => 'active',
'starts_at' => now(),
'ends_at' => now()->addDays(30),
]);
$this->actingAs($this->user)
->post('/membership/'.$this->plan->id.'/subscribe')
->assertRedirect(route('membership.mine'));
$this->assertSame(0, Payment::query()->count());
}
public function test_members_only_post_shows_paywall_to_guest(): void
{
$post = Post::create([
'title' => '会员专享文章',
'slug' => 'members-only-post',
'content' => '这是会员才能看到的正文内容',
'content_format' => 'markdown',
'status' => 'published',
'published_at' => now(),
'meta' => ['members_only' => true, 'price' => 500],
]);
$this->get('/posts/members-only-post.shtml')
->assertOk()
->assertSee('登录后解锁')
->assertSee('单篇解锁')
->assertSee('会员专享文章')
->assertDontSee('这是会员才能看到的正文内容');
}
public function test_members_only_post_paywall_shows_unlock_buttons_to_user(): void
{
$post = Post::create([
'title' => '会员专享文章2',
'slug' => 'members-only-post-2',
'content' => '正文内容不可见',
'content_format' => 'markdown',
'status' => 'published',
'published_at' => now(),
'meta' => ['members_only' => true, 'price' => 9900],
]);
$this->actingAs($this->user)->get('/posts/members-only-post-2.shtml')
->assertOk()
->assertSee('单篇解锁')
->assertSee('开通会员')
->assertDontSee('正文内容不可见');
}
}