195 |
jpm |
1 |
<?php
|
|
|
2 |
require_once dirname(__FILE__).'/../ServicePhpUnit.php';
|
|
|
3 |
|
|
|
4 |
class NomDetailsFournierTest extends ServicePhpUnit {
|
|
|
5 |
|
206 |
jpm |
6 |
private $nomDetailSqueletteUrl = 'http://localhost/service:eflore:0.2/fournier/noms/%s';
|
|
|
7 |
private $ontologieHrefTpl = 'http://localhost/service:eflore:0.2/bdnt/ontologies/rangTaxo:%s';
|
195 |
jpm |
8 |
private $champsProjet = array(
|
|
|
9 |
'nom_scientifique' => 'nom_scientifique',
|
|
|
10 |
'auteur_origine' => 'auteur_origine',
|
|
|
11 |
'nom_vernaculaire' => 'nom_vernaculaire',
|
|
|
12 |
'page' => 'page',
|
|
|
13 |
'code_taxon' => 'code_taxon',
|
|
|
14 |
'milieu' => 'milieu',
|
|
|
15 |
'floraison' => 'floraison',
|
|
|
16 |
'type' => 'type',
|
|
|
17 |
'sol' => 'sol',
|
|
|
18 |
'rarete_region_alt' => 'rarete_region_alt',
|
|
|
19 |
'region_bota_monde' => 'region_bota_monde',
|
|
|
20 |
'etymologie' => 'etymologie',
|
|
|
21 |
'taille' => 'taille',
|
|
|
22 |
'formule_hybridite' => 'formule_hybridite',
|
|
|
23 |
'culture' => 'culture');
|
|
|
24 |
|
|
|
25 |
public function __construct() {
|
203 |
jpm |
26 |
$this->projet = 'fournier';
|
195 |
jpm |
27 |
$this->service = 'noms';
|
206 |
jpm |
28 |
$this->classeTestee = 'NomDetailsGenerique';
|
195 |
jpm |
29 |
}
|
|
|
30 |
|
|
|
31 |
public function initialiserService(NomsListe $service) {
|
|
|
32 |
$service->setDetailsHrefTpl($this->nomDetailSqueletteUrl);
|
|
|
33 |
$service->setOntologieHrefTpl($this->ontologieHrefTpl);
|
203 |
jpm |
34 |
$service->setChampsProjet($this->champsProjet);
|
195 |
jpm |
35 |
}
|
|
|
36 |
|
|
|
37 |
public function testSansParametres() {
|
|
|
38 |
$ressources = array('85');
|
|
|
39 |
$parametres = array();
|
|
|
40 |
|
206 |
jpm |
41 |
$retour = $this->consulter($ressources, $parametres);
|
195 |
jpm |
42 |
|
|
|
43 |
$this->assertTrue(is_array($retour), 'Retour est un tableau');
|
|
|
44 |
$this->assertArrayHasKey('id', $retour, 'Présence champ id');
|
|
|
45 |
$this->assertSame(85, $retour['id'], 'Valeur champ id = 85');
|
|
|
46 |
$this->assertArrayHasKey('nom_sci', $retour, 'Présence champ nom_sci');
|
|
|
47 |
$this->assertSame('Hymenophyllum peltatum', $retour['nom_sci'], 'Valeur champ nom_sci = Hymenophyllum peltatum');
|
|
|
48 |
$this->assertArrayHasKey('nom_retenu.id', $retour, 'Présence champ nom_retenu.id');
|
|
|
49 |
$this->assertSame(84, $retour['nom_retenu.id'], 'Valeur champ nom_sci = 84');
|
|
|
50 |
$this->assertArrayHasKey('nom_retenu', $retour, 'Présence champ nom_retenu');
|
203 |
jpm |
51 |
$this->assertSame('Hymenophyllum unilaterale', $retour['nom_retenu'], 'Valeur champ nom_retenu = Hymenophyllum unilaterale');
|
195 |
jpm |
52 |
$this->assertArrayHasKey('nom_retenu.href', $retour, 'Présence champ nom_retenu.href');
|
|
|
53 |
$urlNomRetenuHrefAttendue = sprintf($this->nomDetailSqueletteUrl, 84);
|
|
|
54 |
$this->assertSame($urlNomRetenuHrefAttendue, $retour['nom_retenu.href'], "Valeur champ nom_retenu.href = $urlNomRetenuHrefAttendue");
|
|
|
55 |
|
|
|
56 |
$this->assertArrayHasKey('rang.code', $retour, 'Présence champ rang.code');
|
|
|
57 |
$this->assertSame('bdnt.rangTaxo:290', $retour['rang.code'], 'Valeur champ rang.code = bdnt.rangTaxo:290');
|
|
|
58 |
$this->assertArrayHasKey('rang', $retour, 'Présence champ rang');
|
|
|
59 |
$this->assertSame('Espèce', $retour['rang'], 'Valeur champ rang = Espèce');
|
|
|
60 |
|
|
|
61 |
$this->assertArrayHasKey('rang.href', $retour, 'Présence champ rang.href');
|
|
|
62 |
$hrefAttendue =sprintf($this->ontologieHrefTpl, 290);
|
|
|
63 |
$this->assertSame($hrefAttendue, $retour['rang.href'], "Valeur champ rang.href = $hrefAttendue");
|
|
|
64 |
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
}
|
|
|
68 |
?>
|