blob: baac69ba4f7f8eedb6806ced37bad1aad620ea7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 4c27cc8..c73448f 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -4,20 +4,11 @@ ob_start();
$basePath = dirname(dirname(__FILE__));
-require_once $basePath.'/_toolkit_loader.php';
+require_once $basePath.'/lib/Saml2/autoload.php';
+
if (!defined('TEST_ROOT')) define('TEST_ROOT', dirname(__FILE__));
-if (!defined('XMLSECLIBS_DIR')) define('XMLSECLIBS_DIR', $basePath.'/extlib/xmlseclibs/');
-require_once XMLSECLIBS_DIR . 'xmlseclibs.php';
-
-if (!defined('ONELOGIN_SAML_DIR')) define('ONELOGIN_SAML_DIR', $basePath.'/lib/Saml/');
-require_once ONELOGIN_SAML_DIR . 'AuthRequest.php';
-require_once ONELOGIN_SAML_DIR . 'Response.php';
-require_once ONELOGIN_SAML_DIR . 'Settings.php';
-require_once ONELOGIN_SAML_DIR . 'Metadata.php';
-require_once ONELOGIN_SAML_DIR . 'XmlSec.php';
-
if (!defined('ONELOGIN_CUSTOMPATH')) {
define('ONELOGIN_CUSTOMPATH', dirname(__FILE__).'/data/customPath/');
}
@@ -29,12 +20,12 @@ if (!function_exists('getUrlFromRedirect')) {
/**
* In phpunit when a redirect is executed an Excepion raise,
* this funcion Get the target URL of the redirection
- *
+ *
* @param array $trace Trace of the Stack when an Exception raised
*
* @return string $targeturl Target url of the redirection
*/
- function getUrlFromRedirect($trace)
+ function getUrlFromRedirect($trace)
{
$param_args = $trace[0]['args'][4];
$targeturl = $param_args['url'];
@@ -45,12 +36,12 @@ if (!function_exists('getUrlFromRedirect')) {
if (!function_exists('getParamsFromUrl')) {
/**
* Parsed the Query parameters of an URL.
- *
+ *
* @param string $url The URL
*
* @return array $parsedQuery Parsed query of the url
*/
- function getParamsFromUrl($url)
+ function getParamsFromUrl($url)
{
$parsedUrl = parse_url($url);
$query = $parsedUrl['query'];
|