Line 2... |
Line 2... |
2 |
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
|
2 |
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
|
Line 3... |
Line 3... |
3 |
|
3 |
|
Line 4... |
Line 4... |
4 |
class CommunOntologiesTest extends ServiceEflorePhpUnit {
|
4 |
class CommunOntologiesTest extends ServiceEflorePhpUnit {
|
5 |
|
5 |
|
6 |
public function __construct() {
|
6 |
public function __construct() {
|
7 |
$this->projet = 'commun';
|
7 |
$this->projet = 'eflore';
|
Line 8... |
Line 8... |
8 |
$this->service = 'ontologies';
|
8 |
$this->service = 'ontologies';
|
9 |
}
|
9 |
}
|
10 |
|
10 |
|
11 |
public function testRecherche() {
|
11 |
public function testRecherche() {
|
12 |
$ressources = array();
|
12 |
$ressources = array();
|
13 |
$parametres = array();
|
13 |
$parametres = array();
|
14 |
$url = $this->creerUrl($ressources, $parametres);
|
14 |
$url = $this->creerUrl($ressources, $parametres);
|
- |
|
15 |
$retour = $this->consulterJson($ressources, $parametres);
|
15 |
$retour = $this->consulterJson($ressources, $parametres);
|
16 |
$this->assertNotEmpty($retour, 'données absentes');
|
16 |
$this->assertNotEmpty($retour, 'données absentes');
|
17 |
$this->assertArrayHasKey('total', $retour['entete'], "Le json ne contient pas d'attribut : total. Voir : $url");
|
17 |
$this->assertArrayHasKey('total', $retour['entete'], "Le json ne contient pas d'attribut : total. Voir : $url");
|
18 |
// au 20/08/2013, n°23 = Baznat
|
18 |
$this->assertEquals('9', $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur '9'. Voir : $url");
|
19 |
$this->assertEquals('23', $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur '23'. Voir : $url");
|
Line 19... |
Line 20... |
19 |
$this->assertArrayHasKey('nom', $retour['resultat'][1], "Le json ne contient pas d'attribut : nom. Voir : $url");
|
20 |
$this->assertArrayHasKey('nom', $retour['resultat'][1], "Le json ne contient pas d'attribut : nom. Voir : $url");
|