Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 949 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
241 delphine 1
<?php
2
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
3
 
4
class ChorodepObservationsTest extends ServiceEflorePhpUnit {
5
 
6
	public function __construct() {
7
		$this->projet = 'chorodep';
8
		$this->service = 'observations';
9
	}
10
 
251 delphine 11
	public function testRecherche() {
12
		$ressources = array();
241 delphine 13
		$parametres = array();
790 raphael 14
		$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
15
		$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
251 delphine 16
		$this->assertNotEmpty($retour, print_r($retour, true));
17
		$this->assertNotEmpty($retour['entete'], print_r($retour['entete'], true));
18
		$this->assertEquals(20, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur '20'. Voir : $url");
897 raphael 19
		$this->assertCount(20, $retour['resultat'], "Il devrait y avoir '20' résultats. Voir : $url");
241 delphine 20
	}
784 raphael 21
 
22
 
23
	public function testObservation() {
24
		$ressources = array("10:20");
25
		$parametres = array();
790 raphael 26
		$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
27
		$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
784 raphael 28
		$this->assertNotEmpty($retour, print_r($retour, true));
29
		$this->assertArrayHasKey('type', $retour, "Le json ne contient pas d'attribut : type. Voir : $url");
30
		$this->assertEquals('chorologie', $retour['type'], "L'attribut 'type' devrait avoir la valeur 'chorologie'. Voir : $url");
31
	}
32
 
251 delphine 33
	public function testMasqueStation() {
34
		$ressources = array();
35
		$parametres = array('masque.station' => '34', 'retour.format' => 'min');
790 raphael 36
		$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
37
		$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
251 delphine 38
		$this->assertNotEmpty($retour, 'pas de resultat'.print_r($retour, true));
39
		$this->assertNotEmpty($retour['entete'], 'pas d\'entete'.print_r($retour['entete'], true));
40
		$this->assertEquals(20, $retour['entete']['total'], "L'attribut 'total' devrait avoir la valeur '20'. Voir : $url");
897 raphael 41
		$this->assertCount(20, $retour['resultat'], "L'attribut 'total' devrait avoir la valeur '20'. Voir : $url");
949 raphael 42
		$this->assertNotEmpty($retour['resultat']['197:34'], 'resultat 197:34 absent', true);
784 raphael 43
		/*$this->assertArrayHasKey('type', $retour['resultat']['74929:03'], "Le json ne contient pas d'attribut : type. Voir : $url");
44
		  $this->assertEquals('chorologie', $retour['resultat']['74929:03']['type'], "L'attribut 'type' devrait avoir la valeur 'chorologie'. Voir : $url");*/
45
		// TODO: implémenter "chorodep/observations/10:25?masque.station=34&retour.format=min"
251 delphine 46
	}
241 delphine 47
}
48
?>