]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/HTTPInputDataTest.php
Add ContentType Injection for HTTPInputData tests
[friendica.git] / tests / src / Util / HTTPInputDataTest.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\src\Util;
23
24 use Friendica\Test\MockedTest;
25 use Friendica\Test\Util\HTTPInputDataDouble;
26 use Friendica\Util\HTTPInputData;
27
28 /**
29  * Testing HTTPInputData
30  *
31  * @see HTTPInputData
32  */
33 class HTTPInputDataTest extends MockedTest
34 {
35         /**
36          * Returns the data stream for the unit test
37          * Each array element of the first hierarchy represents one test run
38          * Each array element of the second hierarchy represents the parameters, passed to the test function
39          *
40          * @return array[]
41          */
42         public function dataStream()
43         {
44                 return [
45                         'example' => [
46                                 'contenttype' => 'multipart/form-data;boundary=43395968-f65c-437e-b536-5b33e3e3c7e5;charset=utf8',
47                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/example1.httpinput'),
48                                 'expected'    => [
49                                         'variables' => [
50                                                 'display_name'      => 'User Name',
51                                                 'note'              => 'About me',
52                                                 'locked'            => 'false',
53                                                 'fields_attributes' => [
54                                                         0 => [
55                                                                 'name'  => 'variable 1',
56                                                                 'value' => 'value 1',
57                                                         ],
58                                                         1 => [
59                                                                 'name'  => 'variable 2',
60                                                                 'value' => 'value 2',
61                                                         ]
62                                                 ]
63                                         ],
64                                         'files' => []
65                                 ]
66                         ]
67                 ];
68         }
69
70         /**
71          * Tests the HTTPInputData::process() method
72          *
73          * @param string $contentType The content typer of the transmitted data
74          * @param string $input       The input, we got from the data stream
75          * @param array  $expected    The expected output
76          *
77          * @dataProvider dataStream
78          * @see HTTPInputData::process()
79          */
80         public function testHttpInput(string $contentType, string $input, array $expected)
81         {
82                 HTTPInputDataDouble::setPhpInputContentType($contentType);
83                 HTTPInputDataDouble::setPhpInputContent($input);
84                 $stream = fopen('php://memory', 'r+');
85                 fwrite($stream, $input);
86                 rewind($stream);
87
88                 HTTPInputDataDouble::setPhpInputStream($stream);
89                 $output = HTTPInputDataDouble::process();
90                 $this->assertEqualsCanonicalizing($expected, $output);
91         }
92 }