2009-07-19 19:35:46 +01:00
|
|
|
<?php
|
2009-07-21 07:36:12 +01:00
|
|
|
class SiteDescriptionTest extends SCoreWebTestCase {
|
2009-07-19 19:35:46 +01:00
|
|
|
function testSiteDescription() {
|
|
|
|
$this->log_in_as_admin();
|
|
|
|
$this->get_page('setup');
|
2009-08-19 01:28:48 +01:00
|
|
|
$this->assert_title("Shimmie Setup");
|
|
|
|
$this->set_field("_config_site_description", "A Shimmie testbed");
|
2009-09-20 03:50:32 +01:00
|
|
|
$this->set_field("_config_site_keywords", "foo,bar,baz");
|
2009-07-20 07:31:41 +01:00
|
|
|
$raw = $this->click("Save Settings");
|
2009-07-19 19:35:46 +01:00
|
|
|
|
|
|
|
$header = '<meta name="description" content="A Shimmie testbed">';
|
2009-07-20 07:31:41 +01:00
|
|
|
$this->assertTrue(strpos($raw, $header) > 0);
|
2009-09-20 03:50:32 +01:00
|
|
|
$this->assertTrue(strpos($raw, "foo") > 0);
|
2009-07-19 19:35:46 +01:00
|
|
|
|
|
|
|
$this->log_out();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|