This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/res_limit/test.php

85 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class ResolutionLimitTest extends ShimmiePHPUnitTestCase
{
public function testResLimitOK(): void
{
global $config;
$config->set_int("upload_min_height", 0);
$config->set_int("upload_min_width", 0);
$config->set_int("upload_max_height", 2000);
$config->set_int("upload_max_width", 2000);
$config->set_string("upload_ratios", "4:3 16:9");
$this->log_in_as_user();
$this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
//$this->assert_response(302);
$this->assert_no_text("Post too large");
$this->assert_no_text("Post too small");
$this->assert_no_text("ratio");
}
public function testResLimitSmall(): void
{
global $config;
$config->set_int("upload_min_height", 900);
$config->set_int("upload_min_width", 900);
$config->delete("upload_max_height");
$config->delete("upload_max_width");
$config->set_string("upload_ratios", "4:3 16:9");
$this->log_in_as_user();
$e = $this->assertException(UploadException::class, function () {
$this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
});
$this->assertEquals("Post too small", $e->getMessage());
}
public function testResLimitLarge(): void
{
global $config;
$config->set_int("upload_min_height", 0);
$config->set_int("upload_min_width", 0);
$config->set_int("upload_max_height", 100);
$config->set_int("upload_max_width", 100);
$config->set_string("upload_ratios", "4:3 16:9");
$e = $this->assertException(UploadException::class, function () {
$this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
});
$this->assertEquals("Post too large", $e->getMessage());
}
public function testResLimitRatio(): void
{
global $config;
$config->delete("upload_min_height");
$config->delete("upload_min_width");
$config->delete("upload_max_height");
$config->delete("upload_max_width");
$config->set_string("upload_ratios", "16:9");
$e = $this->assertException(UploadException::class, function () {
$this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
});
$this->assertEquals("Post needs to be in one of these ratios: 16:9", $e->getMessage());
}
# reset to defaults, otherwise this can interfere with
# other extensions' test suites
public function tearDown(): void
{
global $config;
$config->delete("upload_min_height");
$config->delete("upload_min_width");
$config->delete("upload_max_height");
$config->delete("upload_max_width");
$config->delete("upload_ratios");
parent::tearDown();
}
}