]> git.mxchange.org Git - friendica.git/blob - tests/Util/HTTPInputDataDouble.php
Rework Module\ToggleMobile to check for local links
[friendica.git] / tests / Util / HTTPInputDataDouble.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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 $injectedStream = false;
34         /** @var false|string */
35         protected $injectedContent = false;
36
37         /**
38          * injects the PHP input stream for a test
39          *
40          * @param false|resource $stream
41          */
42         public function setPhpInputStream($stream)
43         {
44                 $this->injectedStream = $stream;
45         }
46
47         /**
48          * injects the PHP input content for a test
49          *
50          * @param false|string $content
51          */
52         public function setPhpInputContent($content)
53         {
54                 $this->injectedContent = $content;
55         }
56
57         /**
58          * injects the PHP input content type for a test
59          *
60          * @param false|string $contentType
61          */
62         public function setPhpInputContentType($contentType)
63         {
64                 $this->injectedContentType = $contentType;
65         }
66
67         /** {@inheritDoc} */
68         protected function getPhpInputStream()
69         {
70                 return $this->injectedStream;
71         }
72
73         /** {@inheritDoc} */
74         protected function getPhpInputContent()
75         {
76                 return $this->injectedContent;
77         }
78
79         protected function fetchFileData($stream, string $boundary, array $headers, string $filename)
80         {
81                 $data = parent::fetchFileData($stream, $boundary, $headers, $filename);
82                 if (!empty($data['tmp_name'])) {
83                         unlink($data['tmp_name']);
84                         $data['tmp_name'] = $data['name'];
85                 }
86
87                 return $data;
88         }
89 }