High-level Codeception modules for writing WooCommerce acceptance tests on top of
lucatume/wp-browser.
This library gives test authors a vocabulary of WooCommerce-aware actor methods —
haveCouponInDatabase, addProductToCart, seeOrderStatus — so you can express
store behaviour directly instead of hand-rolling SQL and CSS selectors. Order
storage (HPOS vs. legacy) is detected and encapsulated for you, so the same test
runs unchanged in both modes.
composer require --dev aztecweb/aztecweb-wp-browser:^0.1.0Then enable the modules in your acceptance suite (e.g. tests/acceptance.suite.yml).
WPDb and WPWebDriver must come first, since the Aztec modules build on top of
them:
# Default — short form via the Class Alias Trick
modules:
enabled:
- WPDb
- WPWebDriver
- WooCommerceDb
- WooCommerceWebDriver
config:
WPDb:
# ...your WPDb config
WPWebDriver:
# ...your WPWebDriver configThe short names WooCommerceDb and WooCommerceWebDriver are registered at load
time via class_alias (the Class Alias Trick, see
ADR-0004). If another package already owns
Codeception\Module\WooCommerceDb, the alias is skipped (with a warning) and you
should reference the modules by their fully-qualified class names instead:
# Fallback if a class_alias collision is detected (rare)
modules:
enabled:
- WPDb
- WPWebDriver
- \Aztec\WPBrowser\WooCommerce\Module\WooCommerceDb
- \Aztec\WPBrowser\WooCommerce\Module\WooCommerceWebDriverAfter enabling the modules, rebuild the actor classes:
vendor/bin/codecept buildpublic function customerCheckoutWithCoupon(AcceptanceTester $I): void
{
$productId = $I->haveProductInDatabase(['post_title' => 'Test Product']);
$I->havePercentageCouponInDatabase('SAVE10', 10.0);
$I->amOnCartPage();
$I->addProductToCart($productId);
$I->seeProductInCart($productId);
$I->amOnCheckoutPage();
$I->applyCouponOnCheckout('SAVE10');
$I->seeCouponApplied('SAVE10');
}HPOS (High-Performance Order Storage) is auto-detected from the
woocommerce_custom_orders_table_enabled option; no consumer configuration is
needed. The same order and subscription methods work whether your site uses the
wc_orders tables or the legacy wp_posts storage. See
ADR-0005 for details.
The library favours composition over inheritance: each WooCommerce module
composes domain-specific method traits rather than extending a base module
(ADR-0002). Capabilities are split
one module per plugin concern — WooCommerceDb, WooCommerceWebDriver, and
the Action Scheduler subnamespace
(ADR-0003) — and HPOS detection
is encapsulated behind the order storage interfaces so tests stay storage-agnostic.
See CONTEXT.md for shared vocabulary and docs/adr/
for the full design rationale.
This repo runs its own test suite inside a self-contained Docker image via the
bin/test wrapper, which bind-mounts the repo at /var/www/html.
bin/test composer install # install deps (also installs the pre-push hook)
bin/test bash resources/install.sh # bootstrap the SQLite WordPress site (idempotent)
bin/test codecept build # rebuild actor classes after method signature changes
bin/test codecept run # run all suites
bin/test codecept run acceptance CouponCest # run a single Cest
bin/serve # start WP-CLI server at http://localhost:8080/ for manual browsing
composer check # validate composer.json, run PHPStan and PHPCSThe port defaults to 8080 and can be overridden by setting WP_SERVER_PORT in a .env file.
composer install wires up the pre-push hook by running
git config core.hooksPath .githooks (the post-install-cmd script). The hook
(.githooks/pre-push) runs only the tests impacted by your
changed files, and falls back to the full acceptance suite when shared
infrastructure changes. In an emergency you can bypass it with
git push --no-verify — but CI is the authoritative gate.
act lets you run GitHub Actions workflows on
your machine without pushing to GitHub.
act push -j acceptance \
--network bridge \
-s GITHUB_TOKEN=$(gh auth token)--network bridge gives the container its own isolated network namespace,
preventing port conflicts between the host and the PHP server started by
Codeception inside the container.
The workflow matrix covers PHP 8.0 and 8.4. To target a single version:
act push -j acceptance \
--matrix php_version:8.0 \
--network bridge \
-s GITHUB_TOKEN=$(gh auth token)Note:
GITHUB_TOKENis required to pull the runner image from GHCR.$(gh auth token)uses your existing GitHub CLI session. Alternatively, pass a personal access token withread:packagesscope.
Contributions go through pull request: review is required, CI must be green, and
new public methods on the modules and method traits must carry the full PHPDoc
skeleton (see the docblock convention in CLAUDE.md, which also
documents the guidelines for AI coding assistants).
MIT.
See CHANGELOG.md.