Skip to content

Commit 74e52a2

Browse files
committed
Add failing test case for differing home and site URLs
1 parent 44830d1 commit 74e52a2

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

tests/plugins/speculation-rules/speculation-rules-helper-test.php

+35
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,41 @@ static function ( array $exclude_paths ): array {
146146
);
147147
}
148148

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+
149184
/**
150185
* @covers ::plsr_get_speculation_rules
151186
*/

0 commit comments

Comments
 (0)