Skip to content
Snippets Groups Projects
Commit 90556482 authored by Laurent's avatar Laurent
Browse files

hotline #100508 LeKiosk : change CAS url

parent 61482221
Branches
Tags
2 merge requests!3308Hotline,!3305hotline #100508 LeKiosk : change CAS url
Pipeline #8690 passed with stage
in 44 minutes and 55 seconds
- ticket #100508 : LeKiosk : adaptation au changement de SSO par CAS
\ No newline at end of file
......@@ -22,13 +22,10 @@
class Lekiosk_CasLink extends Lekiosk_LinkAbstract {
public function url($album = null) {
return 'https://apipros.lekiosk.com/login/cas?'
. http_build_query(
[
'cas_fournisseur' => Class_Url::absolute(['controller' => 'cas-server-v10'], null, true),
'id' => Lekiosk_Config::getInstance()->getAdminVar('ID'),
'returnUrl' => $this->_getReturnURL($album)
] );
$url = 'https://api.lekiosk.com/api/v1/externallogin/' . Lekiosk_Config::getInstance()->getAdminVar('ID');
return $album
? $url . '?' . http_build_query(['returnUrl' => $this->_getReturnURL($album)])
: $url;
}
}
?>
\ No newline at end of file
......@@ -106,10 +106,7 @@ class LekioskLinkModeSSOTest extends LekioskLinkModeLinkTestCase {
/** @test */
public function linkShouldBeCasUrlWithLekioskId() {
$url = 'https://apipros.lekiosk.com/login/cas?'
.'cas_fournisseur=' . urlencode(Class_Url::rootUrl() . BASE_URL . '/cas-server-v10')
.'&id=66'
.'&returnUrl=';
$url = 'https://api.lekiosk.com/api/v1/externallogin/66';
$this->assertEquals($url,
(new Lekiosk_CasLink(''))->url());
......@@ -152,7 +149,7 @@ class LekioskModulesControllerUserWithGroupWithRightTest
public function shouldHaveAccessToLekioskCas() {
Class_AdminVar::set('Lekiosk_SSO_MODE', 'CAS');
$this->dispatch('/opac/modules/lekiosk', true);
$this->assertContains('https://apipros.lekiosk.com/login/cas',
$this->assertContains('https://api.lekiosk.com/api/v1/externallogin/66',
$this->_response->getBody());
}
......@@ -425,10 +422,8 @@ class LekioskRenderAlbumFromRecordTest extends LekioskServiceTestCase {
/** @test */
public function linkCasShouldContainsAlbumSSOUrl() {
$this->_dispatchAlbum();
$url = 'https://apipros.lekiosk.com/login/cas?'
.'cas_fournisseur=' . urlencode(Class_Url::absolute('/cas-server-v10'))
.'&id=66'
.'&returnUrl=Le-10-Sport-National-z1962566.aspx';
$url = 'https://api.lekiosk.com/api/v1/externallogin/66?'
.'returnUrl=Le-10-Sport-National-z1962566.aspx';
$this->assertXPath('//a[@href="' . $url . '"]', $this->_response->getBody());
}
......@@ -702,10 +697,8 @@ class LekioskServiceHttpHarvestingNoticeAjaxTest extends LekioskServiceHttpHarve
/** @test */
public function linkCasShouldContainsAlbumSSOUrl() {
$this->_dispatchAlbum();
$url = 'https://apipros.lekiosk.com/login/cas?'
.'cas_fournisseur=' . urlencode(Class_Url::absolute('/cas-server-v10'))
.'&id=66'
.'&returnUrl='. urlencode('/fr/pageproduct/851749/2052615');
$url = 'https://api.lekiosk.com/api/v1/externallogin/66?'
.'returnUrl='. urlencode('/fr/pageproduct/851749/2052615');
$this->assertXPath('//a[@href="' . $url . '"]', $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