40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
class ReportImageTest extends ShimmiePHPUnitTestCase
 | 
						|
{
 | 
						|
    public function testReportImage()
 | 
						|
    {
 | 
						|
        global $config, $database, $user;
 | 
						|
 | 
						|
        $this->log_in_as_admin();
 | 
						|
        $image_id = $this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
 | 
						|
        $this->get_page("post/view/$image_id");
 | 
						|
 | 
						|
        // Add image report
 | 
						|
        send_event(new AddReportedImageEvent(new ImageReport($image_id, $user->id, "report details")));
 | 
						|
 | 
						|
        // Check that the report exists
 | 
						|
        $config->set_bool("report_image_show_thumbs", true);
 | 
						|
        $this->get_page("image_report/list");
 | 
						|
        $this->assert_title("Reported Posts");
 | 
						|
        $this->assert_text("report details");
 | 
						|
 | 
						|
        $config->set_bool("report_image_show_thumbs", false);
 | 
						|
        $this->get_page("image_report/list");
 | 
						|
        $this->assert_title("Reported Posts");
 | 
						|
        $this->assert_text("report details");
 | 
						|
        $this->assert_text("$image_id");
 | 
						|
 | 
						|
        // Remove report
 | 
						|
        $report_id = (int)$database->get_one("SELECT id FROM image_reports");
 | 
						|
        send_event(new RemoveReportedImageEvent($report_id));
 | 
						|
 | 
						|
        // Check that the report is gone
 | 
						|
        $this->get_page("image_report/list");
 | 
						|
        $this->assert_title("Reported Posts");
 | 
						|
        $this->assert_no_text("report details");
 | 
						|
 | 
						|
        # FIXME: test delete image from report screen
 | 
						|
        # FIXME: test that >>123 works
 | 
						|
    }
 | 
						|
}
 |