From d36e0dde4214cc165d935f23dd81b31b669694b4 Mon Sep 17 00:00:00 2001 From: llaffont <llaffont@git-test.afi-sa.fr> Date: Tue, 4 Sep 2012 16:04:21 +0000 Subject: [PATCH] Ajout attribut visible sur les albums --- library/Class/Album.php | 11 ++++++++++- tests/library/Class/AlbumTest.php | 22 +++++++++++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/library/Class/Album.php b/library/Class/Album.php index ea4d008fbc7..40b505ed6e8 100644 --- a/library/Class/Album.php +++ b/library/Class/Album.php @@ -109,7 +109,8 @@ class Class_Album extends Storm_Model_Abstract { 'cfg_thumbnails' => '', 'provenance' => '', 'cote' => '', - 'notes' => ''); + 'notes' => '', + 'visible' => true); /** @var Class_Upload */ protected $_uploadHandler; @@ -1048,6 +1049,14 @@ class Class_Album extends Storm_Model_Abstract { } return $values; } + + + /** + * @return boolean + */ + public function isVisible() { + return (bool)$this->getVisible(); + } } ?> \ No newline at end of file diff --git a/tests/library/Class/AlbumTest.php b/tests/library/Class/AlbumTest.php index 236e0b460ac..398c2e58168 100644 --- a/tests/library/Class/AlbumTest.php +++ b/tests/library/Class/AlbumTest.php @@ -84,6 +84,25 @@ class AlbumHarlockBasicTest extends AlbumHarlockTestCase { $this->_album->getPermalink()); } + + /** @test */ + public function albumShouldBeVisible() { + $this->assertTrue($this->_album->isVisible()); + } + + + /** @test */ + public function getVisibleShouldReturnTrue() { + $this->assertTrue($this->_album->getVisible()); + } + + + /** @test */ + public function withVisibleFalseShouldNotBeVisible() { + $this->_album->setVisible(false); + $this->assertFalse($this->_album->isVisible()); + } + /** @test */ public function withIdOrigine_05DC03_PermalinkShouldBeBibNumNoticeIDO_05DC03() { @@ -132,7 +151,8 @@ class AlbumHarlockBasicTest extends AlbumHarlockTestCase { 'matiere' => '', 'provenance' => '', 'cote' => '', - 'editeur' => ''), + 'editeur' => '', + 'visible' => true), $this->_album->toArray()); } -- GitLab