diff --git a/tests/application/modules/admin/controllers/CatalogueControllerTest.php b/tests/application/modules/admin/controllers/CatalogueControllerTest.php index 06fc30285684b73de2b2562cdaeae6de30d78bde..c17fc5b08b4e506d553491f66ee771b8cfac03d9 100644 --- a/tests/application/modules/admin/controllers/CatalogueControllerTest.php +++ b/tests/application/modules/admin/controllers/CatalogueControllerTest.php @@ -907,7 +907,7 @@ class CatalogueControllerEditInPopupPostTest extends CatalogueControllerEditInPo /** @test */ public function responseShouldBeARedirectWithJavascript() { - $this->assertXpathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXpathContentContains('//script', 'document.location.href = document.location.href;'); } } @@ -934,7 +934,7 @@ class CatalogueControllerAddCatalogueInPopupPostTest extends CatalogueController /** @test */ public function responseShouldBeARedirectWithJavascript() { - $this->assertXpathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXpathContentContains('//script', 'document.location.href = document.location.href;'); } } diff --git a/tests/application/modules/admin/controllers/CmsControllerTest.php b/tests/application/modules/admin/controllers/CmsControllerTest.php index 359980f56865e577b0d76ee63b9fcf5c12e08b7f..039fa0e992834d5725eab5f939d25a4a38088ce3 100644 --- a/tests/application/modules/admin/controllers/CmsControllerTest.php +++ b/tests/application/modules/admin/controllers/CmsControllerTest.php @@ -1169,7 +1169,7 @@ class CmsControllerArticleConcertEditActionPostRenderPopupTest extends CmsContro /** @test */ public function responseShouldBeARedirectWithJavascript() { - $this->assertXpathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXpathContentContains('//script', 'document.location.href = document.location.href;'); } diff --git a/tests/application/modules/opac/controllers/AbonneControllerAvisTest.php b/tests/application/modules/opac/controllers/AbonneControllerAvisTest.php index 580c586bd2ba2a8fc95ebaa2b66f287cf79c4ebc..87fa641e70431165bd4a866e3c5d0bb82f0e16d9 100644 --- a/tests/application/modules/opac/controllers/AbonneControllerAvisTest.php +++ b/tests/application/modules/opac/controllers/AbonneControllerAvisTest.php @@ -876,7 +876,7 @@ class AbonneControllerEditAvisNoticeNotFoundActionTest extends AbstractControlle /** @test */ public function responseShouldReloadPage() { - $this->assertXPathContentContains('//script', 'parent.window.location = parent.document.location.href;', $this->_response->getBody()); + $this->assertXPathContentContains('//script', 'document.location.href = document.location.href;'); } } @@ -901,7 +901,7 @@ class AbonneControllerEditAvisNoticeNotAdminLoggedActionTest extends AbstractCon /** @test */ public function responseShouldReloadPage() { - $this->assertXpathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXpathContentContains('//script', 'document.location.href = document.location.href;'); } } @@ -1028,7 +1028,7 @@ class AbonneControllerDeleteAvisNoticeAdminLoggedActionTest extends AbstractCont /** @test */ public function shouldContainsSciptToRedirectToReferer() { - $this->assertXpathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXpathContentContains('//script', 'document.location.href = document.location.href;'); } } diff --git a/tests/application/modules/opac/controllers/ModulesControllerKidilanguesTest.php b/tests/application/modules/opac/controllers/ModulesControllerKidilanguesTest.php index f3d5516a193c41b8726e0e482b65821515851af9..8a238ed2c6ae8aa2bd6b2105d5d6d395bea2166e 100644 --- a/tests/application/modules/opac/controllers/ModulesControllerKidilanguesTest.php +++ b/tests/application/modules/opac/controllers/ModulesControllerKidilanguesTest.php @@ -89,7 +89,7 @@ class ModulesControllerKidilanguesLoggedV1Test extends ModulesControllerKidilang /** @test */ public function shouldContainsScriptToRedirectToKidilangueSSOUrl() { - $this->assertXPathContentContains('//script', 'window.location="http://www.kidilangues.fr/directaccess/biblio/dcc509a6f7a4238a0b95849bc4c23820/fc2f6178abeec3a91654adc3f22419fd/Ud4x5rY2DddxHOL9AuC3pNGbnlKua8e4HK2SiO8JwWc/cfcd208495d565ef66e7dff9f98764da/0";'); + $this->assertXPathContentContains('//script', 'document.location.href="http://www.kidilangues.fr/directaccess/biblio/dcc509a6f7a4238a0b95849bc4c23820/fc2f6178abeec3a91654adc3f22419fd/Ud4x5rY2DddxHOL9AuC3pNGbnlKua8e4HK2SiO8JwWc/cfcd208495d565ef66e7dff9f98764da/0";'); } } @@ -107,7 +107,7 @@ class ModulesControllerKidilanguesLoggedV2Test extends ModulesControllerKidilang /** @test */ public function shouldContainsScriptToRedirectToKidilangueSSOUrl() { - $this->assertXPathContentContains('//script', 'window.location="http://www.kidilangues.fr/directaccess/mediatheque/dcc509a6f7a4238a0b95849bc4c23820/afi/password/cfcd208495d565ef66e7dff9f98764da/YdeUSJ3yRfryGv2jalLR0gVVNoaLMlGiR43kK-aXlN0";'); + $this->assertXPathContentContains('//script', 'document.location.href="http://www.kidilangues.fr/directaccess/mediatheque/dcc509a6f7a4238a0b95849bc4c23820/afi/password/cfcd208495d565ef66e7dff9f98764da/YdeUSJ3yRfryGv2jalLR0gVVNoaLMlGiR43kK-aXlN0";'); } } diff --git a/tests/application/modules/opac/controllers/PanierControllerTest.php b/tests/application/modules/opac/controllers/PanierControllerTest.php index e92d9208fdeb6fa98e68df398a95576fa27cb121..0cbced6083d920a26c428cae9e962ea4d92aa319 100644 --- a/tests/application/modules/opac/controllers/PanierControllerTest.php +++ b/tests/application/modules/opac/controllers/PanierControllerTest.php @@ -1395,7 +1395,7 @@ class PanierControllerChangePanierAjaxPostRenderPopupTest extends PanierControll public function responseShouldBeARedirectWithJavascript() { $this->_xpath->assertXPathContentContains($this->_json->content, '//script', - 'window.location = parent.document.location.href'); + 'document.location.href = document.location.href'); } diff --git a/tests/scenarios/CiteDeLaMusique/CiteDeLaMusiqueTest.php b/tests/scenarios/CiteDeLaMusique/CiteDeLaMusiqueTest.php index fcf8459908bfcd8874fd7d1e1be680c7acac0590..8bdc9d098438d541af55b87cca9172c5a501752b 100644 --- a/tests/scenarios/CiteDeLaMusique/CiteDeLaMusiqueTest.php +++ b/tests/scenarios/CiteDeLaMusique/CiteDeLaMusiqueTest.php @@ -146,7 +146,7 @@ class CiteDeLaMusiqueModulesControllerTest extends AbstractControllerTestCase { public function citeDeLaMusiqueActionShouldRedirectToCiteDeLaMusiqueLogon() { $this->dispatch('/modules/cite-de-la-musique', true); $this->assertXPathContentContains('//script', - 'location="http://media.citedelamusique.fr/medias/logon/34-mylib"'); + 'document.location.href="http://media.citedelamusique.fr/medias/logon/34-mylib"'); } diff --git a/tests/scenarios/MultiCards/MultiCardsTest.php b/tests/scenarios/MultiCards/MultiCardsTest.php index 290fccba7b232b4d07eb1f920221d12dcad1147e..7272b6beae3d56eaf3108a8b6485f59d259eb2a8 100644 --- a/tests/scenarios/MultiCards/MultiCardsTest.php +++ b/tests/scenarios/MultiCards/MultiCardsTest.php @@ -327,7 +327,7 @@ class Scenario_AbonneMultiCardsAddCardPostActionTest extends Scenario_AbonneMult /** @test */ public function responseShouldRedirectToAddCard() { - $this->assertXPathContentContains('//script', 'parent.window.location = parent.document.location.href;'); + $this->assertXPathContentContains('//script', 'document.location.href = document.location.href;'); }