diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2015-04-14 09:10:47 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2015-04-14 09:10:47 +0530 |
commit | 2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f (patch) | |
tree | fe3219d74caa7d8afa1f28c05551c76bc00cac9f /tests | |
parent | bf107ba1af0f40471c1eecb86ce2e0cfae332ac1 (diff) | |
parent | ba1e3fd66173ccecf29f8dfef761772322182ff0 (diff) | |
download | forums-2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f.tar forums-2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f.tar.gz forums-2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f.tar.bz2 forums-2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f.tar.xz forums-2c0b1252c8ee7f9c40f15587aa00aa2e70a7168f.zip |
Merge branch '3.1.x'
Diffstat (limited to 'tests')
-rw-r--r-- | tests/plupload/plupload_test.php | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/plupload/plupload_test.php b/tests/plupload/plupload_test.php new file mode 100644 index 0000000000..2f47bf2b39 --- /dev/null +++ b/tests/plupload/plupload_test.php @@ -0,0 +1,53 @@ +<?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: 100},' + ), + ); + } + + /** + * @dataProvider generate_resize_string_data + */ + public function test_generate_resize_string($config_width, $config_height, $expected) + { + $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('\phpbb\datetime'), + new \phpbb\php\ini, + new \phpbb\mimetype\guesser(array(new \phpbb\mimetype\extension_guesser)) + ); + + $this->assertEquals($expected, $plupload->generate_resize_string()); + } +} |