0a3b05789e
AddOn 先前 tests=0。新增: - composer.json(dev 依賴 + phpunit/phpcs script) - phpunit.xml(failOnWarning=true) - tests/bootstrap.php:直接 require 核心 plugin 的 unit bootstrap,避免複製 ~700 行 WP stub,再載入本 AddOn 的類別;補 trait wrapper 與自動 WPDO_ alias (includes/back-compat-aliases.php 掛在 plugins_loaded:7,PHPUnit 下不會跑) - tests/unit/ 25 個測試 + WpdbMockTrait(自 A 移植) 生產碼一併修對外契約:interface-tmdo-hp-adapter.php 改為先宣告空的 WPDO_HivePress_Adapter、再讓 TMDO_HivePress_Adapter extends 它(PHP 無法 class_alias 介面,只有繼承能讓 instanceof WPDO_HivePress_Adapter 對 implements TMDO_ 名稱的 adapter 成立)。與核心 interface-entity-adapter.php 同一模式。這也讓第三方自訂 adapter 用舊介面名仍可通過核心檢查。 145 tests / 357 assertions GREEN Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TbG1keQQ7XBa7qMQY16KCY
74 lines
2.7 KiB
PHP
74 lines
2.7 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Tests for WPDO_HivePress_Memberships_Adapter.
|
|
*
|
|
* @covers WPDO_HivePress_Memberships_Adapter
|
|
*/
|
|
class HivePressMembershipsAdapterTest extends TestCase {
|
|
|
|
private WPDO_HivePress_Memberships_Adapter $adapter;
|
|
|
|
protected function setUp(): void {
|
|
// Reset Schema_Registry singleton via reflection.
|
|
$reflect = new ReflectionClass( WPDO_Schema_Registry::class );
|
|
$prop = $reflect->getProperty( 'instance' );
|
|
$prop->setAccessible( true );
|
|
$prop->setValue( null, null );
|
|
|
|
$this->adapter = new WPDO_HivePress_Memberships_Adapter();
|
|
}
|
|
|
|
public function test_implements_adapter_interface(): void {
|
|
$this->assertInstanceOf( WPDO_HivePress_Adapter::class, $this->adapter );
|
|
}
|
|
|
|
public function test_identity(): void {
|
|
$this->assertSame( 'hivepress-memberships', $this->adapter->plugin_slug() );
|
|
$this->assertSame( 'HivePress\\Memberships\\Plugin', $this->adapter->detection_class() );
|
|
$this->assertSame( 'HIVEPRESS_MEMBERSHIPS_VERSION', $this->adapter->detection_const() );
|
|
$this->assertSame( '2.0.0', $this->adapter->minimum_addon_version() );
|
|
}
|
|
|
|
public function test_on_register_fields_registers_three_hot_fields(): void {
|
|
$registry = WPDO_Schema_Registry::instance();
|
|
$this->adapter->on_register_fields( $registry );
|
|
|
|
// Plan fields.
|
|
$expire_period = $registry->get_field( 'hp_membership_plan', 'hp_expire_period' );
|
|
$this->assertSame( 'hot', $expire_period['zone'] );
|
|
$this->assertStringContainsString( 'int', $expire_period['data_type'] );
|
|
|
|
$primary = $registry->get_field( 'hp_membership_plan', 'hp_primary' );
|
|
$this->assertSame( 'hot', $primary['zone'] );
|
|
$this->assertTrue( (bool) $primary['indexed'] );
|
|
|
|
// Membership field — the hottest path.
|
|
$expired = $registry->get_field( 'hp_membership', 'hp_expired_time' );
|
|
$this->assertSame( 'hot', $expired['zone'] );
|
|
$this->assertTrue( (bool) $expired['indexed'] );
|
|
$this->assertStringContainsString( 'bigint', $expired['data_type'] );
|
|
}
|
|
|
|
public function test_doctor_check_reports_missing_tables_in_stub_env(): void {
|
|
$result = $this->adapter->doctor_check();
|
|
$this->assertFalse( $result['ok'] );
|
|
$this->assertArrayHasKey( 'hp_membership_plan', $result['details'] );
|
|
$this->assertArrayHasKey( 'hp_membership', $result['details'] );
|
|
}
|
|
|
|
public function test_score_aggregates_to_perfect_ten(): void {
|
|
$score = $this->adapter->suitability_score();
|
|
$this->assertSame( 10.0, $score['aggregate'] );
|
|
}
|
|
|
|
public function test_migrations_lists_both_hot_modules(): void {
|
|
$mods = $this->adapter->migrations();
|
|
$this->assertContains( 'hot_hp_membership_plan', $mods );
|
|
$this->assertContains( 'hot_hp_membership', $mods );
|
|
}
|
|
}
|