]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/HTTPInputDataTest.php
Two (hopefully) easy tests added
[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                         'multipart' => [
44                                 'contenttype' => 'multipart/form-data;boundary=43395968-f65c-437e-b536-5b33e3e3c7e5;charset=utf8',
45                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/multipart.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                         'form-urlencoded' => [
66                                 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8',
67                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded.httpinput'),
68                                 'expected'    => [
69                                         'variables' => [
70                                                 'title' => 'Test2',
71                                         ],
72                                         'files' => []
73                                 ]
74                         ],
75                         'form-urlencoded-json' => [
76                                 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8',
77                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded-json.httpinput'),
78                                 'expected'    => [
79                                         'variables' => [
80                                                 'media_ids'    => [],
81                                                 'sensitive'    => false, 
82                                                 'status'       => 'Test Status',
83                                                 'visibility'   => 'private',
84                                                 'spoiler_text' => 'Title'
85                                         ],
86                                         'files' => []
87                                 ]
88                         ]
89                 ];
90         }
91
92         /**
93          * Tests the HTTPInputData::process() method
94          * @see HTTPInputData::process()
95          * @param string $contenttype The content typer of the transmitted data
96          * @param string $input       The input, we got from the data stream
97          * @param array  $expected    The expected output
98          * @dataProvider dataStream
99          */
100         public function testHttpInput(string $contenttype, string $input, array $expected)
101         {
102                 $_SERVER['CONTENT_TYPE'] = $contenttype;
103
104                 HTTPInputDataDouble::setPhpInputContent($input);
105                 $stream = fopen('php://memory', 'r+');
106                 fwrite($stream, $input);
107                 rewind($stream);
108
109                 HTTPInputDataDouble::setPhpInputStream($stream);
110                 $output = HTTPInputDataDouble::process();
111                 $this->assertEqualsCanonicalizing($expected, $output);
112         }
113 }