Line 33... |
Line 33... |
33 |
$this->commonTest($retour, $url);
|
33 |
$this->commonTest($retour, $url);
|
34 |
$this->assertArrayHasKey('tag', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément tag. Voir : $url");
|
34 |
$this->assertArrayHasKey('tag', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément tag. Voir : $url");
|
35 |
$this->assertContains("HYBRIDA", $retour['resultats']['182']['texte'], "error: ['resultats']['182']['texte']. Voir : $url");
|
35 |
$this->assertContains("HYBRIDA", $retour['resultats']['182']['texte'], "error: ['resultats']['182']['texte']. Voir : $url");
|
36 |
}
|
36 |
}
|
Line -... |
Line 37... |
- |
|
37 |
|
- |
|
38 |
|
- |
|
39 |
public function testRessources() {
|
- |
|
40 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("bdtfx.nn:182,abcd,666"));
|
- |
|
41 |
$retour = $this->consulterJson(self::$S, self::$P, array("bdtfx.nn:182,abcd,666"));
|
- |
|
42 |
$this->commonTestHeader($retour, $url);
|
- |
|
43 |
$this->assertEquals(2, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 2. Voir : $url");
|
- |
|
44 |
$this->commonTest($retour, $url);
|
- |
|
45 |
$this->assertArrayHasKey('titre', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément titre. Voir : $url");
|
- |
|
46 |
$this->assertArrayHasKey('titre', $retour['resultats']['666'], "Le json [666] ne contient pas d'élément titre. Voir : $url");
|
- |
|
47 |
$this->assertEquals("Roemeria violacea", $retour['resultats']['182']['titre'], "error: ['resultats']['182']['titre']. Voir : $url");
|
- |
|
48 |
$this->assertEquals("Silene reflexa", $retour['resultats']['666']['titre'], "error: ['resultats']['666']['titre']. Voir : $url");
|
- |
|
49 |
|
- |
|
50 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("a,-1,99999"));
|
- |
|
51 |
$retour = $this->consulterBrut(self::$S, self::$P, array("a,-1,99999"));
|
- |
|
52 |
$this->assertEquals("not supported", $retour, "error, Voir : $url");
|
- |
|
53 |
}
|
37 |
|
54 |
|
38 |
public function testNonExistantRessource() {
|
55 |
public function testNonExistantRessource() {
|
39 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("-182"));
|
56 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("-182"));
|
40 |
$retour = $this->consulterBrut(self::$S, self::$P, array("-182"));
|
57 |
$retour = $this->consulterBrut(self::$S, self::$P, array("-182"));
|
41 |
$this->assertEquals("not supported", $retour, "error. Voir : $url");
|
58 |
$this->assertEquals("not supported", $retour, "error. Voir : $url");
|