gpt4 book ai didi

php - 无法让 Codeception 在多站点上使用 wp_query

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:43:18 26 4
gpt4 key购买 nike

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

<?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 实例,但我不确定这是否会影响设置,或者这是否是我需要在 codeception 中配置的额外内容。有人有什么想法吗?

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

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。

最佳答案

看了很多文档和github issues,终于解决了!我使用的数据库转储非常大,而且我在运行测试后注意到,我的帖子和 postmeta 表丢失了所有数据(这解释了查询返回 0)。使用 populator 来处理 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 得到了返回,现在可以进一步开发我的测试。

关于php - 无法让 Codeception 在多站点上使用 wp_query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52882213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com