2010-06-03 03:36:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class CommentAdminTest extends FunctionalTest {
|
|
|
|
|
|
|
|
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
|
|
|
|
|
|
|
function testNumModerated() {
|
|
|
|
|
|
|
|
$comm = new CommentAdmin();
|
|
|
|
$resp = $comm->NumModerated();
|
|
|
|
$this->assertEquals(1, $resp);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testNumUnmoderated(){
|
|
|
|
|
|
|
|
$comm = new CommentAdmin();
|
|
|
|
$resp = $comm->NumUnmoderated();
|
2010-10-04 07:42:32 +02:00
|
|
|
$this->assertEquals(2, $resp);
|
2010-06-03 03:36:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function testNumSpam(){
|
|
|
|
|
|
|
|
$comm = new CommentAdmin();
|
|
|
|
$resp = $comm->NumSpam();
|
|
|
|
$this->assertEquals(0, $resp);
|
|
|
|
}
|
|
|
|
|
2010-10-04 07:42:32 +02:00
|
|
|
function testdeletemarked(){
|
|
|
|
$comm = $this->objFromFixture('PageComment', 'Comment1');
|
|
|
|
$id = $comm->ID;
|
2010-06-03 03:43:20 +02:00
|
|
|
$this->logInWithPermission('ADMIN');
|
2010-10-04 07:42:32 +02:00
|
|
|
$result = $this->get("admin/comments/EditForm/field/Comments/item/$id/delete");
|
|
|
|
$checkComm = DataObject::get_by_id('PageComment',$id);
|
|
|
|
|
2010-10-04 08:07:16 +02:00
|
|
|
$this->assertFalse($checkComm);
|
2010-06-03 03:36:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|