diff --git a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php index ed314b736bc1f0da00705d78c78530e23b7fb645..7e20211136f2f1f4750dd6227d28e4201fef4500 100644 --- a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php +++ b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php @@ -21,11 +21,20 @@ abstract class Cosmo_DataProfileControllerTestCase extends CosmoControllerTestCase { + protected $_storm_default_to_volatile = true; + public function setUp() { parent::setUp(); - Class_IntProfilDonnees::forKoha()->assertSave(); - Class_IntProfilDonnees::forNanook()->assertSave(); + $koha = $this->fixture('Class_IntProfilDonnees', + ['id' => 56]); + $koha->updateAttributes(Class_IntProfilDonnees::forKoha()->toArray()); + $koha->setId(56)->save(); + + $nanook = $this->fixture('Class_IntProfilDonnees', + ['id' => 105]); + $nanook->updateAttributes(Class_IntProfilDonnees::forNanook()->toArray()); + $nanook->setId(105)->save(); $this->fixture('Class_CosmoVar', ['id' => 'champs_pret', @@ -83,7 +92,7 @@ class Cosmo_DataProfileControllerIndexTest extends Cosmo_DataProfileControllerTe /** @test */ public function firstTrShouldContainsLinkEditKohaProfile() { - $this->assertXPath('//table//tr[1]/td/a[contains(@href, "/cosmo/data-profile/edit/id/1")]'); + $this->assertXPath('//table//tr[1]/td/a[contains(@href, "/cosmo/data-profile/edit/id/56")]', $this->_response->getBody()); } @@ -374,30 +383,30 @@ class Cosmo_DataProfileControllerPostEditUnimarcKohaFileFormatTest extends Cosmo 'light_records' => 'ean;ean', 'carts' => 'LIBELLE; ROLE']; - $this->postDispatch('cosmo/data-profile/edit/id/1', $post, true); + $this->postDispatch('cosmo/data-profile/edit/id/56', $post, true); } /** @test */ public function shouldRedirectToCosmoSlashDataProfileSlashEditSlashIdSlashOne() { - $this->assertRedirectTo('/cosmo/data-profile/edit/id/1'); + $this->assertRedirectTo('/cosmo/data-profile/edit/id/56'); } /** @test */ public function libelleShouldBeNewKoha() { - $this->assertEquals('New Koha', Class_IntProfilDonnees::find(1)->getLibelle()); + $this->assertEquals('New Koha', Class_IntProfilDonnees::find(56)->getLibelle()); } /** @test */ public function accentsShouldBeISO2709() { - $this->assertEquals(Class_IntProfilDonnees::ENCODING_ISO2709, Class_IntProfilDonnees::find(1)->getAccents()); + $this->assertEquals(Class_IntProfilDonnees::ENCODING_ISO2709, Class_IntProfilDonnees::find(56)->getAccents()); } /** @test */ public function xmlBaliseAbonneShouldBeSubscribers() { - $this->assertEquals('subscribers', Class_IntProfilDonnees::find(1)->getXmlBaliseAbonne()); + $this->assertEquals('subscribers', Class_IntProfilDonnees::find(56)->getXmlBaliseAbonne()); } } \ No newline at end of file