Skip to content
Snippets Groups Projects
Commit 4e70e3d1 authored by Sebastien ANDRE's avatar Sebastien ANDRE
Browse files

hotline#136565: Front Config must update Article config

parent e4806c18
1 merge request!4077hotline#136565: Front Config must update Article config
Pipeline #13757 failed with stage
in 3 hours, 21 minutes, and 17 seconds
- ticket #136565 : Rédacteur portail avec les droits de configuration depuis l'interface publique : correction de l'accès à la configuration des boîtes articles
\ No newline at end of file
......@@ -76,6 +76,7 @@ class ZendAfi_Acl_AdminControllerGroup {
'file-manager/delete' => Class_UserGroup::RIGHT_USER_FILE_ACCESS,
'file-manager/drop' => Class_UserGroup::RIGHT_USER_FILE_ACCESS,
'file-manager' => null,
'bib/articles' => Class_UserGroup::RIGHT_USER_CONFIG_FRONT,
],
$_activated = [];
......
<?php
/**
* Copyright (c) 2012-2021, Agence Française Informatique (AFI). All rights reserved.
*
* BOKEH is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* BOKEH is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with BOKEH; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* hotline: #136565 */
class WidgetControllerArticlesRightTest extends Admin_AbstractControllerTestCase {
protected
$_storm_default_to_volatile = true;
public function setUp() {
parent::setUp();
$logged_user = $this->fixture(Class_Users::class,
['id' => 6,
'login' => 'totoro',
'password' => '123456'])
->beModoPortail()
->setUserGroups([$this->fixture(Class_UserGroup::class,
['id' => 20,
'libelle' => 'Redacteur portail'])
->addRightConfigFront()
]);
ZendAfi_Auth::getInstance()->logUser($logged_user);
$profil = $this->fixture(Class_Profil::class, ['id' => 5]);
$simple_widgets = ['modules' =>
['6' =>
['division' => 3,
'id_module' => '6',
'type_module' => 'NEWS',
'preferences' => ['titre' => 'Article Boite',
'id_items' => '359',
'display_order' => 'Selection',
'profile_id' => '5',
'style_liste' => 'none',
'styles_reload' => '0'
]
]]];
$profil->setCfgAccueil($simple_widgets)->save();
$this->fixture(Class_ArticleCategorie::class,
['id' => 20,
'libelle' => 'Chavarines'
]);
$this->fixture(Class_Article::class,
['id' => 10,
'titre' => 'Article',
'contenu' => 'Contenu',
'id_cat' => 20
]);
}
/** @test */
public function treeSelectShouldBeInLoadingModeInWidgetController() {
$this->dispatch('/admin/widget/edit-widget/id/6/id_profil/5');
$this->assertXPath('//img[contains(@src, "/public/admin/images/loading.gif")]');
}
/** @test */
public function bibControllerShouldBeAccessibleForUserGroupConfigFront() {
$this->dispatch('/admin/bib/articles/id_bib/');
$this->assertNotNull(json_decode($this->_response->getBody()));
}
}
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