forked from phpcr/phpcr-api-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.dist.php
122 lines (111 loc) · 4.26 KB
/
bootstrap.dist.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
* Sample bootstrap file (as used for jr_cr)
*
* This file does some basic stuff that's project specific.
* Please copy the file for your project and make sure phpunit.xml includes
* this file.
*
* function getRepository(config) which returns the repository
* function getPHPCRSession(config) which returns the session
*
* TODO: move the following to a base file, as they are not implementation specific
* function getSimpleCredentials(user, password) which returns simpleCredentials
*
* constants necessary to the JCR 1.0/JSR-170 and JSR-283 specs
*/
// Make sure we have the necessary config
$necessaryConfigValues = array('jcr.url', 'jcr.user', 'jcr.pass', 'jcr.workspace', 'jcr.transport');
foreach ($necessaryConfigValues as $val) {
if (empty($GLOBALS[$val])) {
die('Please set '.$val.' in your phpunit.xml.' . "\n");
}
}
/**
* autoloader: jackalope-api-tests relies on this autoloader.
*/
function jackalopeApiTestsAutoload($class) {
$incFile = dirname(__FILE__) . '/../lib/' . str_replace("_", DIRECTORY_SEPARATOR, $class).".php";
if (@fopen($incFile, "r", TRUE)) {
include($incFile);
return $incFile;
}
return FALSE;
}
spl_autoload_register('jackalopeApiTestsAutoload');
/**
* @return string classname of the repository factory
*/
function getRepositoryFactoryClass()
{
return 'Jackalope\RepositoryFactoryJackrabbit';
}
/**
* @return hashmap to be used with the repository factory
*/
function getRepositoryFactoryParameters($config)
{
return array('jackalope.jackrabbit_uri' => $config['url']);
}
/**
* Repository lookup is implementation specific.
* @param config The configuration where to find the repository
* @return the repository instance
*/
function getRepository($config) {
if (empty($config['url']) || empty($config['transport'])) {
return false;
}
return jr_cr::lookup($config['url'], $config['transport']);
}
/**
* @param user The user name for the credentials
* @param password The password for the credentials
* @return the simple credentials instance for this implementation with the specified username/password
*/
function getSimpleCredentials($user, $password) {
return new jr_cr_simplecredentials($user, $password);
}
/**
* Get a session for this implementation.
* @param config The configuration that is passed to getRepository
* @param credentials The credentials to log into the repository. If omitted, $config['user'] and $config['pass'] is used with getSimpleCredentials
* @return A session resulting from logging into the repository found at the $config path
*/
function getPHPCRSession($config, $credentials = null) {
$repository = getRepository($config);
if (isset($config['pass']) || isset($credentials)) {
if (empty($config['workspace'])) {
$config['workspace'] = null;
}
if (empty($credentials)) {
$credentials = getSimpleCredentials($config['user'], $config['pass']);
}
return $repository->login($credentials, $config['workspace']);
} elseif (isset($config['workspace'])) {
return $repository->login(null, $config['workspace']);
} else {
return $repository->login(null, null);
}
}
function getFixtureLoader($config)
{
require_once "importexport.php";
return new jackalope_importexport(__DIR__."/fixtures", (isset($config['jackalope_jar']) ? $config['jackalope_jar'] : null));
}
/** some constants */
define('SPEC_VERSION_DESC', 'jcr.specification.version');
define('SPEC_NAME_DESC', 'jcr.specification.name');
define('REP_VENDOR_DESC', 'jcr.repository.vendor');
define('REP_VENDOR_URL_DESC', 'jcr.repository.vendor.url');
define('REP_NAME_DESC', 'jcr.repository.name');
define('REP_VERSION_DESC', 'jcr.repository.version');
define('LEVEL_1_SUPPORTED', 'level.1.supported');
define('LEVEL_2_SUPPORTED', 'level.2.supported');
define('OPTION_TRANSACTIONS_SUPPORTED', 'option.transactions.supported');
define('OPTION_VERSIONING_SUPPORTED', 'option.versioning.supported');
define('OPTION_OBSERVATION_SUPPORTED', 'option.observation.supported');
define('OPTION_LOCKING_SUPPORTED', 'option.locking.supported');
define('OPTION_QUERY_SQL_SUPPORTED', 'option.query.sql.supported');
define('QUERY_XPATH_POS_INDEX', 'query.xpath.pos.index');
define('QUERY_XPATH_DOC_ORDER', 'query.xpath.doc.order');