Skip to content
Snippets Groups Projects
Commit ca759b7a authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #27194 : tests

parent a9f949d5
Branches
Tags
2 merge requests!1132Hotline#29412 images des articles dans le resultat de recherche,!1028Dev#27194 add blocks in front
......@@ -18,9 +18,10 @@
* along with BOKEH; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once 'library/ZendAfi/View/Helper/ViewHelperTestCase.php';
abstract class ZendAfi_View_Helper_Accueil_RechSimpleTestCase extends ViewHelperTestCase {
protected $_storm_default_to_volatile = true;
public function setup() {
parent::setup();
$this->_helper = new ZendAfi_View_Helper_Accueil_RechSimple(1,
......@@ -37,6 +38,45 @@ abstract class ZendAfi_View_Helper_Accueil_RechSimpleTestCase extends ViewHelper
class ZendAfi_View_Helper_Accueil_RechSimpleWithAdminTest extends ZendAfi_View_Helper_Accueil_RechSimpleTestCase {
public function setUp() {
parent::setUp();
$this->login(ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL);
$this->_html = $this->_helper->getBoite();
}
protected function assertLocalXPath($xpath) {
parent::assertXPath($this->_html, $xpath, $this->_html);
}
/** @test */
public function adminActionsShouldBePresent() {
$this->assertLocalXPath('//div[@class="configuration_module"]');
}
/** @test */
public function configActionShouldBePresent() {
$this->assertLocalXPath('//img[contains(@onclick, "/admin/accueil/rechsimple?config=accueil")]');
}
/** @test */
public function addBlockActionShouldBePresent() {
$this->assertLocalXPath('//img[contains(@onclick, "/admin/accueil/add-block/id_module/1/division/1")]');
}
/** @test */
public function deleteBlockActionShouldBePresent() {
$this->assertLocalXPath('//a[contains(@href, "/admin/accueil/delete-block/id_module/1/division/1")]');
}
}
class ZendAfi_View_Helper_Accueil_RechSimpleWithAutocompleteTest extends ZendAfi_View_Helper_Accueil_RechSimpleTestCase {
public function setup() {
......@@ -67,7 +107,6 @@ class ZendAfi_View_Helper_Accueil_RechSimpleWithAutocompleteTest extends ZendAfi
class ZendAfi_View_Helper_Accueil_RechSimpleWithoutAutocompleteTest extends ZendAfi_View_Helper_Accueil_RechSimpleTestCase {
public function setup() {
parent::setUp();
Class_Batch::beVolatile();
$this->_html = $this->_helper->getBoite();
$this->_head_script = Class_ScriptLoader::getInstance()->html();
}
......@@ -117,5 +156,4 @@ class ZendAfi_View_Helper_Accueil_RechSimpleWithCacheActifAndSelectBibEnabledTes
public function cacheContentShouldBeDisabeld() {
$this->assertFalse($this->_helper->shouldCacheContent());
}
}
?>
\ No newline at end of file
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment