/** * Creates and instance of the mock WebServiceApplicationWeb object. * * The test can implement the following overrides: * - mockAppendBody * - mockGetBody * - mockPrepentBody * - mockSetBody * * If any *Body methods are implemented in the test class, all should be implemented otherwise behaviour will be unreliable. * * @param TestCase $test A test object. * @param array $options A set of options to configure the mock. * * @return PHPUnit_Framework_MockObject_MockObject * * @since 11.3 */ public static function create($test, $options = array()) { // Set expected server variables. if (!isset($_SERVER['HTTP_HOST'])) { $_SERVER['HTTP_HOST'] = 'localhost'; } // Collect all the relevant methods in WebServiceApplicationWeb (work in progress). $methods = array('allowCache', 'appendBody', 'clearHeaders', 'close', 'execute', 'get', 'getBody', 'getDocument', 'getHeaders', 'getIdentity', 'getLanguage', 'getSession', 'loadConfiguration', 'loadDispatcher', 'loadDocument', 'loadIdentity', 'loadLanguage', 'loadSession', 'prependBody', 'redirect', 'registerEvent', 'sendHeaders', 'set', 'setBody', 'setHeader', 'triggerEvent'); // Create the mock. $mockObject = $test->getMock('WebServiceApplicationWeb', $methods, array(), '', true); // Mock calls to JApplicationWeb::getDocument(). $mockObject->expects($test->any())->method('getDocument')->will($test->returnValue(TestMockDocument::create($test))); // Mock calls to JApplicationWeb::getLanguage(). $mockObject->expects($test->any())->method('getLanguage')->will($test->returnValue(TestMockLanguage::create($test))); // Mock a call to JApplicationWeb::getSession(). if (isset($options['session'])) { $mockObject->expects($test->any())->method('getSession')->will($test->returnValue($options['session'])); } else { $mockObject->expects($test->any())->method('getSession')->will($test->returnValue(TestMockSession::create($test))); } $test->assignMockCallbacks($mockObject, array('appendBody' => array(is_callable(array($test, 'mockAppendBody')) ? $test : get_called_class(), 'mockAppendBody'), 'getBody' => array(is_callable(array($test, 'mockGetBody')) ? $test : get_called_class(), 'mockGetBody'), 'prependBody' => array(is_callable(array($test, 'mockPrependBody')) ? $test : get_called_class(), 'mockPrependBody'), 'setBody' => array(is_callable(array($test, 'mockSetBody')) ? $test : get_called_class(), 'mockSetBody'))); // Reset the body storage. self::$body = array(); return $mockObject; }
/** * Creates and instance of the mock JApplication object. * * @param TestCase $test A test object. * @param array $data Data to prime the cache with. * * @return object * * @since 12.1 */ public static function create(TestCase $test, $data = array()) { self::$cache = $data; // Collect all the relevant methods in JConfig. $methods = array( 'get', 'store', ); // Create the mock. $mockObject = $test->getMock( 'JCache', $methods, // Constructor arguments. array(), // Mock class name. '', // Call original constructor. false ); $test->assignMockCallbacks( $mockObject, array( 'get' => array(get_called_class(), 'mockGet'), 'store' => array(get_called_class(), 'mockStore'), ) ); return $mockObject; }
/** * Creates and instance of the mock JApplicationCli object. * * @param TestCase $test A test object. * @param array $options A set of options to configure the mock. * * @return PHPUnit_Framework_MockObject_MockObject * * @since 12.2 */ public static function create($test, $options = array()) { // Collect all the relevant methods in JApplicationCli. $methods = array( 'get', 'execute', 'loadConfiguration', 'out', 'in', 'set', ); // Create the mock. $mockObject = $test->getMock( 'JApplicationCli', $methods, // Constructor arguments. array(), // Mock class name. '', // Call original constructor. true ); return $mockObject; }
/** * Creates and instance of the mock JApplicationCli object. * * @param TestCase $test A test object. * @param array $options A set of options to configure the mock. * * @return PHPUnit_Framework_MockObject_MockObject * * @since 12.2 */ public static function create($test, $options = array()) { // Collect all the relevant methods in JApplicationCli. $methods = array('get', 'execute', 'loadConfiguration', 'out', 'in', 'set'); // Create the mock. $mockObject = $test->getMock('JApplicationCli', $methods, array(), '', true); return $mockObject; }
/** * Creates and instance of the mock JApplicationCli object. * * @param TestCase $test A test object. * @param array $options A set of options to configure the mock. * * @return PHPUnit_Framework_MockObject_MockObject * * @since 12.2 */ public static function create($test, $options = array()) { // Collect all the relevant methods in JApplicationCli. $methods = self::getMethods(); // Create the mock. $mockObject = $test->getMock('JApplicationCli', $methods, array(), '', true); $mockObject = self::addBehaviours($test, $mockObject, $options); return $mockObject; }
/** * Creates and instance of the mock JApplication object. * * @param TestCase $test A test object. * @param array $data Data to prime the cache with. * * @return object * * @since 12.1 */ public static function create(TestCase $test, $data = array()) { self::$cache = $data; // Collect all the relevant methods in JConfig. $methods = array('get', 'store'); // Create the mock. $mockObject = $test->getMock('JCache', $methods, array(), '', false); $test->assignMockCallbacks($mockObject, array('get' => array(get_called_class(), 'mockGet'), 'store' => array(get_called_class(), 'mockStore'))); return $mockObject; }
/** * Creates and instance of the mock JApplicationCms object. * * The test can implement the following overrides: * - mockAppendBody * - mockGetBody * - mockPrepentBody * - mockSetBody * * If any *Body methods are implemented in the test class, all should be implemented otherwise behaviour will be unreliable. * * @param TestCase $test A test object. * @param array $options A set of options to configure the mock. * * @return PHPUnit_Framework_MockObject_MockObject * * @since 3.2 */ public static function create($test, $options = array()) { // Set expected server variables. if (!isset($_SERVER['HTTP_HOST'])) { $_SERVER['HTTP_HOST'] = 'localhost'; } $methods = self::getMethods(); // Create the mock. $mockObject = $test->getMock('JApplicationCms', $methods, array(), '', true); $mockObject = self::addBehaviours($test, $mockObject, $options); return $mockObject; }