-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-tests-config.php
81 lines (65 loc) · 2.72 KB
/
wp-tests-config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/* Path to the WordPress codebase you'd like to test. Add a forward slash in the end. */
define( 'ABSPATH', dirname( __FILE__ ) . '/html/' );
/*
* Path to the theme to test with.
*
* The 'default' theme is symlinked from test/phpunit/data/themedir1/default into
* the themes directory of the WordPress installation defined above.
*/
define( 'WP_DEFAULT_THEME', 'default' );
/*
* Test with multisite enabled.
* Alternatively, use the tests/phpunit/multisite.xml configuration file.
*/
// define( 'WP_TESTS_MULTISITE', true );
/*
* Force known bugs to be run.
* Tests with an associated Trac ticket that is still open are normally skipped.
*/
// define( 'WP_TESTS_FORCE_KNOWN_BUGS', true );
// Test with WordPress debug mode (default).
define( 'WP_DEBUG', true );
// ** Database settings ** //
/*
* This configuration file will be used by the copy of WordPress being tested.
* wordpress/wp-config.php will be ignored.
*
* WARNING WARNING WARNING!
* These tests will DROP ALL TABLES in the database with the prefix named below.
* DO NOT use a production database or one that is shared with something else.
*/
define( 'DB_NAME', 'tests-wordpress' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', 'password' );
define( 'DB_HOST', 'tests-mysql' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
*/
define( 'AUTH_KEY', 'put your unique phrase here' );
define( 'SECURE_AUTH_KEY', 'put your unique phrase here' );
define( 'LOGGED_IN_KEY', 'put your unique phrase here' );
define( 'NONCE_KEY', 'put your unique phrase here' );
define( 'AUTH_SALT', 'put your unique phrase here' );
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
define( 'LOGGED_IN_SALT', 'put your unique phrase here' );
define( 'NONCE_SALT', 'put your unique phrase here' );
$table_prefix = 'wptests_'; // Only numbers, letters, and underscores please!
define( 'WP_TESTS_DOMAIN', 'example.org' );
define( 'WP_TESTS_EMAIL', 'admin@example.org' );
define( 'WP_TESTS_TITLE', 'Test Blog' );
define( 'WP_PHP_BINARY', 'php' );
define( 'WPLANG', '' );
// The ini_get( 'error_log' ) in AmpProject\AmpWP\Support\SupportData::get_error_log()
// will fail without this.
define( 'WP_DEBUG_LOG', true );
// Some tests in AmpProject\AmpWP\Tests\Admin\ReaderThemesTest will fail without this.
define( 'FS_METHOD', 'direct' );
// MockPluginEnvironment::BAD_PLUGINS_DIR relative path won't work without this.
// So BlockSourcesTest::test_capture_block_type_source will fail.
chdir( ABSPATH . 'wp-content/plugins/amp' );