aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plupload/plupload_test.php
blob: 65141f4f2a83b5593e93d7d69d154d9ca2460cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/**
 *
 * This file is part of the phpBB Forum Software package.
 *
 * @copyright (c) phpBB Limited <https://www.phpbb.com>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 * For full copyright and license information, please see
 * the docs/CREDITS.txt file.
 *
 */

class phpbb_plupload_test extends phpbb_test_case
{
	public function generate_resize_string_data()
	{
		return array(
			array(
				0,
				0,
				'',
			),
			array(
				130,
				150,
				'resize: {width: 130, height: 150, quality: 85},'
			),
		);
	}

	/**
	* @dataProvider generate_resize_string_data
	*/
	public function test_generate_resize_string($config_width, $config_height, $expected)
	{
		global $phpbb_root_path, $phpEx;

		$lang = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));

		$config = new \phpbb\config\config(array(
			'img_max_width'		=> $config_width,
			'img_max_height'	=> $config_height,
			'upload_path'		=> 'files',
		));
		$plupload = new \phpbb\plupload\plupload(
			'',
			$config,
			new phpbb_mock_request,
			new \phpbb\user($lang, '\phpbb\datetime'),
			new \bantu\IniGetWrapper\IniGetWrapper,
			new \phpbb\mimetype\guesser(array(new \phpbb\mimetype\extension_guesser))
		);

		$this->assertEquals($expected, $plupload->generate_resize_string());
	}

	public function data_get_chunk_size()
	{
		return [
			[[
				'memory_limit' => -1,
				'upload_max_filesize' => 0,
				'post_max_size' => 0,
			], 0],
			[[
				'memory_limit' => -1,
				'upload_max_filesize' => 500,
				'post_max_size' => 400,
			], 200],
			[[
				'memory_limit' => 100,
				'upload_max_filesize' => 0,
				'post_max_size' => 300,
			], 50],
			[[
				'memory_limit' => 300,
				'upload_max_filesize' => 200,
				'post_max_size' => 0,
			], 100],
			[[
				'memory_limit' => 3000,
				'upload_max_filesize' => 800,
				'post_max_size' => 900,
			], 400],
			[[
				'memory_limit' => 2000,
				'upload_max_filesize' => 1000,
				'post_max_size' => 600,
			], 300],
		];
	}

	/**
	 * @dataProvider data_get_chunk_size
	 */
	public function test_get_chunk_size($limits_ary, $expected)
	{
		global $phpbb_root_path, $phpEx;

		$lang = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));
		$config = new \phpbb\config\config([]);

		$ini_wrapper = $this->getMockBuilder('\bantu\IniGetWrapper\IniGetWrapper')
			->setMethods(['getBytes'])
			->getMock();
		$ini_wrapper->method('getBytes')
			->will($this->returnValueMap([
				['memory_limit', $limits_ary['memory_limit']],
				['upload_max_filesize', $limits_ary['upload_max_filesize']],
				['post_max_size', $limits_ary['post_max_size']]
			]));

		$plupload = new \phpbb\plupload\plupload(
			'',
			$config,
			new phpbb_mock_request,
			new \phpbb\user($lang, '\phpbb\datetime'),
			$ini_wrapper,
			new \phpbb\mimetype\guesser(array(new \phpbb\mimetype\extension_guesser))
		);

		$this->assertEquals($expected, $plupload->get_chunk_size());
	}
}