37 lines
1,018 B
PHP
37 lines
1,018 B
PHP
<?php
|
|
class HashBanTest extends ShimmieWebTestCase {
|
|
function testBan() {
|
|
$this->log_in_as_user();
|
|
$image_id = $this->post_image("ext/simpletest/data/pbx_screenshot.jpg", "pbx");
|
|
$this->log_out();
|
|
|
|
$this->log_in_as_admin();
|
|
$this->get_page("post/view/$image_id");
|
|
$this->click("Ban and Delete");
|
|
$this->log_out();
|
|
|
|
$this->log_in_as_user();
|
|
$this->get_page("post/view/$image_id");
|
|
$this->assert_response(404);
|
|
$image_id = $this->post_image("ext/simpletest/data/pbx_screenshot.jpg", "pbx");
|
|
$this->get_page("post/view/$image_id");
|
|
$this->assert_response(404);
|
|
$this->log_out();
|
|
|
|
$this->log_in_as_admin();
|
|
$this->get_page("image_hash_ban/list/1");
|
|
$this->click("Remove");
|
|
$this->log_out();
|
|
|
|
$this->log_in_as_user();
|
|
$image_id = $this->post_image("ext/simpletest/data/pbx_screenshot.jpg", "pbx");
|
|
$this->get_page("post/view/$image_id");
|
|
$this->assert_response(200);
|
|
$this->log_out();
|
|
|
|
$this->log_in_as_admin();
|
|
$this->delete_image($image_id);
|
|
$this->log_out();
|
|
}
|
|
}
|
|
?>
|