upskill-event-manager/wordpress-dev/tests/bootstrap.php
bengizmo 37f7b426b6 feat: Implement auto page creation & fix login E2E tests
Implements automatic creation of required plugin pages (Community Login,
Trainer Registration, Trainer Dashboard) upon plugin activation. This
addresses E2E test failures caused by missing pages in the test
environment.

- Adds activation hook in `hvac-community-events.php` to call
  `hvac_ce_create_required_pages`.
- The callback function checks for existing pages by slug and creates
  them using `wp_insert_post` if missing. Includes debug logging.

Also fixes issues identified during E2E test debugging:
- Corrects fatal error in `includes/community/class-login-handler.php`
  by replacing undefined constant `HVAC_COMMUNITY_EVENTS_PATH` with
  `HVAC_CE_PLUGIN_DIR`.
- Updates `tests/e2e/tests/login.spec.ts` to use the correct selector
  `#wp-submit` for the login form submit button instead of
  `button[type="submit"]`.

Documentation updates:
- Adds `docs/automatic-page-creation-plan.md`.
- Updates `README.md` regarding automatic page creation.
- Updates Memory Bank files (`decisionLog.md`, `progress.md`,
  `activeContext.md`).

Note: Activation hook logging did not appear during WP-CLI activation,
requiring further investigation if page creation issues persist. E2E
test confirmation pending.
2025-03-28 17:18:21 -03:00

59 lines
No EOL
2.7 KiB
PHP

<?php
/**
* PHPUnit bootstrap file for the HVAC Community Events plugin tests.
*/
// Define ABSPATH early if not already defined. Point to WP root in container.
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', '/var/www/html/' );
}
// Define the WordPress test directory. Use environment variable or default to Composer vendor path.
$_tests_dir = getenv( 'WP_TESTS_DIR' );
if ( ! $_tests_dir ) {
$_tests_dir = rtrim( sys_get_temp_dir(), '/\\' ) . '/wordpress-tests-lib'; // Default fallback if vendor path also fails, though less likely now.
}
// Check if the Composer vendor path exists first.
// $_vendor_dir = dirname( ABSPATH ) . '/vendor/wp-phpunit/wp-phpunit'; // Incorrect path calculation
$_vendor_dir = ABSPATH . 'vendor/wp-phpunit/wp-phpunit'; // Use ABSPATH directly
error_log("DEBUG: Checking vendor path: " . $_vendor_dir . '/includes/functions.php'); // ADDED DEBUG
$vendor_exists = file_exists( $_vendor_dir . '/includes/functions.php' );
error_log("DEBUG: Vendor path exists result: " . ($vendor_exists ? 'true' : 'false')); // ADDED DEBUG
if ( $vendor_exists ) {
$_tests_dir = $_vendor_dir;
} else {
error_log("DEBUG: Checking fallback path: " . $_tests_dir . '/includes/functions.php'); // ADDED DEBUG
$fallback_exists = file_exists( $_tests_dir . '/includes/functions.php' );
error_log("DEBUG: Fallback path exists result: " . ($fallback_exists ? 'true' : 'false')); // ADDED DEBUG
if ( ! $fallback_exists ) {
echo "Could not find tests_dir/includes/functions.php, checked $_vendor_dir and $_tests_dir" . PHP_EOL; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
exit( 1 );
}
// If fallback exists, $_tests_dir retains its value (getenv or /tmp)
}
// Define the path to the wp-tests-config.php file using ABSPATH.
// This ensures the main bootstrap script finds it in the WP root.
define( 'WP_TESTS_CONFIG_FILE_PATH', ABSPATH . 'wp-tests-config.php' );
// Give access to tests_add_filter() function.
require_once $_tests_dir . '/includes/functions.php';
/**
* Manually load the plugin being tested.
*/
function _manually_load_plugin() {
// Correct path to the main plugin file using ABSPATH
require ABSPATH . 'wp-content/plugins/hvac-community-events/hvac-community-events.php';
}
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
// Define a constant to indicate that tests are running.
// This allows wp-config.php to skip defining DB constants.
define( 'WP_TESTS_RUNNING', true );
// Start up the WP testing environment.
require $_tests_dir . '/includes/bootstrap.php';
// Define plugin constants if needed for tests
// define( 'HVAC_CE_PLUGIN_DIR', dirname( __DIR__ ) . '/wordpress/wp-content/plugins/hvac-community-events/' );