-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathbootstrap.php
More file actions
157 lines (145 loc) · 5.14 KB
/
bootstrap.php
File metadata and controls
157 lines (145 loc) · 5.14 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
require_once __DIR__ . '/wp-sqlite-schema.php';
require_once __DIR__ . '/../version.php';
require_once __DIR__ . '/../wp-includes/parser/class-wp-parser-grammar.php';
require_once __DIR__ . '/../wp-includes/parser/class-wp-parser.php';
require_once __DIR__ . '/../wp-includes/parser/class-wp-parser-node.php';
require_once __DIR__ . '/../wp-includes/parser/class-wp-parser-token.php';
require_once __DIR__ . '/../wp-includes/mysql/class-wp-mysql-token.php';
require_once __DIR__ . '/../wp-includes/mysql/class-wp-mysql-lexer.php';
require_once __DIR__ . '/../wp-includes/mysql/class-wp-mysql-parser.php';
require_once __DIR__ . '/../wp-includes/mysql/class-wp-mysql-naive-query-stream.php';
require_once __DIR__ . '/../wp-includes/sqlite/class-wp-sqlite-query-rewriter.php';
require_once __DIR__ . '/../wp-includes/sqlite/class-wp-sqlite-lexer.php';
require_once __DIR__ . '/../wp-includes/sqlite/class-wp-sqlite-token.php';
require_once __DIR__ . '/../wp-includes/sqlite/class-wp-sqlite-pdo-user-defined-functions.php';
require_once __DIR__ . '/../wp-includes/sqlite/class-wp-sqlite-translator.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-connection.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-configurator.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-driver.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-driver-exception.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-information-schema-builder.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-information-schema-exception.php';
require_once __DIR__ . '/../wp-includes/sqlite-ast/class-wp-sqlite-information-schema-reconstructor.php';
// Configure the test environment.
error_reporting( E_ALL & ~E_DEPRECATED );
define( 'FQDB', ':memory:' );
define( 'FQDBDIR', __DIR__ . '/../testdb' );
// Polyfill WPDB globals.
$GLOBALS['table_prefix'] = 'wptests_';
$GLOBALS['wpdb'] = new class() {
public function set_prefix( string $prefix ): void {}
};
/**
* Polyfills for WordPress functions
*/
if ( ! function_exists( 'do_action' ) ) {
/**
* Polyfill the do_action function.
*/
function do_action() {}
}
if ( ! function_exists( 'apply_filters' ) ) {
/**
* Polyfill the apply_filters function.
*
* @param string $tag The filter name.
* @param mixed $value The value to filter.
* @param mixed ...$args Additional arguments to pass to the filter.
*
* @return mixed Returns $value.
*/
function apply_filters( $tag, $value, ...$args ) {
return $value;
}
}
/**
* Polyfills for php 7 & 8 functions
*/
if ( ! function_exists( 'str_starts_with' ) ) {
/**
* Check if a string starts with a specific substring.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @see https://www.php.net/manual/en/function.str-starts-with
*
* @return bool
*/
function str_starts_with( string $haystack, string $needle ) {
return empty( $needle ) || 0 === strpos( $haystack, $needle );
}
}
if ( ! function_exists( 'str_contains' ) ) {
/**
* Check if a string contains a specific substring.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @see https://www.php.net/manual/en/function.str-contains
*
* @return bool
*/
function str_contains( string $haystack, string $needle ) {
return empty( $needle ) || false !== strpos( $haystack, $needle );
}
}
if ( ! function_exists( 'str_ends_with' ) ) {
/**
* Check if a string ends with a specific substring.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @see https://www.php.net/manual/en/function.str-ends-with
*
* @return bool
*/
function str_ends_with( string $haystack, string $needle ) {
return empty( $needle ) || substr( $haystack, -strlen( $needle ) ) === $needle;
}
}
if ( extension_loaded( 'mbstring' ) ) {
if ( ! function_exists( 'mb_str_starts_with' ) ) {
/**
* Polyfill for mb_str_starts_with.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @return bool
*/
function mb_str_starts_with( string $haystack, string $needle ) {
return empty( $needle ) || 0 === mb_strpos( $haystack, $needle );
}
}
if ( ! function_exists( 'mb_str_contains' ) ) {
/**
* Polyfill for mb_str_contains.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @return bool
*/
function mb_str_contains( string $haystack, string $needle ) {
return empty( $needle ) || false !== mb_strpos( $haystack, $needle );
}
}
if ( ! function_exists( 'mb_str_ends_with' ) ) {
/**
* Polyfill for mb_str_ends_with.
*
* @param string $haystack The string to search in.
* @param string $needle The string to search for.
*
* @return bool
*/
function mb_str_ends_with( string $haystack, string $needle ) {
// phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.Found
return empty( $needle ) || $needle = mb_substr( $haystack, - mb_strlen( $needle ) );
}
}
}