Skip to content

Commit 13f7760

Browse files
committed
Bootstrap OCI test for 3.3.x
1 parent 848021c commit 13f7760

File tree

6 files changed

+616
-472
lines changed

6 files changed

+616
-472
lines changed

.github/phpunit-oracle-github.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="true"
3+
backupStaticAttributes="false"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
processIsolation="false"
9+
stopOnFailure="false"
10+
verbose="true"
11+
bootstrap="../tests/bootstrap.php">
12+
<testsuites>
13+
<testsuite name="phpBB Test Suite">
14+
<directory suffix="_test.php">../tests</directory>
15+
<exclude>../tests/functional</exclude>
16+
<exclude>../tests/lint_test.php</exclude>
17+
</testsuite>
18+
<testsuite name="phpBB Functional Tests">
19+
<directory suffix="_test.php">../tests/functional</directory>
20+
</testsuite>
21+
</testsuites>
22+
23+
<groups>
24+
<exclude>
25+
<group>slow</group>
26+
</exclude>
27+
</groups>
28+
29+
<php>
30+
<server name="PHPBB_TEST_DBMS" value="phpbb\db\driver\oracle"/>
31+
<server name="PHPBB_TEST_DBHOST" value="localhost" />
32+
<server name="PHPBB_TEST_DBPORT" value="1521" />
33+
<server name="PHPBB_TEST_DBNAME" value="XE" />
34+
<server name="PHPBB_TEST_DBUSER" value="system" />
35+
<server name="PHPBB_TEST_DBPASSWD" value="oracle" />
36+
<server name="PHPBB_TEST_REDIS_HOST" value="localhost" />
37+
<server name="PHPBB_TEST_MEMCACHED_HOST" value="localhost" />
38+
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
39+
<server name="PHPBB_FUNCTIONAL_URL" value="http://localhost/" />
40+
</php>
41+
</phpunit>

0 commit comments

Comments
 (0)