mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
29bf71d3d6
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54640 467b73ca-7a2a-4603-9d3b-597d59a354a9
44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
|
|
class RestfulServerTest extends SapphireTest {
|
|
static $fixture_file = 'sapphire/tests/api/RestfulServerTest.yml';
|
|
|
|
function testCreate() {
|
|
/*
|
|
Disabled because it doesn't work in cli-script
|
|
// Test GET
|
|
$pageID = $this->idFromFixture('Page', 'page1');
|
|
|
|
$page1 = Director::test("api/v1/Page/$pageID", 'GET');
|
|
$page1xml = new RestfulService_Response($page1->getBody(), $page1->getStatusCode());
|
|
|
|
// Test fields
|
|
$this->assertEquals(200, $page1xml->getStatusCode());
|
|
$this->assertEquals('First Page', (string)$page1xml->xpath_one('/Page/Title'));
|
|
|
|
// Test has_many relationships
|
|
$comments = $page1xml->xpath('/Page/Comments/PageComment');
|
|
$this->assertEquals(Director::absoluteURL('api/v1/PageComment/3'), (string)$comments[0]['href']);
|
|
$this->assertEquals(Director::absoluteURL('api/v1/PageComment/4'), (string)$comments[1]['href']);
|
|
$this->assertEquals(3, (string)$comments[0]['id']);
|
|
$this->assertEquals(4, (string)$comments[1]['id']);
|
|
|
|
/// Test has_one relationships
|
|
$parent = $page1xml->xpath_one('/Page/Parent');
|
|
$this->assertEquals(Director::absoluteURL('api/v1/SiteTree/1'), (string)$parent['href']);
|
|
$this->assertEquals(1, (string)$parent['id']);
|
|
|
|
$deletion = $service->get('Page/1', 'DELETE');
|
|
if($deletion->successfulStatus()) {
|
|
echo 'deleted';
|
|
} else {
|
|
switch($deletion->statusCode()) {
|
|
case 403: echo "You don't have permission to delete that object"; break;
|
|
default: echo "There was an error deleting"; break;
|
|
}
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
} |