Line 10... |
Line 10... |
10 |
}
|
10 |
}
|
Line 11... |
Line 11... |
11 |
|
11 |
|
12 |
public function testRecherche() {
|
12 |
public function testRecherche() {
|
13 |
$ressources = array();
|
13 |
$ressources = array();
|
14 |
$parametres = array("navigation.depart" => 20, "navigation.limite" => 100);
|
14 |
$parametres = array("navigation.depart" => 20, "navigation.limite" => 100);
|
15 |
$url = $this->creerUrl($ressources, $parametres);
|
15 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
16 |
$retour = $this->consulterJson($ressources, $parametres);
|
16 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
17 |
$this->assertNotEmpty($retour, 'données absentes');
|
17 |
$this->assertNotEmpty($retour, 'données absentes');
|
18 |
//limite
|
18 |
//limite
|
19 |
$this->assertArrayHasKey('limite', $retour['entete'],
|
19 |
$this->assertArrayHasKey('limite', $retour['entete'],
|
20 |
"L'en-tête ne contient pas d'attribut : limite");
|
20 |
"L'en-tête ne contient pas d'attribut : limite");
|
Line 31... |
Line 31... |
31 |
$this->assertArrayHasKey('href.precedent', $retour['entete'],
|
31 |
$this->assertArrayHasKey('href.precedent', $retour['entete'],
|
32 |
"L'en-tête ne contient pas d'attribut : href.precedent ");
|
32 |
"L'en-tête ne contient pas d'attribut : href.precedent ");
|
33 |
$parametres_url =
|
33 |
$parametres_url =
|
34 |
array('navigation.depart' => ($retour['entete']['limite']+$retour['entete']['depart']),
|
34 |
array('navigation.depart' => ($retour['entete']['limite']+$retour['entete']['depart']),
|
35 |
'navigation.limite' => $retour['entete']['limite'] );
|
35 |
'navigation.limite' => $retour['entete']['limite'] );
|
36 |
$urlsuivant = $this->creerUrl($ressources, $parametres_url);
|
36 |
$urlsuivant = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres_url);
|
37 |
$this->assertEquals($urlsuivant, $retour['entete']['href.suivant'],
|
37 |
$this->assertEquals($urlsuivant, $retour['entete']['href.suivant'],
|
38 |
"L' url $urlsuivant de l'entete est incorrecte.");
|
38 |
"L' url $urlsuivant de l'entete est incorrecte.");
|
39 |
}
|
39 |
}
|