Subversion Repositories eFlore/Projets.eflore-projets

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 jpm 1
<?php
96 jpm 2
require_once dirname(__FILE__).'/../ServiceEflorePhpUnit.php';
17 jpm 3
 
96 jpm 4
class Iso6391LanguesTest extends ServiceEflorePhpUnit {
5
 
17 jpm 6
	public function __construct() {
7
		$this->projet = 'iso-639-1';
8
		$this->service = 'langues';
9
	}
10
 
11
	public function testValeurChampPrecis() {
12
		$ressources = array('fr', 'nom');
13
		$parametres = array();
790 raphael 14
		$url = ServiceEflorePhpUnit::creerUrl($this->service, $ressources, $parametres);
15
		$retour = $this->consulterJson($this->service, $this->projet, $ressources, $parametres);
17 jpm 16
		$this->assertArrayHasKey('id', $retour, "Le json ne contient pas d'attribut : id. Voir : $url");
17
		$this->assertEquals('fr', $retour['id'], "L'attribut 'id' devrait avoir la valeur 'fr'. Voir : $url");
18
		$this->assertArrayHasKey('nom.fr', $retour, "Le json ne contient pas d'attribut : nom.fr. Voir : $url");
19
		$this->assertEquals('Français', $retour['nom.fr'], "L'attribut 'nom.fr' devrait avoir la valeur 'Français'. Voir : $url");
20
	}
21
}
22
?>