855 |
raphael |
1 |
<?php
|
|
|
2 |
/*
|
|
|
3 |
* @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
|
|
|
4 |
* @author Raphaël Droz <raphael@tela-botanica.org>
|
|
|
5 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
6 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
7 |
*/
|
|
|
8 |
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
|
|
|
9 |
|
|
|
10 |
class CosteNomsTest extends ServiceEflorePhpUnit {
|
|
|
11 |
|
856 |
raphael |
12 |
static $P = "coste";
|
|
|
13 |
static $S = "textes";
|
|
|
14 |
|
855 |
raphael |
15 |
// test d'obtention d'information sur num_nom connu
|
|
|
16 |
public function testRessource() {
|
856 |
raphael |
17 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182));
|
|
|
18 |
$retour = $this->consulterJson(self::$S, self::$P, array(182));
|
855 |
raphael |
19 |
$this->commonTestHeader($retour, $url);
|
|
|
20 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
21 |
$this->commonTest($retour, $url);
|
|
|
22 |
// tag peut peut-être varier à travers les décennies ?
|
|
|
23 |
// testRechercheTag ?
|
|
|
24 |
$this->assertArrayHasKey('tag', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément tag. Voir : $url");
|
|
|
25 |
$this->assertContains("HYBRIDA", $retour['resultats']['182']['texte'], "error: ['resultats']['182']['texte']. Voir : $url");
|
|
|
26 |
}
|
|
|
27 |
|
|
|
28 |
public function testBdtfxRessource() {
|
856 |
raphael |
29 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("bdtfx.nn:182"));
|
|
|
30 |
$retour = $this->consulterJson(self::$S, self::$P, array("bdtfx.nn:182"));
|
855 |
raphael |
31 |
$this->commonTestHeader($retour, $url);
|
|
|
32 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $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");
|
|
|
35 |
$this->assertContains("HYBRIDA", $retour['resultats']['182']['texte'], "error: ['resultats']['182']['texte']. Voir : $url");
|
|
|
36 |
}
|
|
|
37 |
|
859 |
raphael |
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 |
}
|
|
|
54 |
|
855 |
raphael |
55 |
public function testNonExistantRessource() {
|
856 |
raphael |
56 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array("-182"));
|
|
|
57 |
$retour = $this->consulterBrut(self::$S, self::$P, array("-182"));
|
855 |
raphael |
58 |
$this->assertEquals("not supported", $retour, "error. Voir : $url");
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
// les critères se cumulent
|
|
|
62 |
public function testRessourceEtMasque() {
|
856 |
raphael |
63 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array("masque.ns" => "ABC"));
|
|
|
64 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array("masque.ns" => "ABC"));
|
855 |
raphael |
65 |
$this->commonTestHeader($retour, $url);
|
|
|
66 |
$this->assertEquals(0, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 0. Voir : $url");
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
public function testRessourceFormatHTML() {
|
856 |
raphael |
70 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array('txt.format' => 'htm'));
|
|
|
71 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array('txt.format' => 'htm'));
|
855 |
raphael |
72 |
$this->assertContains("span class", $retour['resultats']['182']['titre'], "error: ['resultats']['182']['titre']. Voir : $url");
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
public function testRessourceChamps() {
|
856 |
raphael |
76 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array('retour.champs' => 'titre,tome,page,famille'));
|
|
|
77 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array('retour.champs' => 'titre,tome,page,famille'));
|
855 |
raphael |
78 |
$this->assertEquals(1, count($retour['resultats']), "error: ['resultats']['182']. Voir : $url");
|
|
|
79 |
$this->assertArrayHasKey("num_nom", $retour['resultats']['182'], "error: ['resultats']['182'], clef num_nom. Voir : $url");
|
|
|
80 |
$this->assertArrayHasKey("titre", $retour['resultats']['182'], "error: ['resultats']['182'], clef titre. Voir : $url");
|
|
|
81 |
$this->assertArrayHasKey("tome", $retour['resultats']['182'], "error: ['resultats']['182'], clef tome. Voir : $url");
|
|
|
82 |
$this->assertArrayHasKey("page", $retour['resultats']['182'], "error: ['resultats']['182'], clef page. Voir : $url");
|
|
|
83 |
$this->assertArrayHasKey("famille", $retour['resultats']['182'], "error: ['resultats']['182'], clef famille. Voir : $url");
|
|
|
84 |
$this->assertEquals("1", $retour['resultats']['182']['tome'], "error: ['resultats']['182']['tome']. Voir : $url");
|
|
|
85 |
$this->assertEquals("62", $retour['resultats']['182']['page'], "error: ['resultats']['182']['page']. Voir : $url");
|
|
|
86 |
$this->assertEquals("Sapindaceae", $retour['resultats']['182']['famille'], "error: ['resultats']['182']['famille']. Voir : $url");
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
|
|
|
90 |
public function testRechercheNS() {
|
856 |
raphael |
91 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.ns" => "Roemeria", "recherche" => "etendue"));
|
|
|
92 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.ns" => "Roemeria", "recherche" => "etendue"));
|
855 |
raphael |
93 |
$this->commonTestHeader($retour, $url);
|
|
|
94 |
$this->assertEquals(3, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 3. Voir : $url");
|
|
|
95 |
$this->commonTest($retour, $url);
|
|
|
96 |
}
|
|
|
97 |
|
|
|
98 |
|
|
|
99 |
public function testRechercheTXT() {
|
856 |
raphael |
100 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.txt" => "Nancy"));
|
|
|
101 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.txt" => "Nancy"));
|
855 |
raphael |
102 |
$this->assertEquals(2, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 2. Voir : $url");
|
|
|
103 |
$this->assertArrayHasKey("1774", $retour['resultats'], "error: ['resultats']['1774']. Voir : $url");
|
|
|
104 |
$this->assertArrayHasKey("1775", $retour['resultats'], "error: ['resultats']['1775']. Voir : $url");
|
|
|
105 |
|
856 |
raphael |
106 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.txt" => "Nancy", "recherche" => "floue"));
|
|
|
107 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.txt" => "Nancy", "recherche" => "floue"));
|
855 |
raphael |
108 |
$this->assertEquals(2, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 2. Voir : $url");
|
|
|
109 |
$this->assertArrayHasKey("1774", $retour['resultats'], "error: ['resultats']['1774']. Voir : $url");
|
|
|
110 |
$this->assertArrayHasKey("1775", $retour['resultats'], "error: ['resultats']['1775']. Voir : $url");
|
|
|
111 |
|
856 |
raphael |
112 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.txt" => "Nancy", "masque.tome" => 2));
|
|
|
113 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.txt" => "Nancy", "masque.tome" => 2));
|
855 |
raphael |
114 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
115 |
$this->assertArrayHasKey("1774", $retour['resultats'], "error: ['resultats']['1774']. Voir : $url");
|
|
|
116 |
|
856 |
raphael |
117 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.txt" => "Nancy", "masque.page" => 0));
|
|
|
118 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.txt" => "Nancy", "masque.page" => 0));
|
855 |
raphael |
119 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
120 |
$this->assertArrayHasKey("1775", $retour['resultats'], "error: ['resultats']['1775']. Voir : $url");
|
|
|
121 |
}
|
|
|
122 |
|
|
|
123 |
|
|
|
124 |
// par compatibilité, "titre" signifie une recherche sur "tag" (le titre de la page wiki de la description
|
|
|
125 |
// ou des clefs de détermination)
|
|
|
126 |
public function testRechercheTag() {
|
856 |
raphael |
127 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.titre" => "Esp0131RoemeriaViolacea"));
|
|
|
128 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.titre" => "Esp0131RoemeriaViolacea"));
|
855 |
raphael |
129 |
$this->commonTestHeader($retour, $url);
|
|
|
130 |
$this->assertEquals(2, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 2. Voir : $url");
|
|
|
131 |
$this->commonTest($retour, $url);
|
|
|
132 |
$this->assertArrayHasKey('tag', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément tag. Voir : $url");
|
|
|
133 |
$this->assertEquals("Esp0131RoemeriaViolacea", $retour['resultats']['182']['tag'], "error: ['resultats']['182']['tag']. Voir : $url");
|
|
|
134 |
}
|
|
|
135 |
|
|
|
136 |
public function testRechercheFamille() {
|
|
|
137 |
// unknown famille
|
856 |
raphael |
138 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.famille" => "ABC"));
|
|
|
139 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.famille" => "ABC"));
|
855 |
raphael |
140 |
$this->assertEquals(0, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 0. Voir : $url");
|
|
|
141 |
|
|
|
142 |
// par famille, mais pas de recherche étendue pour ça
|
856 |
raphael |
143 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, NULL, array("masque.famille" => "Sapind"));
|
|
|
144 |
$retour = $this->consulterJson(self::$S, self::$P, NULL, array("masque.famille" => "Sapind"));
|
855 |
raphael |
145 |
$this->assertEquals(0, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 0. Voir : $url");
|
|
|
146 |
|
856 |
raphael |
147 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array("masque.famille" => "Sapindaceae"));
|
|
|
148 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array("masque.famille" => "Sapindaceae"));
|
855 |
raphael |
149 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
150 |
|
856 |
raphael |
151 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array("masque.famille" => "Sapind%"));
|
|
|
152 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array("masque.famille" => "Sapind%"));
|
855 |
raphael |
153 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
154 |
|
856 |
raphael |
155 |
$url = ServiceEflorePhpUnit::creerUrl(self::$S, array(182), array("masque.famille" => "S_pindaceae"));
|
|
|
156 |
$retour = $this->consulterJson(self::$S, self::$P, array(182), array("masque.famille" => "S_pindaceae"));
|
855 |
raphael |
157 |
$this->assertEquals(1, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur 1. Voir : $url");
|
|
|
158 |
}
|
|
|
159 |
|
|
|
160 |
|
|
|
161 |
// commons
|
|
|
162 |
public function commonTestHeader($retour, $url) {
|
|
|
163 |
$this->assertNotEmpty($retour, 'données absentes');
|
|
|
164 |
$this->assertArrayHasKey('total', $retour['entete'], "Le json ne contient pas d'attribut : total. Voir : $url");
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
|
|
|
168 |
public function commonTest($retour, $url) {
|
|
|
169 |
$this->assertArrayHasKey('182', $retour['resultats'], "Le json ne contient pas d'élément 182. Voir : $url");
|
|
|
170 |
$this->assertArrayHasKey('titre', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément titre. Voir : $url");
|
|
|
171 |
$this->assertArrayHasKey('num_nom', $retour['resultats']['182'], "Le json [182] ne contient pas d'élément num_nom. Voir : $url");
|
|
|
172 |
$this->assertEquals("Roemeria violacea", $retour['resultats']['182']['titre'], "error: ['resultats']['182']['titre']. Voir : $url");
|
|
|
173 |
$this->assertEquals("182", $retour['resultats']['182']['num_nom'], "error: ['resultats']['182']['num_nom']. Voir : $url");
|
|
|
174 |
}
|
|
|
175 |
|
|
|
176 |
}
|