Skip to content
Snippets Groups Projects
Commit 221eb880 authored by efalcy's avatar efalcy
Browse files

hotline #61301 : add numeric ressources controller for telephone module

parent 5f0b7674
Branches
Tags
4 merge requests!2334Master,!2260Master,!2259Hotline master,!2252Hotline#61301 probleme d acces au kiosk
Pipeline #2110 failed with stage
in 17 minutes and 34 seconds
- ticket #61301 : Problème d'accès au Kiosk
\ No newline at end of file
- ticket #61301 : Problème d'accès au Kiosk en version mobile
\ No newline at end of file
<?php
/**
* Copyright (c) 2012, 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
*/
require_once 'TelephoneAbstractControllerTestCase.php';
class ModulesControllerTest extends TelephoneAbstractControllerTestCase {
public function setUp() {
parent::setUp();
$cfg_accueil =
['modules' => ['1' => ['division' => '1',
'type_module' => 'RECH_SIMPLE',
'preferences' => []],
'2' => ['division' => '1',
'type_module' => 'NEWS',
'preferences' => ['titre' => 'Concerts',
'rss_avis' => 0]],
'3' => ['division' => '1',
'type_module' => 'LOGIN',
'preferences' => ['titre' => 'Se connecter',
'identifiant' => 'identifiant',
'identifiant_exemple' => 'numero carte',
'mot_de_passe' => 'mot de passe',
'mot_de_passe_exemple' => 'zork',
'lien_connexion' => 'go']],
'4' => ['division' => '1',
'type_module' => 'BIB_NUMERIQUE',
'preferences' => ['titre' => 'Mes albums']],
'5' => ['division' => '1',
'type_module' => 'CALENDAR',
'preferences' => ['titre' => 'Agenda']],
'6' => ['division' => '1',
'type_module' => 'CRITIQUES',
'preferences' => ['titre' => 'Critiques']],
'7' => ['division' => '1',
'type_module' => 'LIBRARY',
'preferences' => ['titre' => 'Libraries']]
]];
$this->profil_adulte = $this->fixture('Class_Profil', ['id' => 2])
->setTitreSite('Smartphone')
->setLibelle(null)
->setCfgAccueil($cfg_accueil)
->setSkin('vide')
->setHeaderCss('mon_style.css')
->setHauteurBanniere(150)
->setBrowser('telephone')
->beCurrentProfil();
$this->fixture('Class_Profil', ['id' => 34,
'parent_profil' => $this->profil_adulte]);
Class_Profil_Skin::setFileSystem((new Storm_FileSystem_Volatile())
->mkdir('/public/opac/skins/vide/css/')
->touch('/public/opac/skins/vide/css/mobile.css'));
Class_Profil::setFileWriter(Storm_Test_ObjectWrapper::mock()->whenCalled('fileExists')->answers(true));
RessourcesNumeriquesFixtures::activateLeKiosk();
$group = $this->fixture('Class_UserGroup', ['id' => 1])
->addRight(Class_UserGroup::RIGHT_ACCES_LEKIOSK);
Class_Users::getIdentity()->setUserGroups([$group]);
$this->dispatch('/opac/modules/lekiosk');
}
public function tearDown() {
Class_Profil_Skin::setFileSystem(null);
parent::tearDown();
}
/** @test */
public function shouldHaveAccessToLekiosk() {
$this->assertContains('https://apipros.lekiosk.com/login/cas',
$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