无法让 Codeception 在多站点上与 wp_query 一起工作

Cant get Codeception to to work with wp_query on multisite

我正在尝试设置一个测试来计算数据库中自定义 post 的数量,作为更强大测试的第一步,但它无法正常工作。这是测试的副本:

<?php
// codecept run wpunit RWA:CourseModelsTest

namespace RWA;

require_once get_template_directory() . '/models/course.php';

class CourseModelsTest extends \Codeception\TestCase\WPTestCase {
    /**
     * @var \WpunitTester
     */
    protected $tester;

    protected function _before() {

    }

    protected function _after() {
    }

    // tests
    public function testSomeFeature() {

        $query = \Course::count();
        $this->assertEquals( 53, $query );
    }
}

在我的模型中,函数如下所示

public static function count() {
    $args = array(
        'posts_per_page' => -1,
        'offset' => 0,
        'post_type' => 'courses',
        'suppress_filters' => true,
    );
    $query = new \WP_Query( $args );
    return count( $query->posts );
}

但是到了断言的时候,却说53不等于0。

在本地,我是 运行 一个多站点 wordpress 实例,但我不确定这是否会影响设置,或者这是否是我需要在代码接收中配置的额外内容。有人有什么想法吗?

更新: 这是我拥有的一些当前配置文件的副本:

paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
actor_suffix: Tester
modules:
config:
    WPDb:
        dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%'
        user: '%DB_USER%'
        password: '%DB_PASSWORD%'
        dump: 'tests/_data/dump.sql'
        populate: true #import the dump before the tests
        cleanup: false #import the dump between tests
        url: '%WP_URL%'
        urlReplacement: true #replace the hardcoded dump URL with the one above
        tablePrefix: '%TABLE_PREFIX%'
        waitlock: 0
    WPBrowser:
        url: '%WP_URL%'
        adminUsername: '%ADMIN_USERNAME%'
        adminPassword: '%ADMIN_PASSWORD%'
        adminPath: '%WP_ADMIN_PATH%'
    WPFilesystem:
        wpRootFolder: '%WP_ROOT_FOLDER%'
        plugins: '/wp-content/plugins'
        mu-plugins: '/wp-content/mu-plugins'
        themes: '/wp-content/themes'
        uploads: '/wp-content/uploads'
    WPLoader:
        wpRootFolder: "%WP_ROOT_FOLDER%"
        dbName: "%TEST_DB_NAME%"
        dbHost: "%TEST_DB_HOST%"
        dbUser: "%TEST_DB_USER%"
        dbPassword: "%TEST_DB_PASSWORD%"
        tablePrefix: "%TEST_TABLE_PREFIX%"
        domain: "%WP_DOMAIN%"
        adminEmail: "%ADMIN_EMAIL%"
        title: "Test"
        theme: retirement-wealth-academy
        plugins: ['']
        activatePlugins: ['']
    WPWebDriver:
        url: '%WP_URL%'
        adminUsername: '%ADMIN_USERNAME%'
        adminPassword: '%ADMIN_PASSWORD%'
        adminPath: '%WP_ADMIN_PATH%'
        capabilities:
            browserName: "chrome"
            javascriptEnabled: true
            webStorageEnabled: true
            nativeEvents: true
extensions:
enabled:
    - Codeception\Extension\RunFailed
commands:
    - Codeception\Command\GenerateWPUnit
    - Codeception\Command\GenerateWPRestApi
    - Codeception\Command\GenerateWPRestController
    - Codeception\Command\GenerateWPRestPostTypeController
    - Codeception\Command\GenerateWPAjax
    - Codeception\Command\GenerateWPCanonical
    - Codeception\Command\GenerateWPXMLRPC
    - Codeception\Command\DbSnapshot
    - tad\Codeception\Command\SearchReplace
params:
- .env

以及我的特定套件

actor: WpunitTester
modules:
    enabled:
        - WPLoader
        - \Helper\Wpunit
        - WPDb

我没有针对正确的数据库,我不知道我做错了什么。我在 wploader 的模块文件中找到了一个 useBlog 方法和一个多站点选项,但无法让它做我想做的事——在博客 2 上使用 wp_query,通过 class(class 我正在测试)。

看了很多文档和github问题后,我已经解决了问题!我使用的数据库转储非常大,而且我在 运行 测试后注意到,我的帖子和 postmeta 表丢失了所有数据(这解释了查询中的 0 return)。使用填充器来处理 WPDb 模块中的 sql 加载清除了很多。如果您的 sql 转储很大(我的大约 26 兆),您应该使用 populator。

  WPDb:
    dsn: 'mysql:host=127.0.0.1;dbname=ffwpcore_test'
    user: '%DB_USER%'
    password: '%DB_PASSWORD%'
    dump: 'tests/_data/dump.sql'
    populate: true #import the dump before the tests
    cleanup: false #import the dump between tests
    url: '%WP_URL%'
    urlReplacement: true #replace the hardcoded dump URL with the one above
    tablePrefix: '%TABLE_PREFIX%'
    waitlock: 0
    populator: '/Applications/MAMP/Library/bin/mysql  --host=localhost -uroot -proot $dbname < $dump'

我现在从 wp_query 得到了一个 return,现在可以进一步开发我的测试。