]> git.mxchange.org Git - friendica.git/blob - tests/Util/HTTPInputDataDouble.php
Enable testability for HTTPInputData and create a failing test for it :-)
[friendica.git] / tests / Util / HTTPInputDataDouble.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
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;
23
24 use Friendica\Util\HTTPInputData;
25
26 /**
27  * This class is used to enable testability for HTTPInputData
28  * It overrides the two PHP input functionality with custom content
29  */
30 class HTTPInputDataDouble extends HTTPInputData
31 {
32         /** @var false|resource */
33         protected static $injectedStream = false;
34         /** @var false|string */
35         protected static $injectedContent = false;
36
37         /**
38          * injects the PHP input stream for a test
39          * @param false|resource $stream
40          */
41         public static function setPhpInputStream($stream)
42         {
43                 self::$injectedStream = $stream;
44         }
45
46         /**
47          * injects the PHP input content for a test
48          * @param false|string $content
49          */
50         public static function setPhpInputContent($content)
51         {
52                 self::$injectedContent = $content;
53         }
54
55         /** {@inheritDoc} */
56         protected static function getPhpInputStream()
57         {
58                 return static::$injectedStream;
59         }
60
61         /** {@inheritDoc} */
62         protected static function getPhpInputContent()
63         {
64                 return static::$injectedContent;
65         }
66 }