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/rss_images/test.php

36 lines
1 KiB
PHP

<?php
class RSSImagesTest extends ShimmieWebTestCase {
function testImageFeed() {
$this->log_in_as_user();
$image_id = $this->post_image("ext/simpletest/data/pbx_screenshot.jpg", "pbx computer screenshot");
$this->log_out();
$this->get_page('rss/images');
$this->assert_mime("application/rss+xml");
$this->assert_no_text("Exception");
$this->get_page('rss/images/1');
$this->assert_mime("application/rss+xml");
$this->assert_no_text("Exception");
# FIXME: test that the image is actually found
$this->get_page('rss/images/computer/1');
$this->assert_mime("application/rss+xml");
$this->assert_no_text("Exception");
# valid tag, invalid page
$this->get_page('rss/images/computer/2');
$this->assert_mime("application/rss+xml");
$this->assert_no_text("Exception");
# not found
$this->get_page('rss/images/waffle/2');
$this->assert_mime("application/rss+xml");
$this->assert_no_text("Exception");
$this->log_in_as_admin();
$this->delete_image($image_id);
$this->log_out();
}
}
?>