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

Merge branch 'hotline#135592_agenda_vide' into 'hotline'

hotline MT #135592 fix wall mode cache script

See merge request !4051
parents 18fd488a 3da21a52
Branches
Tags 6.53.3
1 merge request!4051hotline MT #135592 fix wall mode cache script
Pipeline #13595 failed with stage
in 53 minutes and 1 second
- ticket #135592 : Magasin de thèmes : Correction de l'affichage du mode mur.
\ No newline at end of file
......@@ -29,6 +29,7 @@ class Intonation_Library_Widget_Carousel_Agenda_View extends Intonation_Library_
protected function _renderHeadScriptsOn($script_loader) {
$script_loader->addOPACScript('calendrier');
parent::_renderHeadScriptsOn($script_loader);
return $this;
}
......
......@@ -140,3 +140,63 @@ class TemplatesAgendaWidgetWithSessionActivityAndRightRegisterTest
'Nouvelle inscription');
}
}
class TemplatesAgendaWallModeTestCase extends AbstractControllerTestCase {
public function setUp() {
parent::setUp();
ZendAfi_Auth::getInstance()->clearIdentity();
$this->_buildTemplateProfil(['id' => 78]);
$profile_patcher = (new Class_Template_ProfilePatcher(null))
->setProfile(Class_Profil::getCurrentProfil());
$profile_patcher
->addWidget(Intonation_Library_Widget_Carousel_Agenda_Definition::CODE,
Class_Profil::DIV_MAIN,
['rendering' => 'card-description',
'layout' => 'wall',
'size' => 1,
'description_length' => 4]);
$this
->onLoaderOfModel(Class_Article::class)
->whenCalled('getArticlesByPreferences')
->answers([$this->fixture(Class_Article::class,
['id' => 7,
'titre' => 'Parlez-vous français ?',
'description' => 'La description s\'arrête ici et pas plus loin.',
'contenu' => '<p>Une b...</p>',
'categorie' => $this->fixture(Class_ArticleCategorie::class,
['id' => 3,
'libelle' => 'Animations langues'])
])
]);
$this->dispatch('/opac/widget/render/widget_id/1/profile_id/78');
}
/** @test */
public function masonryJsShouldBeCall() {
$this->assertXPathContentContains('//script', '$(function(){$("#1").parent().masonry();});');
}
/** @test */
public function masonryShouldBeLoaded() {
$this->assertXPath('//head/script[contains(@src, "/masonry.js")]');
}
/** @test */
public function descriptionShouldBeTruncate() {
$this->assertXPathContentContains('//div[contains(@class, "calendar widget")]//p[contains(@class, "model_description")]',
'La description s\'arrête ici …');
}
}
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