]> git.mxchange.org Git - friendica.git/blob - tests/Util/Database/StaticDatabase.php
Moved class call
[friendica.git] / tests / Util / Database / StaticDatabase.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\Util\Database;
23
24 use Friendica\Database\Database;
25 use Friendica\Database\DBStructure;
26 use PDO;
27 use PDOException;
28
29 /**
30  * Overrides the Friendica database class for re-using the connection
31  * for different tests
32  *
33  * Overrides functionality to enforce one transaction per call (for nested transactions)
34  */
35 class StaticDatabase extends Database
36 {
37         /**
38          * @var ExtendedPDO
39          */
40         private static $staticConnection;
41
42         /**
43          * Override the behaviour of connect, due there is just one, static connection at all
44          *
45          * @return bool|void
46          */
47         public function connect()
48         {
49                 if (!is_null($this->connection) && $this->connected()) {
50                         return true;
51                 }
52
53                 if (!isset(self::$staticConnection)) {
54                         self::statConnect($_SERVER);
55                 }
56
57                 $this->driver = 'pdo';
58                 $this->connection = self::$staticConnection;
59                 $this->connected = true;
60
61                 $this->setTestmode(true);
62
63                 DBStructure::checkInitialValues();
64
65                 return $this->connected;
66         }
67
68         /**
69          * Override the transaction since there are now hierachical transactions possible
70          *
71          * @return bool
72          */
73         public function transaction()
74         {
75                 if (!$this->in_transaction && !$this->connection->beginTransaction()) {
76                         return false;
77                 }
78
79                 $this->in_transaction = true;
80                 return true;
81         }
82
83         /**
84          * Does a commit
85          *
86          * @return boolean Was the command executed successfully?
87          */
88         public function commit()
89         {
90                 if (!$this->performCommit()) {
91                         return false;
92                 }
93                 $this->in_transaction = false;
94                 return true;
95         }
96
97         /**
98          * Setup of the global, static connection
99          * Either through explicit calling or through implicit using the Database
100          *
101          * @param array $server $_SERVER variables
102          */
103         public static function statConnect(array $server)
104         {
105                 // Use environment variables for mysql if they are set beforehand
106                 if (!empty($server['MYSQL_HOST'])
107                     && (!empty($server['MYSQL_USERNAME'] || !empty($server['MYSQL_USER'])))
108                     && $server['MYSQL_PASSWORD'] !== false
109                     && !empty($server['MYSQL_DATABASE']))
110                 {
111                         $db_host = $server['MYSQL_HOST'];
112                         if (!empty($server['MYSQL_PORT'])) {
113                                 $db_host .= ':' . $server['MYSQL_PORT'];
114                         }
115
116                         if (!empty($server['MYSQL_USERNAME'])) {
117                                 $db_user = $server['MYSQL_USERNAME'];
118                         } else {
119                                 $db_user = $server['MYSQL_USER'];
120                         }
121                         $db_pw = (string) $server['MYSQL_PASSWORD'];
122                         $db_data = $server['MYSQL_DATABASE'];
123                 }
124
125                 $port       = 0;
126                 $serveraddr = trim($db_host);
127                 $serverdata = explode(':', $serveraddr);
128                 $server     = $serverdata[0];
129                 if (count($serverdata) > 1) {
130                         $port = trim($serverdata[1]);
131                 }
132                 $server  = trim($server);
133                 $user    = trim($db_user);
134                 $pass    = trim($db_pw);
135                 $db      = trim($db_data);
136
137                 if (!(strlen($server) && strlen($user))) {
138                         return;
139                 }
140
141                 $connect = "mysql:host=" . $server . ";dbname=" . $db;
142
143                 if ($port > 0) {
144                         $connect .= ";port=" . $port;
145                 }
146
147                 try {
148                         self::$staticConnection = @new ExtendedPDO($connect, $user, $pass);
149                         self::$staticConnection->setAttribute(PDO::ATTR_AUTOCOMMIT,0);
150                 } catch (PDOException $e) {
151                         /// @TODO At least log exception, don't ignore it!
152                 }
153         }
154
155         /**
156          * @return ExtendedPDO The global, static connection
157          */
158         public static function getGlobConnection()
159         {
160                 return self::$staticConnection;
161         }
162
163         /**
164          * Perform a global commit for every nested transaction of the static connection
165          */
166         public static function statCommit()
167         {
168                 if (isset(self::$staticConnection)) {
169                         while (self::$staticConnection->getTransactionDepth() > 0) {
170                                 self::$staticConnection->commit();
171                         }
172                 }
173         }
174
175         /**
176          * Perform a global rollback for every nested transaction of the static connection
177          */
178         public static function statRollback()
179         {
180                 if (isset(self::$staticConnection)) {
181                         while (self::$staticConnection->getTransactionDepth() > 0) {
182                                 self::$staticConnection->rollBack();
183                         }
184                 }
185         }
186 }