-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathExperiment_LoaderTest.php
More file actions
303 lines (256 loc) · 7.54 KB
/
Experiment_LoaderTest.php
File metadata and controls
303 lines (256 loc) · 7.54 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<?php
/**
* Tests for the Experiment_Loader class.
*
* @package WordPress\AI\Tests\Integration\Includes
*/
namespace WordPress\AI\Tests\Integration\Includes;
use WP_UnitTestCase;
use WordPress\AI\Abstracts\Abstract_Experiment;
use WordPress\AI\Experiment_Loader;
use WordPress\AI\Experiment_Registry;
/**
* Test experiment for loader tests.
*
* @since 0.1.0
*/
class Mock_Experiment extends Abstract_Experiment {
/**
* Tracks if init was called.
*
* @var bool
*/
public $init_called = false;
/**
* Loads experiment metadata.
*
* @since 0.1.0
*
* @return array{id: string, label: string, description: string} Experiment metadata.
*/
protected function load_experiment_metadata(): array {
return array(
'id' => 'mock-experiment',
'label' => 'Mock Experiment',
'description' => 'A mock experiment for testing',
);
}
/**
* Initializes the experiment.
*
* @since 0.1.0
*/
public function init(): void {
$this->init_called = true;
}
}
/**
* Experiment_Loader test case.
*
* @since 0.1.0
*/
class Experiment_LoaderTest extends WP_UnitTestCase {
/**
* Experiment registry instance.
*
* @var \WordPress\AI\Experiment_Registry
*/
private $registry;
/**
* Experiment loader instance.
*
* @var \WordPress\AI\Experiment_Loader
*/
private $loader;
/**
* Setup test case.
*
* @since 0.1.0
*/
public function setUp(): void {
parent::setUp();
// Set up mock AI credentials so has_ai_credentials() returns true.
update_option( 'wp_ai_client_provider_credentials', array( 'openai' => 'test-api-key' ) );
// Mock has_valid_ai_credentials to return true for tests.
add_filter( 'ai_experiments_pre_has_valid_credentials_check', '__return_true' );
$this->registry = new Experiment_Registry();
$this->loader = new Experiment_Loader( $this->registry );
}
/**
* Tear down test case.
*
* @since 0.1.0
*/
public function tearDown(): void {
delete_option( 'wp_ai_client_provider_credentials' );
remove_filter( 'ai_experiments_pre_has_valid_credentials_check', '__return_true' );
parent::tearDown();
}
/**
* Test register_default_experiments registers default experiments.
*
* @since 0.1.0
*/
public function test_register_default_experiments() {
$this->loader->register_default_experiments();
$this->assertTrue(
$this->registry->has_experiment( 'title-generation' ),
'Title generation experiment should be registered'
);
$this->assertTrue(
$this->registry->has_experiment( 'image-generation' ),
'Image generation experiment should be registered'
);
$this->assertTrue(
$this->registry->has_experiment( 'excerpt-generation' ),
'Excerpt generation experiment should be registered'
);
$title_experiment = $this->registry->get_experiment( 'title-generation' );
$this->assertNotNull( $title_experiment, 'Title generation experiment should exist' );
$this->assertEquals( 'title-generation', $title_experiment->get_id() );
$image_experiment = $this->registry->get_experiment( 'image-generation' );
$this->assertNotNull( $image_experiment, 'Image generation experiment should exist' );
$this->assertEquals( 'image-generation', $image_experiment->get_id() );
$experiment = $this->registry->get_experiment( 'excerpt-generation' );
$this->assertNotNull( $experiment, 'Excerpt generation experiment should exist' );
$this->assertEquals( 'excerpt-generation', $experiment->get_id() );
}
/**
* Test ai_experiments_register_experiments action hook fires.
*
* @since 0.1.0
*/
public function test_ai_experiments_register_experiments_hook_fires() {
$hook_fired = false;
$passed_registry = null;
add_action(
'ai_experiments_register_experiments',
function ( $registry ) use ( &$hook_fired, &$passed_registry ) {
$hook_fired = true;
$passed_registry = $registry;
}
);
$this->loader->register_default_experiments();
$this->assertTrue( $hook_fired, 'ai_experiments_register_experiments hook should fire' );
$this->assertSame(
$this->registry,
$passed_registry,
'Registry should be passed to hook'
);
}
/**
* Test third-party experiments can be registered via hook.
*
* @since 0.1.0
*/
public function test_third_party_experiment_registration() {
add_action(
'ai_experiments_register_experiments',
function ( $registry ) {
$custom_experiment = new Mock_Experiment();
$registry->register_experiment( $custom_experiment );
}
);
$this->loader->register_default_experiments();
$this->assertTrue(
$this->registry->has_experiment( 'mock-experiment' ),
'Custom experiment should be registered via hook'
);
}
/**
* Test initialize_experiments calls init on enabled experiments.
*
* @since 0.1.0
*/
public function test_initialize_experiments_calls_register() {
// Enable experiments globally and individually.
update_option( 'ai_experiments_enabled', true );
update_option( 'ai_experiment_mock-experiment_enabled', true );
$experiment = new Mock_Experiment();
$this->registry->register_experiment( $experiment );
$this->loader->initialize_experiments();
$this->assertTrue(
$experiment->init_called,
'Experiment init() should be called'
);
// Cleanup.
delete_option( 'ai_experiments_enabled' );
delete_option( 'ai_experiment_mock-experiment_enabled' );
}
/**
* Test initialize_experiments doesn't initialize twice.
*
* @since 0.1.0
*/
public function test_initialize_experiments_prevents_double_initialization() {
$experiment = new Mock_Experiment();
$this->registry->register_experiment( $experiment );
$this->loader->initialize_experiments();
$this->assertTrue( $this->loader->is_initialized(), 'Should be initialized' );
// Reset the flag to track second call.
$experiment->init_called = false;
// Try to initialize again.
$this->loader->initialize_experiments();
$this->assertFalse(
$experiment->init_called,
'Experiment init() should not be called twice'
);
}
/**
* Test ai_experiments_initialized action fires.
*
* @since 0.1.0
*/
public function test_ai_experiments_initialized_hook_fires() {
$hook_fired = false;
add_action(
'ai_experiments_initialized',
static function () use ( &$hook_fired ) {
$hook_fired = true;
}
);
$experiment = new Mock_Experiment();
$this->registry->register_experiment( $experiment );
$this->loader->initialize_experiments();
$this->assertTrue( $hook_fired, 'ai_experiments_initialized hook should fire' );
}
/**
* Test ai_experiments_initialized fires before is_initialized is true.
*
* @since 0.1.0
*/
public function test_ai_experiments_initialized_fires_before_initialized_flag() {
$initialized_during_hook = null;
add_action(
'ai_experiments_initialized',
function () use ( &$initialized_during_hook ) {
$initialized_during_hook = $this->loader->is_initialized();
}
);
$this->loader->initialize_experiments();
$this->assertFalse(
$initialized_during_hook,
'Loader should not be marked initialized during hook'
);
$this->assertTrue(
$this->loader->is_initialized(),
'Loader should be initialized after hook'
);
}
/**
* Test disabled experiments are skipped during initialization.
*
* @since 0.1.0
*/
public function test_disabled_experiments_are_skipped() {
$experiment = new Mock_Experiment();
$this->registry->register_experiment( $experiment );
// Disable the experiment.
add_filter( 'ai_experiments_experiment_mock-experiment_enabled', '__return_false' );
$this->loader->initialize_experiments();
$this->assertFalse(
$experiment->init_called,
'Disabled experiment init() should not be called'
);
}
}