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