Coverage for Doctrine_Adapter_Statement_Mock

Back to coverage report

1 <?php
2 /*
3  *  $Id: Mock.php 2786 2007-10-09 13:24:31Z pookey $
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the LGPL. For more information, see
19  * <http://www.phpdoctrine.com>.
20  */
21 /**
22  * Doctrine_Adapter_Statement_Mock
23  * This class is used for special testing purposes.
24  *
25  * @package     Doctrine
26  * @subpackage  Adapter
27  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
28  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
29  * @link        www.phpdoctrine.com
30  * @since       1.0
31  * @version     $Revision: 2786 $
32  */
33 class Doctrine_Adapter_Statement_Mock implements Doctrine_Adapter_Statement_Interface
34 {
35     private $mock;
36     
37     public $queryString;
38
39     public function __construct($mock)
40     {
41         $this->mock  = $mock;
42     }
43     /**
44      * bindColumn
45      * Bind a column to a PHP variable
46      *
47      * @param mixed $column         Number of the column (1-indexed) or name of the column in the result set.
48      *                              If using the column name, be aware that the name should match
49      *                              the case of the column, as returned by the driver.
50      * @param string $param         Name of the PHP variable to which the column will be bound.
51      * @param integer $type         Data type of the parameter, specified by the Doctrine::PARAM_* constants.
52      * @return boolean              Returns TRUE on success or FALSE on failure
53      */
54     public function bindColumn($column, $param, $type = null)
55     {
56         
57     }
58     /**
59      * bindValue
60      * Binds a value to a corresponding named or question mark 
61      * placeholder in the SQL statement that was use to prepare the statement.
62      *
63      * @param mixed $param          Parameter identifier. For a prepared statement using named placeholders,
64      *                              this will be a parameter name of the form :name. For a prepared statement
65      *                              using question mark placeholders, this will be the 1-indexed position of the parameter
66      *
67      * @param mixed $value          The value to bind to the parameter.
68      * @param integer $type         Explicit data type for the parameter using the Doctrine::PARAM_* constants.
69      *
70      * @return boolean              Returns TRUE on success or FALSE on failure.
71      */
72     public function bindValue($param, $value, $type = null)
73     {
74         
75     }
76     /**
77      * bindParam
78      * Binds a PHP variable to a corresponding named or question mark placeholder in the 
79      * SQL statement that was use to prepare the statement. Unlike Doctrine_Adapter_Statement_Interface->bindValue(),
80      * the variable is bound as a reference and will only be evaluated at the time 
81      * that Doctrine_Adapter_Statement_Interface->execute() is called.
82      *
83      * Most parameters are input parameters, that is, parameters that are 
84      * used in a read-only fashion to build up the query. Some drivers support the invocation 
85      * of stored procedures that return data as output parameters, and some also as input/output
86      * parameters that both send in data and are updated to receive it.
87      *
88      * @param mixed $param          Parameter identifier. For a prepared statement using named placeholders,
89      *                              this will be a parameter name of the form :name. For a prepared statement
90      *                              using question mark placeholders, this will be the 1-indexed position of the parameter
91      *
92      * @param mixed $variable       Name of the PHP variable to bind to the SQL statement parameter.
93      *
94      * @param integer $type         Explicit data type for the parameter using the Doctrine::PARAM_* constants. To return
95      *                              an INOUT parameter from a stored procedure, use the bitwise OR operator to set the
96      *                              Doctrine::PARAM_INPUT_OUTPUT bits for the data_type parameter.
97      *
98      * @param integer $length       Length of the data type. To indicate that a parameter is an OUT parameter
99      *                              from a stored procedure, you must explicitly set the length.
100      * @param mixed $driverOptions
101      * @return boolean              Returns TRUE on success or FALSE on failure.
102      */
103     public function bindParam($column, &$variable, $type = null, $length = null, $driverOptions = array())
104     {
105         
106     }
107     /**
108      * closeCursor
109      * Closes the cursor, enabling the statement to be executed again.
110      *
111      * @return boolean              Returns TRUE on success or FALSE on failure.
112      */
113     public function closeCursor()
114     {
115         return true;
116     }
117     /** 
118      * columnCount
119      * Returns the number of columns in the result set 
120      *
121      * @return integer              Returns the number of columns in the result set represented
122      *                              by the Doctrine_Adapter_Statement_Interface object. If there is no result set,
123      *                              this method should return 0.
124      */
125     public function columnCount()
126     {
127         return 0;        
128     }
129     /**
130      * errorCode
131      * Fetch the SQLSTATE associated with the last operation on the statement handle 
132      *
133      * @see Doctrine_Adapter_Interface::errorCode()
134      * @return string       error code string
135      */
136     public function errorCode()
137     {
138         return array();
139     }
140     /**
141      * errorInfo
142      * Fetch extended error information associated with the last operation on the statement handle
143      *
144      * @see Doctrine_Adapter_Interface::errorInfo()
145      * @return array        error info array
146      */
147     public function errorInfo()
148     { 
149         return array();
150     }
151     /**
152      * fetch
153      *
154      * @see Doctrine::FETCH_* constants
155      * @param integer $fetchStyle           Controls how the next row will be returned to the caller.
156      *                                      This value must be one of the Doctrine::FETCH_* constants,
157      *                                      defaulting to Doctrine::FETCH_BOTH
158      *
159      * @param integer $cursorOrientation    For a PDOStatement object representing a scrollable cursor, 
160      *                                      this value determines which row will be returned to the caller. 
161      *                                      This value must be one of the Doctrine::FETCH_ORI_* constants, defaulting to
162      *                                      Doctrine::FETCH_ORI_NEXT. To request a scrollable cursor for your 
163      *                                      Doctrine_Adapter_Statement_Interface object,
164      *                                      you must set the Doctrine::ATTR_CURSOR attribute to Doctrine::CURSOR_SCROLL when you
165      *                                      prepare the SQL statement with Doctrine_Adapter_Interface->prepare().
166      *
167      * @param integer $cursorOffset         For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for which the
168      *                                      $cursorOrientation parameter is set to Doctrine::FETCH_ORI_ABS, this value specifies
169      *                                      the absolute number of the row in the result set that shall be fetched.
170      *                                      
171      *                                      For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for 
172      *                                      which the $cursorOrientation parameter is set to Doctrine::FETCH_ORI_REL, this value 
173      *                                      specifies the row to fetch relative to the cursor position before 
174      *                                      Doctrine_Adapter_Statement_Interface->fetch() was called.
175      *
176      * @return mixed
177      */
178     public function fetch($fetchStyle = Doctrine::FETCH_BOTH,
179                           $cursorOrientation = Doctrine::FETCH_ORI_NEXT,
180                           $cursorOffset = null)
181     {
182         return array();
183     }
184     /**
185      * fetchAll
186      * Returns an array containing all of the result set rows
187      *
188      * @param integer $fetchStyle           Controls how the next row will be returned to the caller.
189      *                                      This value must be one of the Doctrine::FETCH_* constants,
190      *                                      defaulting to Doctrine::FETCH_BOTH
191      *
192      * @param integer $columnIndex          Returns the indicated 0-indexed column when the value of $fetchStyle is
193      *                                      Doctrine::FETCH_COLUMN. Defaults to 0.
194      *
195      * @return array
196      */
197     public function fetchAll($fetchMode = Doctrine::FETCH_BOTH)
198     {
199         return array();
200     }
201     /**
202      * execute
203      * Executes a prepared statement
204      *
205      * If the prepared statement included parameter markers, you must either:
206      * call PDOStatement->bindParam() to bind PHP variables to the parameter markers:
207      * bound variables pass their value as input and receive the output value,
208      * if any, of their associated parameter markers or pass an array of input-only
209      * parameter values
210      *
211      *
212      * @param array $params             An array of values with as many elements as there are
213      *                                  bound parameters in the SQL statement being executed.
214      * @return boolean                  Returns TRUE on success or FALSE on failure.
215      */
216     public function execute($params = null)
217     {
218         if (is_object($this->mock)) {
219             $this->mock->addQuery($this->queryString);
220         }
221         return true;
222     }
223     /**
224      * fetchColumn
225      * Returns a single column from the next row of a
226      * result set or FALSE if there are no more rows.
227      *
228      * @param integer $columnIndex          0-indexed number of the column you wish to retrieve from the row. If no 
229      *                                      value is supplied, Doctrine_Adapter_Statement_Interface->fetchColumn() 
230      *                                      fetches the first column.
231      *
232      * @return string                       returns a single column in the next row of a result set.
233      */
234     public function fetchColumn($columnIndex = 0)
235     {
236         return 0;
237     }
238     /**
239      * fetchObject
240      * Fetches the next row and returns it as an object.
241      *
242      * Fetches the next row and returns it as an object. This function is an alternative to 
243      * Doctrine_Adapter_Statement_Interface->fetch() with Doctrine::FETCH_CLASS or Doctrine::FETCH_OBJ style.
244      *
245      * @param string $className             Name of the created class, defaults to stdClass. 
246      * @param array $args                   Elements of this array are passed to the constructor.
247      *
248      * @return mixed                        an instance of the required class with property names that correspond 
249      *                                      to the column names or FALSE in case of an error.
250      */
251     public function fetchObject($className = 'stdClass', $args = array()) 
252     {
253         return new $className();
254     }
255     /**
256      * nextRowset
257      * Advances to the next rowset in a multi-rowset statement handle
258      * 
259      * Some database servers support stored procedures that return more than one rowset 
260      * (also known as a result set). The nextRowset() method enables you to access the second 
261      * and subsequent rowsets associated with a PDOStatement object. Each rowset can have a 
262      * different set of columns from the preceding rowset.
263      *
264      * @return boolean                      Returns TRUE on success or FALSE on failure.
265      */
266     public function nextRowset()
267     {
268         return true;
269     }
270     /**
271      * rowCount
272      * rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement 
273      * executed by the corresponding object.
274      *
275      * If the last SQL statement executed by the associated Statement object was a SELECT statement, 
276      * some databases may return the number of rows returned by that statement. However, 
277      * this behaviour is not guaranteed for all databases and should not be 
278      * relied on for portable applications.
279      *
280      * @return integer                      Returns the number of rows.
281      */
282     public function rowCount()
283     { 
284         return 0;
285     }
286     /**
287      * getColumnMeta
288      * Returns metadata for a column in a result set
289      *
290      * @param integer $column               The 0-indexed column in the result set.
291      *
292      * @return array                        Associative meta data array with the following structure:
293      *
294      *          native_type                 The PHP native type used to represent the column value.
295      *          driver:decl_                type The SQL type used to represent the column value in the database. If the column in the result set is the result of a function, this value is not returned by PDOStatement->getColumnMeta().
296      *          flags                       Any flags set for this column.
297      *          name                        The name of this column as returned by the database.
298      *          len                         The length of this column. Normally -1 for types other than floating point decimals.
299      *          precision                   The numeric precision of this column. Normally 0 for types other than floating point decimals.
300      *          pdo_type                    The type of this column as represented by the PDO::PARAM_* constants.
301      */
302     public function getColumnMeta($column)
303     { }
304     /**
305      * getAttribute
306      * Retrieve a statement attribute 
307      *
308      * @param integer $attribute
309      * @see Doctrine::ATTR_* constants
310      * @return mixed                        the attribute value
311      */
312     public function getAttribute($attribute)
313     { }
314     /**
315      * setAttribute
316      * Set a statement attribute
317      *
318      * @param integer $attribute
319      * @param mixed $value                  the value of given attribute
320      * @return boolean                      Returns TRUE on success or FALSE on failure.
321      */
322     public function setAttribute($attribute, $value)
323     { }
324     /**
325      * setFetchMode
326      * Set the default fetch mode for this statement
327      *
328      * @param integer $mode                 The fetch mode must be one of the Doctrine::FETCH_* constants.
329      * @return boolean                      Returns 1 on success or FALSE on failure.
330      */
331     public function setFetchMode($mode, $arg1 = null, $arg2 = null)
332     { }
333 }