summaryrefslogtreecommitdiff
path: root/_test/lib/mock_functions.php
blob: 9ef5b7b8f841c604088de8b87a3f0d97c3f9a690 (plain)
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
<?php
    /**
     *	base include file for SimpleTest
     *	@package	SimpleTest
     *	@subpackage	MockFunctions
     *	@version	$Id: mock_objects.php,v 1.86 2005/09/10 23:01:56 lastcraft Exp $
     */
    
    /**
     *    Generates a mock version of a function.
     *    Note that all public methods in this class should be called
     *    statically
     *    Note that you must call the restore method yourself, to remove
     *    a mock function implementation after associated tests are
     *    complete
     *    @package SimpleTest
     *    @subpackage MockFunctions
     */
    class MockFunction {
        
        /**
         *    Raises an error if you construct MockFunction
         *    @access private
         */
        function MockFunction() {
            trigger_error('MockFunction only provides static methods',
                E_USER_ERROR);
        }
        
        /**
         *    Generates a mock function
         *    @param string $function        Function name to mock
         *    @access public
         *    @return SimpleMockFunction
         *    @static
         */
        function & generate($function) {
            $mock = & MockFunction::_instance($function, TRUE);
            $mock->deploy();
            return $mock;
        }
        
        /**
         *    Removes the mock function implementation and restores
         *    the real implementation (if one existed)
         *    @TODO Would be good to have this called automatically
         *    @param string $function        Function name
         *    @access public
         *    @static
         */
        function restore($function) {
            $mock = & MockFunction::_instance($function);
            $mock->restore();
        }
        
        /**
         *    Fetch a singleton instance of SimpleMockFunction
         *    @param string $function    Function name
         *    @param boolean $fresh      Force a fresh instance
         *    @access private
         *    @static
         */
        function &_instance($function, $fresh = FALSE) {
            static $singleton = array();
            
            $function = strtolower($function);
            
            if ( $fresh ) {
                if ( isset($singleton[$function]) ) {
                    unset($singleton[$function]);
                }
            }
            
            if ( !isset($singleton[$function]) ) {
                // TODO: case sensitivity issues
                $class = $function."MockFunction";
                MockFunction::_generateSubClass($class, $function);
                $singleton[$function] = new $class($function);
            }
            
            return $singleton[$function];
        }
        
        /**
         *    Required for strict mode and SimpleMock
         *    @TODO Should perhaps be placed in SimpleFunctionGenerator
         *    @param string $class        subclass name
         *    @param string $method       method name
         *    @access private
         *    @static
         */
        function _generateSubClass($class, $method) {
            if ( class_exists($class) ) {
                return;
            }
            $code = "class $class extends SimpleMockFunction {\n";
            $code .= "    function $method () {}\n";
            $code .= "}\n";
            eval($code);
        }
        
        /**
         *    Changes the default wildcard object.
         *    @param string $function        Function name wildcard applies to
         *    @param mixed $wildcard         Parameter matching wildcard.
         *    @access public
         *    @static
         */
        function setWildcard($function, $wildcard) {
            $mock = & MockFunction::_instance($function);
            $mock->setWildcard($wildcard);
        }
        
        /**
         *    Fetches the call count of a function so far.
         *    @param string $function        Function name called.
         *    @return                        Number of calls so far.
         *    @access public
         *    @static
         */
        function getCallCount($function) {
            $mock = & MockFunction::_instance($function);
            return $mock->getCallCount($function);
        }
        
        /**
         *    Sets a return for a parameter list that will
         *    be passed by value for all calls to this function.
         *    @param string $function     Function name.
         *    @param mixed $value         Result of call passed by value.
         *    @param array $args          List of parameters to match
         *                                including wildcards.
         *    @access public
         *    @static
         */
        function setReturnValue($function, $value, $args = false) {
            $mock = & MockFunction::_instance($function);
            $mock->setReturnValue($function, $value, $args);
        }
                
        /**
         *    Sets a return for a parameter list that will
         *    be passed by value only when the required call count
         *    is reached.
         *    @param integer $timing   Number of calls in the future
         *                             to which the result applies. If
         *                             not set then all calls will return
         *                             the value.
         *    @param string $function  Function name.
         *    @param mixed $value      Result of call passed by value.
         *    @param array $args       List of parameters to match
         *                             including wildcards.
         *    @access public
         *    @static
         */
        function setReturnValueAt($timing, $function, $value, $args = false) {
            $mock = & MockFunction::_instance($function);
            $mock->setReturnValueAt($timing, $function, $value, $args);
        }
         
        /**
         *    Sets a return for a parameter list that will
         *    be passed by reference for all calls.
         *    @param string $function     Function name.
         *    @param mixed $reference     Result of the call will be this object.
         *    @param array $args          List of parameters to match
         *                                including wildcards.
         *    @access public
         *    @static
         */
        function setReturnReference($function, &$reference, $args = false) {
            $mock = & MockFunction::_instance($function);
            $mock->setReturnReference($function, $reference, $args);
        }
        
        /**
         *    Sets a return for a parameter list that will
         *    be passed by value only when the required call count
         *    is reached.
         *    @param integer $timing    Number of calls in the future
         *                              to which the result applies. If
         *                              not set then all calls will return
         *                              the value.
         *    @param string $function   Function name.
         *    @param mixed $reference   Result of the call will be this object.
         *    @param array $args        List of parameters to match
         *                              including wildcards.
         *    @access public
         *    @static
         */
        function setReturnReferenceAt($timing, $function, &$reference, $args = false) {
            $mock = & MockFunction::_instance($function);
            $mock->setReturnReferenceAt($timing, $function, $reference, $args);
        }
        
        /**
         *    Sets up an expected call with a set of
         *    expected parameters in that call. All
         *    calls will be compared to these expectations
         *    regardless of when the call is made.
         *    @param string $function      Function call to test.
         *    @param array $args           Expected parameters for the call
         *                                 including wildcards.
         *    @param string $message       Overridden message.
         *    @access public
         *    @static
         */
        function expectArguments($function, $args, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectArguments($function, $args, $message);
        }
        
        /**
         *    Sets up an expected call with a set of
         *    expected parameters in that call. The
         *    expected call count will be adjusted if it
         *    is set too low to reach this call.
         *    @param integer $timing    Number of calls in the future at
         *                              which to test. Next call is 0.
         *    @param string $function   Function call to test.
         *    @param array $args        Expected parameters for the call
         *                              including wildcards.
         *    @param string $message    Overridden message.
         *    @access public
         *    @static
         */
        function expectArgumentsAt($timing, $function, $args, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectArgumentsAt($timing, $function, $args, $message);
        }
        
        /**
         *    Sets an expectation for the number of times
         *    a function will be called.
         *    @param string $function      Function call to test.
         *    @param integer $count        Number of times it should
         *                                 have been called at tally.
         *    @param string $message       Overridden message.
         *    @access public
         *    @static
         */
        function expectCallCount($function, $count, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectCallCount($function, $count, $message);
        }
        
        /**
         *    Sets the number of times a function may be called
         *    before a test failure is triggered.
         *    @param string $function      Function call to test.
         *    @param integer $count        Most number of times it should
         *                                 have been called.
         *    @param string $message       Overridden message.
         *    @access public
         *    @static
         */
        function expectMaximumCallCount($function, $count, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectMaximumCallCount($function, $count, $message);
        }
        
        /**
         *    Sets the minimum number of times the function must be called
         *    otherwise a test failure is triggered
         *    @param string $function    Function call to test.
         *    @param integer $count      Least number of times it should
         *                               have been called.
         *    @param string $message     Overridden message.
         *    @access public
         *    @static
         */
        function expectMinimumCallCount($function, $count, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectMinimumCallCount($function, $count, $message);
        }
        
        /**
         *    Convenience method for barring a function
         *    call.
         *    @param string $function      Function call to ban.
         *    @param string $message       Overridden message.
         *    @access public
         *    @static
         */
        function expectNever($function, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectNever($function, $message);
        }
        
        /**
         *    Convenience method for a single function
         *    call.
         *    @param string $function   Function call to track.
         *    @param array $args        Expected argument list or
         *                              false for any arguments.
         *    @param string $message    Overridden message.
         *    @access public
         *    @static
         */
        function expectOnce($function, $args = false, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectOnce($function, $args, $message);
        }
        
        /**
         *    Convenience method for requiring a function
         *    call.
         *    @param string $function     Function call to track.
         *    @param array $args          Expected argument list or
         *                                false for any arguments.
         *    @param string $message      Overridden message.
         *    @access public
         *    @static
         */
        function expectAtLeastOnce($function, $args = false, $message = '%s') {
            $mock = & MockFunction::_instance($function);
            $mock->expectAtLeastOnce($function, $args, $message);
        }
        
        function atTestEnd($function) {
            $mock = & MockFunction::_instance($function);
            $mock->atTestEnd($function);
        }
        
    }
    
    /**
     *    Represents a single, mocked function, tracking calls made to it
     *    @package SimpleTest
     *    @subpackage MockFunctions
     */
    class SimpleMockFunction extends SimpleMock {
    
        var $_is_mocked = FALSE;
        var $_generator;
        
        /**
         *    Sets up the mock, creating a generator depending on whether
         *    the function is already declared
         *    @param string $function    Name of function being mocked
         */
        function SimpleMockFunction($function) {
            
            SimpleMock :: SimpleMock();
            
            if ( function_exists($function) ) {
                $this->_generator = new SimpleDeclaredFunctionGenerator($function);
            } else {
                $this->_generator = new SimpleUndeclaredFunctionGenerator($function);
            }
            
        }
        
        /**
         *    Deploys the mock function implementation into PHP's function
         *    table, replacing any existing implementation
         *    @access public
         */
        function deploy() {
            
            if ( !$this->_is_mocked ) {
                
                $this->_is_mocked = TRUE;
                $this->_generator->deploy();
                
            }
            
        }
        
        /**
         *    Restores the state of PHP's function table to that before
         *    the mock function was deployed. Removes the mock function
         *    implementation and restores any existing implementation of
         *    that function
         *    @access public
         */
        function restore() {
            
            if ( $this->_is_mocked ) {
                
                $this->_is_mocked = FALSE;
                $this->_generator->restore();
                
            }
            
        }
        
    }
    
    /**
     *    Base class for deploying and restoring from mock functions
     *    @package SimpleTest
     *    @subpackage MockFunctions
     *    @abstract
     */
    class SimpleFunctionGenerator {
        
        var $_function;
        
        /**
         *    @TODO Validate the function name (as it's being used in eval)
         *    @TODO Add list of illegal functions (ones which must not be mocked
         *    as they will break SimpleTest, which uses them)
         *    @param string $function    Name of function being mocked
         */
        function SimpleFunctionGenerator($function) {
            $this->_function = $function;
        }
        
        /**
         *    Generates the mock function implementation, using eval
         *    @access private
         */
        function _generateMockFunction() {
            $code = "function " . $this->_function . "() {\n";
            $code .= "    \$args = func_get_args();\n";
            $code .= "    \$mock = & MockFunction::_instance('".$this->_function."');\n";
            $code .= "    \$result = &\$mock->_invoke(\"".$this->_function."\", \$args);\n";
            $code .= "    return \$result;\n";
            $code .= "}\n";
            eval($code);
        }
    }
    
    /**
     *    Mock function generator for functions which have already been declared
     *    @package SimpleTest
     *    @subpackage MockFunctions
     */
    class SimpleDeclaredFunctionGenerator extends SimpleFunctionGenerator {
        
        var $_tmp_function = NULL;
        
        /**
         *    Invokes the _generateTmpFnFname
         *    @param string $function    Name of function being mocked
         */
        function SimpleDeclaredFunctionGenerator($function) {
            
            SimpleFunctionGenerator::SimpleFunctionGenerator($function);
            $this->_generateTmpFnFname();
            
        }
        
        /**
         *    Generates a temporary name for the declared function implementation
         *    which is will be renamed to while the mock function is in use
         *    @access private
         */
        function _generateTmpFnFname() {
            static $count = 1;
            $this->_tmp_function = 'tmp_'.md5(time().$this->_function.$count);
            $count++;
        }
        
        /**
         *    Deploys the mock function implementation
         *    @access public
         */
        function deploy() {
            
            runkit_function_rename(
                $this->_function,
                $this->_tmp_function
                ) or
                    trigger_error('Error archiving real function implementation',
                    E_USER_ERROR);
            
            $this->_generateMockFunction();
        }
        
        /**
         *    Removes the mock function implementation and restores
         *    the previously declared implementation
         *    @access public
         */
        function restore() {
            
            runkit_function_remove($this->_function) or
                trigger_error('Error removing mock function',
                    E_USER_ERROR);
            
            runkit_function_rename(
                $this->_tmp_function,
                $this->_function
                ) or
                trigger_error('Error restoring real function',
                    E_USER_ERROR);
        }
    }
    
    /**
     *    Mock function generator for functions which have not
     *    already been declared
     *    @package SimpleTest
     *    @subpackage MockFunctions
     */
    class SimpleUndeclaredFunctionGenerator extends SimpleFunctionGenerator {
        
        /**
         *    Deploys the mock function implementation
         *    @access public
         */
        function deploy() {
            $this->_generateMockFunction();
        }
        
        /**
         *    Removes the mock function implementation
         *    @access public
         */
        function restore() {
            runkit_function_remove($this->_function) or
                trigger_error('Error removing mock function',
                    E_USER_ERROR);
        }
        
    }