mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 22:13:13 +00:00
74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc';
|
|
|
|
class ControllerEditTest extends \PhraseanetWebTestCaseAuthenticatedAbstract
|
|
{
|
|
protected $client;
|
|
|
|
public function createApplication()
|
|
{
|
|
return require __DIR__ . '/../../../../../lib/Alchemy/Phrasea/Application/Prod.php';
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->client = $this->createClient();
|
|
}
|
|
|
|
/**
|
|
* Default route test
|
|
*/
|
|
public function testRouteSlash()
|
|
{
|
|
$this->client->request('POST', '/records/edit/', array('lst' => static::$records['record_1']->get_serialize_key()));
|
|
|
|
$response = $this->client->getResponse();
|
|
|
|
$this->assertTrue($response->isOk());
|
|
}
|
|
|
|
public function testApply()
|
|
{
|
|
$this->client->request('POST', '/records/edit/apply/', array('lst' => static::$records['record_1']->get_serialize_key()));
|
|
|
|
$response = $this->client->getResponse();
|
|
|
|
$this->assertTrue($response->isOk());
|
|
}
|
|
|
|
public function testVocabulary()
|
|
{
|
|
$this->client->request('GET', '/records/edit/vocabulary/Zanzibar/');
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertTrue($response->isOk());
|
|
$datas = json_decode($response->getContent());
|
|
$this->assertFalse($datas->success);
|
|
|
|
$this->client->request('GET', '/records/edit/vocabulary/User/');
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertTrue($response->isOk());
|
|
$datas = json_decode($response->getContent());
|
|
$this->assertFalse($datas->success);
|
|
|
|
$params = array('sbas_id' => self::$collection->get_sbas_id());
|
|
$this->client->request('GET', '/records/edit/vocabulary/Zanzibar/', $params);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertTrue($response->isOk());
|
|
$datas = json_decode($response->getContent());
|
|
$this->assertFalse($datas->success);
|
|
|
|
$params = array('sbas_id' => self::$collection->get_sbas_id());
|
|
$this->client->request('GET', '/records/edit/vocabulary/User/', $params);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertTrue($response->isOk());
|
|
$datas = json_decode($response->getContent());
|
|
$this->assertTrue($datas->success);
|
|
}
|
|
}
|