Skip to content
Snippets Groups Projects
EmplacementControllerTest.php 6.13 KiB
Newer Older
<?php
/**
 * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
 *
Laurent's avatar
Laurent committed
 * BOKEH is free software; you can redistribute it and/or modify
 * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
 * the Free Software Foundation.
 *
 * There are special exceptions to the terms and conditions of the AGPL as it
 * is applied to this software (see README file).
 *
Laurent's avatar
Laurent committed
 * BOKEH is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
 *
 * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
Laurent's avatar
Laurent committed
 * along with BOKEH; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
 */


abstract class Cosmo_EmplacementControllerTestCase extends CosmoControllerTestCase {
	public function setUp() {
		parent::setUp();

		$this->fixture('Class_CodifEmplacement', [
			'id' => 18,
			'libelle' => 'Albums',
			'regles' => '995$x=55',
			'ne_pas_afficher' => 0,
		]);
	}
}



class Cosmo_EmplacementControllerIndexTest extends Cosmo_EmplacementControllerTestCase {
	public function setUp() {
		parent::setUp();
		$this->dispatch('/cosmo/emplacement/index', true);
	}


	/** @test */
	public function titleShouldBePresent() {
		$this->assertXpathContentContains('//h1', 'Codification des emplacements');
	}


	/** @test */
	public function addButtonShouldBePresent() {
		$this->assertXpath('//input[contains(@onclick, "/cosmo/emplacement/add")]');
	}


	/** @test */
	public function albumsFormShouldBePresent() {
		$this->assertXpath('//form[contains(@action, "/cosmo/emplacement/validate/id/18")]');
	}


	/** @test */
	public function albumsLabelShouldBePresent() {
		$this->assertXpath('//input[@name="libelle"][@value="Albums"]');
	}


	/** @test */
	public function albumsRulesShouldBePresent() {
		$this->assertXpathContentContains('//textarea[@name="regles"]', '995$x=55');
	}


	/** @test */
	public function albumsDisplayShouldBePresent() {
		$this->assertXpathContentContains(
			'//select[@name="ne_pas_afficher"]/option[@selected="selected"]', 
			'Afficher les exemplaires');
	}


	/** @test */
	public function albumsDeleteButtonShouldBePresent() {
		$this->assertXpath('//input[contains(@onclick, "/cosmo/emplacement/delete/id/18")]');
	}
}



class Cosmo_EmplacementControllerAlbumsValidatePostTest extends Cosmo_EmplacementControllerTestCase {
	public function setUp() {
		parent::setUp();
		$this->postDispatch(
			'/cosmo/emplacement/validate/id/18',
			[
				'libelle' => 'Alboums',
				'regles' => '995$x=07',
				'ne_pas_afficher' => 1]);

		$this->model = Class_CodifEmplacement::find(18);
	}


	/** @test */
	public function labelShouldBeAlboums() {
		$this->assertEquals('Alboums', $this->model->getLibelle());
	}


	/** @test */
	public function rulesShouldBeDollarXEqualsZeroSeven() {
		$this->assertEquals('995$x=07', $this->model->getRegles());
	}


	/** @test */
	public function displayHideShouldBeHide() {
		$this->assertEquals(1, $this->model->getNePasAfficher());
	}
}



class Cosmo_EmplacementControllerAddTest extends Cosmo_EmplacementControllerTestCase {
	public function setUp() {
		parent::setUp();
		$this->dispatch('/cosmo/emplacement/add', true);
	}


	/** @test */
	public function titleShouldBePresent() {
		$this->assertXpathContentContains('//h1', 'Codification des emplacements');
	}


	/** @test */
	public function formActionShouldGoToValidate() {
		$this->assertXpath('//form[contains(@action, "/cosmo/emplacement/validate")]');
	}


	/** @test */
	public function labelShouldDefaultToNouvelEmplacement() {
		$this->assertXpath('//input[@name="libelle"][@value="** nouvel emplacement **"]');
	}


	/** @test */
	public function rulesShouldDefault995DollarKSlashR() {
		$this->assertXpathContentContains('//textarea[@name="regles"]', '995$k/R');
	}


	/** @test */
	public function albumsDisplayShouldBePresent() {
		$this->assertXpathContentContains(
			'//select[@name="ne_pas_afficher"]/option[@selected="selected"]', 
			'Afficher les exemplaires');
	}


	/** @test */
	public function backButtonShouldBePresent() {
		$this->assertXpath('//input[@value="Retour"][contains(@onclick, "/cosmo/emplacement")]');
	}
}



class Cosmo_EmplacementControllerAddPostTest extends Cosmo_EmplacementControllerTestCase {
	public function setUp() {
		parent::setUp();
		$this->postDispatch(
			'/cosmo/emplacement/validate', 
			[
				'libelle' => 'Atlantis',
				'regles' => '999$y/Arcadia',
				'ne_pas_afficher' => 0]);

		$this->model = Class_CodifEmplacement::find(19);
	}


	/** @test */
	public function atlantisShouldBeSaved() {
		$this->assertNotNull($this->model);
	}


	/** @test */
	public function labelShouldBeAtlantis() {
		$this->assertEquals('Atlantis', $this->model->getLibelle());
	}


	/** @test */
	public function rulesShouldBe999DollarYSlashArcadia() {
		$this->assertEquals('999$y/Arcadia', $this->model->getRegles());
	}


	/** @test */
	public function displayHideShouldBeShow() {
		$this->assertEquals(0, $this->model->getNePasAfficher());
	}
}



class Cosmo_EmplacementControllerAlbumsValidatePostWithErrorsTest extends Cosmo_EmplacementControllerTestCase {
	public function setUp() {
		parent::setUp();
		$this->postDispatch(
			'/cosmo/emplacement/validate/id/18',
			[
				'libelle' => '',
				'regles' => '9#95$x=07',
				'ne_pas_afficher' => 1]);

		$this->model = Class_CodifEmplacement::find(18);
	}


	public function errorsProvider() {
		return [
			['Vous devez définir le libellé'],
			['Le $ est absent ou mal positionné pour la règle 9#95$x=07'],
			['Le champ n\'est pas compris entre a et z ni entre 0 et 9'],
			['Signe de comparaison incorrect']];
	}


	/** 
	 * @test 
	 * @dataProvider errorsProvider
	 */
	public function errorShouldBePresent($message) {
		$this->assertXpathContentContains('//li', $message, $this->_response->getBody());
	}


	/** @test */
	public function labelShouldNotBeSaved() {
		$this->assertTrue($this->model->hasChangedAttribute('libelle'));
	}


	/** @test */
	public function rulesShouldNotBeSaved() {
		$this->assertTrue($this->model->hasChangedAttribute('regles'));
	}
}