File tree 1 file changed +35
-0
lines changed
tests/plugins/speculation-rules
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,41 @@ static function ( array $exclude_paths ): array {
146
146
);
147
147
}
148
148
149
+ /**
150
+ * @covers ::plsr_get_speculation_rules
151
+ */
152
+ public function test_plsr_get_speculation_rules_different_home_and_site_urls () {
153
+ add_filter (
154
+ 'site_url ' ,
155
+ static function (): string {
156
+ return 'https://example.com/wp/ ' ;
157
+ }
158
+ );
159
+ add_filter (
160
+ 'home_url ' ,
161
+ static function (): string {
162
+ return 'https://example.com/blog/ ' ;
163
+ }
164
+ );
165
+ add_filter (
166
+ 'plsr_speculation_rules_href_exclude_paths ' ,
167
+ static function ( array $ exclude_paths ): array {
168
+ $ exclude_paths [] = '/store/* ' ;
169
+ return $ exclude_paths ;
170
+ }
171
+ );
172
+
173
+ $ this ->assertSame (
174
+ array (
175
+ 0 => '/wp/wp-login.php ' ,
176
+ 1 => '/wp/wp-admin/* ' ,
177
+ 2 => '/wp/* \\?*(^|&)_wpnonce=* ' ,
178
+ 3 => '/blog/store/* ' ,
179
+ ),
180
+ plsr_get_speculation_rules ()['prerender ' ][0 ]['where ' ]['and ' ][1 ]['not ' ]['href_matches ' ]
181
+ );
182
+ }
183
+
149
184
/**
150
185
* @covers ::plsr_get_speculation_rules
151
186
*/
You can’t perform that action at this time.
0 commit comments