mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
36 lines
777 B
PHP
36 lines
777 B
PHP
|
<?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();
|
||
|
$this->assertEquals(1, $resp);
|
||
|
}
|
||
|
|
||
|
function testNumSpam(){
|
||
|
|
||
|
$comm = new CommentAdmin();
|
||
|
$resp = $comm->NumSpam();
|
||
|
$this->assertEquals(0, $resp);
|
||
|
}
|
||
|
|
||
|
function testacceptmarked(){
|
||
|
$id = $this->idFromFixture('PageComment', 'Comment1');
|
||
|
$this->logInWithPermssion('ADMIN');
|
||
|
$result = $this->get('admin/comments/EditForm/field/Comments/item/2/delete');
|
||
|
$this->assertEquals(200, $result->getStatusCode());
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|