-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTestFeature.php
More file actions
225 lines (190 loc) · 5.87 KB
/
TestFeature.php
File metadata and controls
225 lines (190 loc) · 5.87 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
/**
* PermalinkCleanup Tests
*
* @package multisyde-unit-tests
*/
declare( strict_types=1 );
namespace Syde\MultiSyde\Modules\PermalinkCleanup\tests\unit;
use Brain\Monkey\Functions;
use Brain\Monkey\Filters;
use Syde\MultiSyde\Modules\PermalinkCleanup\Feature;
use Syde\MultiSydeUnitTests\UnitTestCase;
/**
* Test the PermalinkCleanup class.
*/
final class TestFeature extends UnitTestCase {
/**
* Test that init registers the correct filters.
*
* @covers Feature::init
*
* @return void
*/
public function test_registers_filters(): void {
Filters\expectAdded( 'sanitize_option_permalink_structure' )
->with( array( Feature::class, 'remove_blog_prefix' ) )
->once();
Filters\expectAdded( 'option_permalink_structure' )
->with( array( Feature::class, 'remove_blog_prefix' ) )
->once();
Feature::init();
}
/**
* Test that /blog prefix is removed on main site in multisite.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_removes_blog_prefix_on_main_site(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '/blog/%postname%/' );
$this->assertSame( '/%postname%/', $result );
}
/**
* Test that /blog prefix is removed with various permalink structures.
*
* @covers Feature::remove_blog_prefix
* @dataProvider blog_prefix_permalink_provider
*
* @param string $input The input permalink structure.
* @param string $expected The expected output.
*
* @return void
*/
public function test_removes_blog_prefix_various_structures(
string $input,
string $expected
): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( $input );
$this->assertSame( $expected, $result );
}
/**
* Data provider for various permalink structures with /blog prefix.
*
* @return array<string, array<string, string>>
*/
public function blog_prefix_permalink_provider(): array {
return array(
'simple postname' => array(
'input' => '/blog/%postname%/',
'expected' => '/%postname%/',
),
'year month postname' => array(
'input' => '/blog/%year%/%monthnum%/%postname%/',
'expected' => '/%year%/%monthnum%/%postname%/',
),
'category postname' => array(
'input' => '/blog/%category%/%postname%/',
'expected' => '/%category%/%postname%/',
),
'just /blog' => array(
'input' => '/blog',
'expected' => '',
),
'/blog with trailing slash' => array(
'input' => '/blog/',
'expected' => '/',
),
'numeric structure' => array(
'input' => '/blog/%year%/%monthnum%/%day%/%postname%/',
'expected' => '/%year%/%monthnum%/%day%/%postname%/',
),
);
}
/**
* Test that value is unchanged when not on multisite.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_remove_prefix_when_not_multisite(): void {
Functions\when( 'is_multisite' )->justReturn( false );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '/blog/%postname%/' );
$this->assertSame( '/blog/%postname%/', $result );
}
/**
* Test that value is unchanged when not on main site.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_remove_prefix_when_not_main_site(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( false );
$result = Feature::remove_blog_prefix( '/blog/%postname%/' );
$this->assertSame( '/blog/%postname%/', $result );
}
/**
* Test that value is unchanged when both conditions are false.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_remove_prefix_when_neither_condition_met(): void {
Functions\when( 'is_multisite' )->justReturn( false );
Functions\when( 'is_main_site' )->justReturn( false );
$result = Feature::remove_blog_prefix( '/blog/%postname%/' );
$this->assertSame( '/blog/%postname%/', $result );
}
/**
* Test that empty string is handled correctly.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_handles_empty_string(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '' );
$this->assertSame( '', $result );
}
/**
* Test that permalink without /blog prefix is unchanged.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_modify_permalink_without_blog_prefix(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '/%year%/%monthnum%/%postname%/' );
$this->assertSame( '/%year%/%monthnum%/%postname%/', $result );
}
/**
* Test that /blog in the middle of structure is not removed.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_remove_blog_from_middle_of_structure(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '/%category%/blog/%postname%/' );
$this->assertSame( '/%category%/blog/%postname%/', $result );
}
/**
* Test that similar prefixes are not affected.
*
* @covers Feature::remove_blog_prefix
*
* @return void
*/
public function test_does_not_remove_similar_prefixes(): void {
Functions\when( 'is_multisite' )->justReturn( true );
Functions\when( 'is_main_site' )->justReturn( true );
$result = Feature::remove_blog_prefix( '/blogger/%postname%/' );
$this->assertSame( '/blogger/%postname%/', $result );
}
}