db_version(), '5.5.3', '>=' ) ) { $wpdb->query( 'SET default_storage_engine = InnoDB' ); } else { $wpdb->query( 'SET storage_engine = InnoDB' ); } $wpdb->select( DB_NAME, $wpdb->dbh ); echo 'Installing...' . PHP_EOL; $wpdb->query( 'SET foreign_key_checks = 0' ); foreach ( $wpdb->tables() as $table => $prefixed_table ) { //phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared $wpdb->query( "DROP TABLE IF EXISTS $prefixed_table" ); } foreach ( $wpdb->tables( 'ms_global' ) as $table => $prefixed_table ) { //phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared $wpdb->query( "DROP TABLE IF EXISTS $prefixed_table" ); // We need to create references to ms global tables. if ( $multisite ) { $wpdb->$table = $prefixed_table; } } $wpdb->query( 'SET foreign_key_checks = 1' ); // Prefill a permalink structure so that WP doesn't try to determine one itself. add_action( 'populate_options', '_set_default_permalink_structure_for_tests' ); wp_install( WP_TESTS_TITLE, 'admin', WP_TESTS_EMAIL, true, null, 'password' ); // Delete dummy permalink structure, as prefilled above. if ( ! is_multisite() ) { delete_option( 'permalink_structure' ); } remove_action( 'populate_options', '_set_default_permalink_structure_for_tests' ); if ( $multisite ) { echo 'Installing network...' . PHP_EOL; define( 'WP_INSTALLING_NETWORK', true ); $title = WP_TESTS_TITLE . ' Network'; $subdomain_install = false; install_network(); $error = populate_network( 1, WP_TESTS_DOMAIN, WP_TESTS_EMAIL, $title, '/', $subdomain_install ); if ( is_wp_error( $error ) ) { wp_die( $error ); } $wp_rewrite->set_permalink_structure( '' ); }