3 |
jpm |
1 |
<?php
|
96 |
jpm |
2 |
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
|
3 |
jpm |
3 |
|
96 |
jpm |
4 |
class BdtfxTaxonsTest extends ServiceEflorePhpUnit {
|
|
|
5 |
|
17 |
jpm |
6 |
public function __construct() {
|
|
|
7 |
$this->projet = 'bdtfx';
|
|
|
8 |
$this->service = 'taxons';
|
|
|
9 |
}
|
|
|
10 |
|
3 |
jpm |
11 |
public function testVersionPrecise() {
|
96 |
jpm |
12 |
$ressources = array();
|
|
|
13 |
$parametres = array('version.projet' => '1.01');
|
790 |
raphael |
14 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
|
|
15 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
16 |
|
|
|
17 |
$this->assertArrayHasKey('entete', $retour, "Le json ne contient pas d'attribut : entete. Voir : $url");
|
|
|
18 |
$this->assertArrayHasKey('resultat', $retour, "Le json ne contient pas d'attribut : resultat. Voir : $url");
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
public function testNomsIdVersionMultiple() {
|
96 |
jpm |
22 |
$ressources = array('182');
|
|
|
23 |
$parametres = array('version.projet' => '*');
|
790 |
raphael |
24 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
25 |
|
790 |
raphael |
26 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
784 |
raphael |
27 |
/* NI (anymore ?)
|
3 |
jpm |
28 |
$this->assertArrayHasKey('bdtfx_v1_01', $retour, "Le json ne contient pas d'attribut : bdtfx_v1_01.\nVoir : $url");
|
|
|
29 |
$this->assertArrayHasKey('bdtfx_v1_02', $retour, "Le json ne contient pas d'attribut : bdtfx_v1_02.\nVoir : $url");
|
|
|
30 |
$this->assertEquals('182', $retour['bdtfx_v1_01']['id'], "'bdtfx_v1_01' doit contenir un attribut 'id' avec la valeur '182'");
|
|
|
31 |
$this->assertEquals('182', $retour['bdtfx_v1_02']['id'], "'bdtfx_v1_02' doit contenir un attribut 'id' avec la valeur '182'");
|
784 |
raphael |
32 |
*/
|
|
|
33 |
$this->assertEquals('182', $retour['id'], "doit contenir un attribut 'id' avec la valeur '182'");
|
3 |
jpm |
34 |
}
|
|
|
35 |
|
|
|
36 |
public function testNomsVersionMultiple() {
|
96 |
jpm |
37 |
$ressources = array();
|
|
|
38 |
$parametres = array('version.projet' => '*');
|
790 |
raphael |
39 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
40 |
|
790 |
raphael |
41 |
$retour = ServiceEflorePhpUnit::consulterBrut($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
42 |
|
|
|
43 |
$attendu = "L'affichage de plusieurs versions ne fonctionne que pour les ressources de type /ressources/#id";
|
|
|
44 |
$message = "L'url :\n'$url'\n doit retourner un résultat de la forme :\n $attendu";
|
|
|
45 |
$this->assertEquals($attendu, $retour, $message);
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
public function testVersionInexistante() {
|
96 |
jpm |
49 |
$ressources = array();
|
|
|
50 |
$parametres = array('version.projet' => '99.00');
|
790 |
raphael |
51 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
52 |
|
790 |
raphael |
53 |
$retour = ServiceEflorePhpUnit::consulterBrut($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
54 |
|
|
|
55 |
$attendu = 'La requête SQL formée comporte une erreur!';
|
|
|
56 |
$message = "L'url :\n'$url'\n doit retourner un résultat de la forme :\n $attendu";
|
|
|
57 |
$this->assertEquals($attendu, $retour, $message);
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
public function testRechercheStricte() {
|
96 |
jpm |
61 |
$ressources = array();
|
3 |
jpm |
62 |
$parametres = array(
|
96 |
jpm |
63 |
'version.projet' => '1.01',
|
|
|
64 |
'recherche' => 'stricte',
|
|
|
65 |
'masque' => 'Acer');
|
790 |
raphael |
66 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
67 |
|
790 |
raphael |
68 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
69 |
$this->assertArrayHasKey('entete', $retour, "Le json ne contient pas d'attribut : entete. Voir : $url");
|
|
|
70 |
$this->assertArrayHasKey('resultat', $retour, "Le json ne contient pas d'attribut : resultat. Voir : $url");
|
|
|
71 |
$this->assertEquals('1', $retour['entete']['total'], "L'attribut 'total' de l'entête devrait valoir 1. Voir : $url");
|
|
|
72 |
$this->assertEquals(1, count($retour['resultat']), "Le résultat devrait contenir une seule donnée. Voir : $url");
|
|
|
73 |
}
|
7 |
jpm |
74 |
|
3 |
jpm |
75 |
public function testRechercheEtendue() {
|
96 |
jpm |
76 |
$ressources = array();
|
3 |
jpm |
77 |
$parametres = array(
|
96 |
jpm |
78 |
'version.projet' => '1.01',
|
|
|
79 |
'recherche' => 'etendue',
|
|
|
80 |
'masque' => 'Acer');
|
790 |
raphael |
81 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
82 |
|
790 |
raphael |
83 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
84 |
$this->assertArrayHasKey('entete', $retour, "Le json ne contient pas d'attribut : entete. Voir : $url");
|
|
|
85 |
$this->assertArrayHasKey('resultat', $retour, "Le json ne contient pas d'attribut : resultat. Voir : $url");
|
|
|
86 |
$this->assertEquals('50', $retour['entete']['total'], "L'attribut total de l'entête devrait valoir 50. Voir : $url");
|
|
|
87 |
$this->assertEquals(50, count($retour['resultat']), "Le résultat devrait contenir 50 données. Voir : $url");
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
public function testRechercheFloue() {
|
96 |
jpm |
91 |
$ressources = array();
|
3 |
jpm |
92 |
$parametres = array(
|
96 |
jpm |
93 |
'version.projet' => '1.01',
|
|
|
94 |
'recherche' => 'floue',
|
|
|
95 |
'masque' => 'Acer');
|
790 |
raphael |
96 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
3 |
jpm |
97 |
|
790 |
raphael |
98 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
3 |
jpm |
99 |
$this->assertArrayHasKey('entete', $retour, "Le json ne contient pas d'attribut : entete. Voir : $url");
|
|
|
100 |
$this->assertArrayHasKey('resultat', $retour, "Le json ne contient pas d'attribut : resultat. Voir : $url");
|
784 |
raphael |
101 |
$this->assertEquals('3', $retour['entete']['total'], "L'attribut total de l'entête devrait valoir 3. Voir : $url");
|
|
|
102 |
$this->assertEquals(3, count($retour['resultat']), "Le résultat devrait contenir 3 données. Voir : $url");
|
3 |
jpm |
103 |
}
|
296 |
aurelien |
104 |
|
|
|
105 |
public function testTaxonsInf() {
|
|
|
106 |
$ressources = array('13609', 'relations', 'inferieurs');
|
|
|
107 |
$parametres = array();
|
790 |
raphael |
108 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
296 |
aurelien |
109 |
|
790 |
raphael |
110 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
296 |
aurelien |
111 |
$this->assertArrayHasKey('13609', $retour, "Le json ne contient pas le num tax en indice. Voir : $url");
|
|
|
112 |
$this->assertEquals('2', count($retour['13609']), "Le json ne contient pas le nom de taxons inf attendu. Voir : $url");
|
|
|
113 |
$this->assertEquals("Carex cuprina var. cuprina", $retour['13609']['13610']['nom_sci'], "Le json ne contient pas les 1er taxon inf attendu. Voir : $url");
|
|
|
114 |
}
|
|
|
115 |
|
|
|
116 |
public function testTaxonsSup() {
|
|
|
117 |
$ressources = array('13609', 'relations', 'superieurs');
|
|
|
118 |
$parametres = array();
|
790 |
raphael |
119 |
$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
|
296 |
aurelien |
120 |
|
790 |
raphael |
121 |
$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
|
296 |
aurelien |
122 |
$this->assertArrayHasKey('13609', $retour, "Le json ne contient pas le num tax en indice. Voir : $url");
|
|
|
123 |
$this->assertEquals('14', count($retour['13609']), "Le json ne contient pas le nom de taxons inf attendu. Voir : $url");
|
|
|
124 |
$this->assertEquals("Chlorobiontes", $retour['13609']['101140']['nom_sci'], "Le json ne contient pas les 1er taxon inf attendu. Voir : $url");
|
|
|
125 |
}
|
3 |
jpm |
126 |
}
|
|
|
127 |
?>
|