2010-02-18 14:34:44 +00:00
|
|
|
<?php
|
2019-05-28 17:59:38 +01:00
|
|
|
class BlotterTest extends ShimmiePHPUnitTestCase
|
|
|
|
{
|
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$this->log_in_as_admin();
|
|
|
|
//$this->assert_text("Blotter Editor");
|
|
|
|
//$this->click("Blotter Editor");
|
|
|
|
//$this->log_out();
|
|
|
|
}
|
2010-02-18 14:34:44 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
public function testDenial()
|
|
|
|
{
|
|
|
|
$this->get_page("blotter/editor");
|
|
|
|
$this->assert_response(403);
|
|
|
|
$this->get_page("blotter/add");
|
|
|
|
$this->assert_response(403);
|
|
|
|
$this->get_page("blotter/remove");
|
|
|
|
$this->assert_response(403);
|
|
|
|
}
|
2010-02-18 16:22:10 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
public function testAddViewRemove()
|
|
|
|
{
|
|
|
|
$this->log_in_as_admin();
|
2010-02-18 15:58:23 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
$this->get_page("blotter/editor");
|
|
|
|
//$this->set_field("entry_text", "blotter testing");
|
|
|
|
//$this->click("Add");
|
|
|
|
//$this->assert_text("blotter testing");
|
2010-02-18 15:58:23 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
$this->get_page("blotter");
|
|
|
|
//$this->assert_text("blotter testing");
|
2010-02-18 15:58:23 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
$this->get_page("blotter/editor");
|
|
|
|
//$this->click("Remove");
|
|
|
|
//$this->assert_no_text("blotter testing");
|
|
|
|
}
|
2010-02-18 14:34:44 +00:00
|
|
|
}
|