objFromFixture('CommentableItem', 'first'); // comments sitewide $response = $this->get('CommentingController/rss'); $this->assertEquals(10, substr_count($response->getBody(), ""), "10 approved, non spam comments on page 1"); $response = $this->get('CommentingController/rss?start=10'); $this->assertEquals(4, substr_count($response->getBody(), ""), "3 approved, non spam comments on page 2"); // all comments on a type $response = $this->get('CommentingController/rss/CommentableItem'); $this->assertEquals(10, substr_count($response->getBody(), "")); $response = $this->get('CommentingController/rss/CommentableItem?start=10'); $this->assertEquals(4, substr_count($response->getBody(), ""), "3 approved, non spam comments on page 2"); // specific page $response = $this->get('CommentingController/rss/CommentableItem/'.$item->ID); $this->assertEquals(1, substr_count($response->getBody(), "")); $this->assertContains('FA', $response->getBody()); // test accessing comments on a type that doesn't exist $response = $this->get('CommentingController/rss/Fake'); $this->assertEquals(404, $response->getStatusCode()); } public function testRSSSecuredCommentsForm() { $this->markTestIncomplete("Not implemented"); } public function testCommentsForm() { $this->markTestIncomplete("Not implemented"); } public function testDoCommentsForm() { $this->markTestIncomplete("Not implemented"); } }