Files
2meet-data-optimizer-hivepr…/tests/unit/BootstrapTest.php
T
wpdev 0a3b05789e test: 建立 phpunit 測試基建並移植 25 個 HivePress 測試
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
2026-07-31 09:19:01 +08:00

57 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
use PHPUnit\Framework\TestCase;
/**
* Tests for WPDO_HivePress_Bootstrap — orchestration entry point.
*
* @covers WPDO_HivePress_Bootstrap
*/
class HivePressBootstrapTest extends TestCase {
protected function setUp(): void {
WPDO_HivePress_Bootstrap::reset_for_tests();
WPDO_HivePress_Detector::reset_for_tests();
WPDO_HivePress_Conflict_Guard::reset_for_tests();
// Clear detector transient.
unset( $GLOBALS['_wp_options']['_transient_wpdo_hivepress_detector_cache'] );
}
public function test_boot_is_idempotent_on_non_hivepress_site(): void {
WPDO_HivePress_Bootstrap::boot();
$this->assertSame( array(), WPDO_HivePress_Bootstrap::adapters() );
$this->assertSame( array(), WPDO_HivePress_Bootstrap::detected() );
// Second call must not fail or change state.
WPDO_HivePress_Bootstrap::boot();
$this->assertSame( array(), WPDO_HivePress_Bootstrap::adapters() );
}
public function test_adapter_for_returns_null_when_not_booted(): void {
$this->assertNull( WPDO_HivePress_Bootstrap::adapter_for( 'hivepress' ) );
$this->assertNull( WPDO_HivePress_Bootstrap::adapter_for( 'hivepress-reviews' ) );
$this->assertNull( WPDO_HivePress_Bootstrap::adapter_for( '' ) );
}
public function test_reset_clears_internal_state(): void {
WPDO_HivePress_Bootstrap::boot();
WPDO_HivePress_Bootstrap::reset_for_tests();
// After reset boot() should run again; detected() should be re-populated
// (still empty in the test env, but the call must not be skipped).
WPDO_HivePress_Bootstrap::boot();
$this->assertIsArray( WPDO_HivePress_Bootstrap::detected() );
}
public function test_should_bind_filter_short_circuits_binding(): void {
// Even if HivePress were detected, the filter must be honoured.
// We can't fake detection cleanly here without reflection, so instead
// we assert the filter is at least exposed and called: no detection
// → no adapter binding → empty adapters list regardless of filter.
add_filter( 'wpdo_hivepress_should_bind', '__return_false' );
WPDO_HivePress_Bootstrap::boot();
$this->assertSame( array(), WPDO_HivePress_Bootstrap::adapters() );
}
}