]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/HTTPInputDataTest.php
Merge branch 'stable' into develop
[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                         'multipart' => [
46                                 'contenttype' => 'multipart/form-data;boundary=43395968-f65c-437e-b536-5b33e3e3c7e5;charset=utf8',
47                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/multipart.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                         'multipart-file' => [
68                                 'contenttype' => 'multipart/form-data;boundary=6d4d5a40-651a-4468-a62e-5a6ca2bf350d;charset=utf8',
69                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/multipart-file.httpinput'),
70                                 'expected'    => [
71                                         'variables' => [
72                                                 'display_name'      => 'Vorname Nachname',
73                                                 'note'              => 'About me',
74                                                 'fields_attributes' => [
75                                                         0 => [
76                                                                 'name'  => 'variable 1',
77                                                                 'value' => 'value 1',
78                                                         ],
79                                                         1 => [
80                                                                 'name'  => 'variable 2',
81                                                                 'value' => 'value 2',
82                                                         ]
83                                                 ]
84                                         ],
85                                         'files' => [
86                                                 'avatar' => [
87                                                         'name'     => '8ZUCS34Y5XNH',
88                                                         'type'     => 'image/png',
89                                                         'tmp_name' => '8ZUCS34Y5XNH',
90                                                         'error'    => 0,
91                                                         'size'     => 349330
92                                                 ],
93                                                 'header' => [
94                                                         'name'     => 'V2B6Z1IICGPM',
95                                                         'type'     => 'image/png',
96                                                         'tmp_name' => 'V2B6Z1IICGPM',
97                                                         'error'    => 0,
98                                                         'size'     => 1323635
99                                                 ]
100                                         ]
101                                 ]
102                         ],
103                         'form-urlencoded' => [
104                                 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8',
105                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded.httpinput'),
106                                 'expected'    => [
107                                         'variables' => [
108                                                 'title' => 'Test2',
109                                         ],
110                                         'files' => []
111                                 ]
112                         ],
113                         'form-urlencoded-json' => [
114                                 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8',
115                                 'input'       => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded-json.httpinput'),
116                                 'expected'    => [
117                                         'variables' => [
118                                                 'media_ids'    => [],
119                                                 'sensitive'    => false,
120                                                 'status'       => 'Test Status',
121                                                 'visibility'   => 'private',
122                                                 'spoiler_text' => 'Title'
123                                         ],
124                                         'files' => []
125                                 ]
126                         ]
127                 ];
128         }
129
130         /**
131          * Tests the HTTPInputData::process() method
132          *
133          * @param string $contentType The content typer of the transmitted data
134          * @param string $input       The input, we got from the data stream
135          * @param array  $expected    The expected output
136          *
137          * @dataProvider dataStream
138          * @see HTTPInputData::process()
139          */
140         public function testHttpInput(string $contentType, string $input, array $expected)
141         {
142                 HTTPInputDataDouble::setPhpInputContentType($contentType);
143                 HTTPInputDataDouble::setPhpInputContent($input);
144                 $stream = fopen('php://memory', 'r+');
145                 fwrite($stream, $input);
146                 rewind($stream);
147
148                 HTTPInputDataDouble::setPhpInputStream($stream);
149                 $output = HTTPInputDataDouble::process();
150                 $this->assertEqualsCanonicalizing($expected, $output);
151         }
152 }