40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
class FeaturedTest extends ShimmiePHPUnitTestCase
|
|
{
|
|
public function testFeatured(): void
|
|
{
|
|
global $config;
|
|
|
|
// Set up
|
|
$this->log_in_as_user();
|
|
$image_id = $this->post_image("tests/pbx_screenshot.jpg", "pbx");
|
|
|
|
# FIXME: test that regular users can't feature things
|
|
|
|
// Admin can feature things
|
|
$this->log_in_as_admin();
|
|
$page = $this->post_page("featured_image/set/$image_id");
|
|
$this->assertEquals(302, $page->code);
|
|
|
|
$this->get_page("post/list");
|
|
$this->assert_text("Featured Post");
|
|
|
|
# FIXME: test changing from one feature to another
|
|
|
|
$page = $this->get_page("featured_image/download");
|
|
$this->assertEquals(200, $page->code);
|
|
|
|
$page = $this->get_page("featured_image/view");
|
|
$this->assertEquals(200, $page->code);
|
|
|
|
// after deletion, there should be no feature
|
|
$this->delete_image($image_id);
|
|
$this->get_page("post/list");
|
|
$this->assert_no_text("Featured Post");
|
|
}
|
|
}
|