Line 8... |
Line 8... |
8 |
public function testNonExistant() {
|
8 |
public function testNonExistant() {
|
9 |
$url = $this->creerUrl('observations');
|
9 |
$url = $this->creerUrl('observations');
|
10 |
$i = new Observations();
|
10 |
$i = new Observations();
|
11 |
$retour = $this->consulterDirectJson($i->consulter([0], []),
|
11 |
$retour = $this->consulterDirectJson($i->consulter([0], []),
|
12 |
$url);
|
12 |
$url);
|
13 |
// TODO: en-tête malgré tout ?
|
13 |
// doit retourner une 404
|
14 |
$this->assertEmpty($retour, "Le json doit retourner un tableau vide. Voir : $url");
|
14 |
$this->assertEmpty($retour, "Le json doit retourner un tableau vide. Voir : $url");
|
15 |
}
|
15 |
}
|
Line 16... |
Line 16... |
16 |
|
16 |
|
17 |
public function testExistant() {
|
17 |
public function testExistant() {
|
18 |
$url = $this->creerUrl('observations');
|
18 |
$url = $this->creerUrl('observations');
|
19 |
$i = new Observations();
|
19 |
$i = new Observations();
|
20 |
$retour = $this->consulterDirectJson($i->consulter([1043942], []),
|
20 |
$retour = $this->consulterDirectJson($i->consulter([1043942], []),
|
21 |
$url);
|
- |
|
- |
|
21 |
$url);
|
22 |
return; // TODO
|
22 |
|
23 |
$this->hasKeysAndNotEmpty($retour, ['auteur.id', 'auteur.nom', 'date_transmission', 'observateur', 'id_observation'], $url);
|
23 |
$this->hasKeysAndNotEmpty($retour, ['auteur.id', 'auteur.nom', 'date_transmission', 'observateur', 'id_observation'], $url);
|
24 |
$this->hasKeys($retour, ['auteur.nom'], $url);
|
24 |
$this->hasKeys($retour, ['auteur.nom'], $url);
|
25 |
$this->assertArrayHasKey('auteur.id', $retour, "attribut auteur.id manquant. Voir : $url");
|
25 |
$this->assertArrayHasKey('auteur.id', $retour, "attribut auteur.id manquant. Voir : $url");
|
Line -... |
Line 26... |
- |
|
26 |
}
|
- |
|
27 |
|
- |
|
28 |
public function testSansImage() {
|
- |
|
29 |
$url = $this->creerUrl('observations');
|
- |
|
30 |
$i = new Observations();
|
- |
|
31 |
$retour = $this->consulterDirectJson($i->consulter([14203], []),
|
- |
|
32 |
$url);
|
- |
|
33 |
// doit retourner une 404
|
- |
|
34 |
$this->assertEmpty($retour, "Observation sans image devrait ne rien retourner. Voir : $url");
|
- |
|
35 |
}
|
- |
|
36 |
|
- |
|
37 |
public function testRechercheNoObs() {
|
- |
|
38 |
$url = $this->creerUrl('observations');
|
- |
|
39 |
$i = new Observations();
|
- |
|
40 |
$retour = $this->consulterDirectJson($i->consulter([], ['masque.date'=>-1e11]), // 10^11 secondes avant 1970
|
- |
|
41 |
$url);
|
- |
|
42 |
// doit retourner une 404
|
- |
|
43 |
$this->assertEquals(0, $retour['entete']['total'], "Incongruité sur ['entete'][0]. Voir : $url");
|
- |
|
44 |
$this->assertEmpty($retour['resultats'], "Absence d'observation devrait retourner un result-set vide. Voir : $url");
|
- |
|
45 |
}
|
- |
|
46 |
|
- |
|
47 |
/* guidelines pour des tests pérennes:
|
- |
|
48 |
* - Utiliser ordre=asc pour prendre les enregistrement les plus anciens, moins susceptibles de changer
|
26 |
}
|
49 |
* - Restreindre par date (évite les date_transmission = NULL, qui, après des GROUP BY affectent le result-set
|
27 |
|
50 |
* - Utiliser moins de "$limite" résultats à cause de la sélection (arbitraire[GROUP-BY])) des obs ayant la même date */
|
28 |
public function testMasque() {
|
51 |
public function testMasque() {
|
29 |
$url = $this->creerUrl('observations');
|
52 |
$url = $this->creerUrl('observations');
|
30 |
$i = new Observations();
|
53 |
$i = new Observations();
|
- |
|
54 |
$retour = $this->consulterDirectJson($i->consulter([], ['navigation.depart'=>0,'navigation.limite'=>12,'ordre'=>'asc','masque'=>'Grand','masque.date'=>2009]),
|
- |
|
55 |
$url);
|
31 |
$retour = $this->consulterDirectJson($i->consulter([], ['navigation.depart'=>0,'navigation.limite'=>12,'ordre'=>'asc','masque'=>'G']),
|
56 |
// from
|
Line 32... |
Line 57... |
32 |
$url);
|
57 |
// "http://www.tela-botanica.org/eflore/del/services/0.1/observations?navigation.depart=0&navigation.limite=12&masque=Grand&masque.date=2009&ordre=asc"
|
33 |
$expected = unserialize(file_get_contents("masque=G.data.json"));
|
58 |
$expected = json_decode(file_get_contents("masque=G-date=2009.data.json"), true);
|
Line 34... |
Line 59... |
34 |
|
59 |
|
35 |
self::ignoreNullValuesAndSort($expected);
|
60 |
self::ignoreNullValuesAndSort($expected);
|
36 |
self::ignoreNullValuesAndSort($retour);
|
61 |
self::ignoreNullValuesAndSort($retour);
|
37 |
|
62 |
|
Line -... |
Line 63... |
- |
|
63 |
// echo implode(',', array_keys($retour['resultats'])) . "\n" . implode(',', array_keys($expected['resultats']));die;
|
- |
|
64 |
$this->clefsIdentiques($expected, $retour, $url);
|
- |
|
65 |
$this->assertEquals($expected['resultats'], $retour['resultats'], "Différences dans le tableau, $url");
|
- |
|
66 |
}
|
- |
|
67 |
|
- |
|
68 |
public function testType() {
|
- |
|
69 |
@$url = $this->creerUrl('observations');
|
- |
|
70 |
$i = new Observations();
|
- |
|
71 |
$retour = $this->consulterDirectJson($i->consulter([], ['ordre'=>'asc','masque.type'=>'endiscussion']),
|
- |
|
72 |
$url);
|
- |
|
73 |
if(Config::get('nb_commentaires_discussion') != 1) {
|
- |
|
74 |
printf("can't do test: Config::get('nb_commentaires_discussion') == %d <> 1\n", Config::get('nb_commentaires_discussion'));
|
- |
|
75 |
return;
|
- |
|
76 |
}
|
- |
|
77 |
|
- |
|
78 |
// from
|
- |
|
79 |
// "http://www.tela-botanica.org/eflore/del/services/0.1/observations?masque.type=endiscussion&ordre=asc"
|
- |
|
80 |
$expected = json_decode(file_get_contents("masque.type=endiscussion.data.json"), true);
|
- |
|
81 |
|
- |
|
82 |
self::ignoreNullValuesAndSort($expected);
|
- |
|
83 |
self::ignoreNullValuesAndSort($retour);
|
- |
|
84 |
|
- |
|
85 |
// echo implode(',', array_keys($retour['resultats'])) . "\n" . implode(',', array_keys($expected['resultats']));die;
|
38 |
// echo implode(',', array_keys($retour['resultats'])) . "\n" . implode(',', array_keys($expected['resultats']));die;
|
86 |
$this->clefsIdentiques($expected, $retour, $url);
|
39 |
$this->assertEquals(array_keys($expected['resultats']), array_keys($retour['resultats']), "JSON error, $url");
|
87 |
$this->assertEquals($expected['resultats'], $retour['resultats'], "Différences dans le tableau, $url");
|
40 |
$this->assertEquals($expected['resultats'], $retour['resultats'], "Différences dans le tableau, $url");
|
88 |
}
|
41 |
}
|
89 |
|
42 |
|
90 |
|
- |
|
91 |
public function testMasqueEtType() {
|
43 |
public function testMasqueEtType() {
|
92 |
@$url = $this->creerUrl('observations');
|
Line 44... |
Line 93... |
44 |
@$url = $this->creerUrl('observations');
|
93 |
$i = new Observations();
|
45 |
$i = new Observations();
|
94 |
$retour = $this->consulterDirectJson($i->consulter([], ['navigation.depart'=>0,'navigation.limite'=>12,'ordre'=>'asc','masque'=>'G','masque.type'=>'endiscussion']),
|
Line 46... |
Line 95... |
46 |
$retour = $this->consulterDirectJson($i->consulter([], ['navigation.depart'=>0,'navigation.limite'=>12,'ordre'=>'asc','masque'=>'G','masque.type'=>'endiscussion']),
|
95 |
$url);
|
47 |
$url);
|
96 |
|
48 |
$expected = unserialize(file_get_contents("masque=G-masque.type=endiscussion.data.json"));
|
97 |
$expected = json_decode(file_get_contents("masque=G-masque.type=endiscussion.data.json"), true);
|
49 |
|
98 |
|
Line 70... |
Line 119... |
70 |
}
|
119 |
}
|
71 |
}
|
120 |
}
|
Line 72... |
Line 121... |
72 |
|
121 |
|
73 |
static function ignoreNullValuesAndSort(&$arr) {
|
122 |
static function ignoreNullValuesAndSort(&$arr) {
|
74 |
$arr['resultats'] = array_map('array_filter', $arr['resultats']);
|
123 |
$arr['resultats'] = array_map('array_filter', $arr['resultats']);
|
75 |
ksort($arr);
|
124 |
ksort($arr['resultats']);
|
- |
|
125 |
}
|
- |
|
126 |
|
- |
|
127 |
public function clefsIdentiques($e, $r, $url) {
|
- |
|
128 |
$e = array_map(function($a) { return intval(trim($a, '"')); }, array_keys($e['resultats']));
|
- |
|
129 |
sort($e, SORT_NUMERIC);
|
- |
|
130 |
$r = array_map(function($a) { return intval(trim($a, '"')); }, array_keys($r['resultats']));
|
- |
|
131 |
sort($r, SORT_NUMERIC);
|
- |
|
132 |
$this->assertEquals($e, $r, "Différences dans les clefs du tableau, $url");
|
- |
|
133 |
}
|
76 |
}
|
134 |
|