15 lines
623 B
PHP
15 lines
623 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once PLUGIN_ROOT . '/exec/lib/Http.php';
|
|
|
|
test('http redirect page performs top level browser navigation', function (): void {
|
|
$html = Http::redirectPageHtml('https://mx1.domena.pl:2222/api/login/url?key=SECRET&x=1');
|
|
|
|
assert_contains('window.top.location.replace', $html);
|
|
assert_contains('window.location.replace', $html);
|
|
assert_contains('<meta http-equiv="refresh"', $html);
|
|
assert_contains('https://mx1.domena.pl:2222/api/login/url?key=SECRET&x=1', $html);
|
|
assert_contains('https://mx1.domena.pl:2222/api/login/url?key=SECRET\\u0026x=1', $html);
|
|
});
|