diff --git a/library/Class/Agenda/SQY.php b/library/Class/Agenda/SQY.php index 210c5111eff44934c7d36179be7862163bd20649..a1b3506ce83a7e07a39eefb721c6ff02a7fb349d 100644 --- a/library/Class/Agenda/SQY.php +++ b/library/Class/Agenda/SQY.php @@ -97,7 +97,8 @@ class Class_Agenda_SQY_EventWrapper { 'getStatus' => 'getStatus', 'getDomaineIds' => 'getDomaineIds', 'getIdOrigine' => 'getIdOrigine', - 'setIdOrigine' => 'setIdOrigine']; + 'setIdOrigine' => 'setIdOrigine', + 'isStatusValidated' => 'isStatusValidated']; protected $_infos = []; diff --git a/library/Class/Article.php b/library/Class/Article.php index 3c6d33578457eb43f8ae3c350a5afae9e25e552f..d5fce95a43b2d3369f0ba54e12020959c3475555 100644 --- a/library/Class/Article.php +++ b/library/Class/Article.php @@ -541,12 +541,12 @@ class Class_Article extends Storm_Model_Abstract { * @return boolean true si l'article a le status validé */ public function isStatusValidated() { - return $this->getStatus() == self::STATUS_VALIDATED; + return ($this->getStatus() == self::STATUS_VALIDATED); } public function isStatusDraft() { - return $this->getStatus() == self::STATUS_DRAFT; + return ($this->getStatus() == self::STATUS_DRAFT); } diff --git a/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php b/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php index 3dbd5d54198e603f750bfc1c5be7f6a46f575fd3..d38d1fc66d24de08d49bf4c66cc5f451e6c15746 100644 --- a/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php +++ b/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php @@ -182,6 +182,17 @@ abstract class ZendAfi_View_Helper_Accueil_KiosqueRequetesTestCase extends ZendA public function setUp() { parent::setUp(); + $this->panier_livres = Class_PanierNotice::newInstanceWithId(43, ['libelle' => 'Livres']) + ->addNotice($this->_notices[0]); + + $this->panier_films = Class_PanierNotice::newInstanceWithId(44, ['libelle' => 'Films']) + ->addNotice($this->_notices[1]); + + $this->panier_musique = Class_PanierNotice::newInstanceWithId(45, ['libelle' => 'Musique']) + ->addNotice(Class_Notice::newInstanceWithId(96, ['titre_principal' => 'Bitches Brew', + 'clef_alpha' => 'BB'])); + + $this->old_sql = Zend_Registry::get('sql'); $this->mock_sql = Storm_Test_ObjectWrapper::mock(); Zend_Registry::set('sql', $this->mock_sql); @@ -228,25 +239,15 @@ class ZendAfi_View_Helper_Accueil_KiosqueRequetesAsAdminTest extends ZendAfi_Vie public function setUp() { parent::setUp(); - $panier_livres = Class_PanierNotice::newInstanceWithId(43, ['libelle' => 'Livres']) - ->addNotice($this->_notices[0]); - - $panier_films = Class_PanierNotice::newInstanceWithId(44, ['libelle' => 'Films']) - ->addNotice($this->_notices[1]); - - $panier_musique = Class_PanierNotice::newInstanceWithId(45, ['libelle' => 'Musique']) - ->addNotice(Class_Notice::newInstanceWithId(96, ['titre_principal' => 'Bitches Brew', - 'clef_alpha' => 'BB'])); - Storm_Test_ObjectWrapper::onLoaderOfModel('Class_PanierNotice') ->whenCalled('findAllWithCatalogue') - ->answers([$panier_musique]); + ->answers([$this->panier_musique]); $redacteur = Class_Users::newInstanceWithId(54) ->beModoBib() - ->setPaniers([$panier_films, $panier_livres]); + ->setPaniers([$this->panier_films, $this->panier_livres]); ZendAfi_Auth::getInstance()->logUser($redacteur); $this->_html = $this->_helper->getBoite();