Coverage for Doctrine_Adapter_Mock

Back to coverage report

1 <?php
2 /*
3  *  $Id: Mock.php 2702 2007-10-03 21:43:22Z Jonathan.Wage $
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_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: 2702 $
32  */
33 class Doctrine_Adapter_Mock implements Doctrine_Adapter_Interface, Countable
34 {
35     private $name;
36     
37     private $queries = array();
38     
39     private $exception = array();
40     
41     private $lastInsertIdFail = false;
42
43     public function __construct($name = null) 
44     {
45         $this->name = $name;
46     }
47     public function getName() 
48     {
49         return $this->name;
50     }
51     public function pop() 
52     {
53         return array_pop($this->queries);
54     }
55     public function forceException($name, $message = '', $code = 0) 
56     {
57         $this->exception = array($name, $message, $code);
58     }
59     public function prepare($query)
60     {
61         $mock = new Doctrine_Adapter_Statement_Mock($this, $query);
62         $mock->queryString = $query;
63         
64         return $mock;
65     }
66     public function addQuery($query)
67     {
68         $this->queries[] = $query;
69     }
70     public function query($query) 
71     {
72         $this->queries[] = $query;
73
74         $e    = $this->exception;
75
76         if ( ! empty($e)) {
77             $name = $e[0];
78
79             $this->exception = array();
80
81             throw new $name($e[1], $e[2]);
82         }
83
84         $stmt = new Doctrine_Adapter_Statement_Mock($this, $query);
85         $stmt->queryString = $query;
86         
87         return $stmt;
88     }
89     public function getAll() 
90     {
91         return $this->queries;
92     }
93     public function quote($input) 
94     {
95         return "'" . addslashes($input) . "'";
96     }
97     public function exec($statement) 
98     {
99         $this->queries[] = $statement;
100
101         $e    = $this->exception;
102
103         if ( ! empty($e)) {
104             $name = $e[0];
105
106             $this->exception = array();
107
108             throw new $name($e[1], $e[2]);
109         }
110
111         return 0;
112     }
113     public function forceLastInsertIdFail($fail = true) 
114     {
115         if ($fail) {
116             $this->lastInsertIdFail = true;
117         } else {
118             $this->lastInsertIdFail = false;
119         }
120     }
121     public function lastInsertId()
122     {
123         $this->queries[] = 'LAST_INSERT_ID()';
124         if ($this->lastInsertIdFail) {
125             return null;
126         } else {
127             return 1;
128         }
129     }
130     public function count() 
131     {
132         return count($this->queries);    
133     }
134     public function beginTransaction()
135     {
136         $this->queries[] = 'BEGIN TRANSACTION';
137     }
138     public function commit()
139     {
140         $this->queries[] = 'COMMIT';
141     }
142     public function rollBack() 
143     {
144         $this->queries[] = 'ROLLBACK';
145     }
146     public function errorCode() 
147     { }
148     public function errorInfo()
149     { }
150     public function getAttribute($attribute) 
151     {
152         if ($attribute == Doctrine::ATTR_DRIVER_NAME)
153             return strtolower($this->name);
154     }
155     public function setAttribute($attribute, $value) 
156     {
157                                        
158     }
159     public function sqliteCreateFunction()
160     { }
161 }