forked from phpservicebus/persistence-doctrine2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.sqlite.xml.dist
77 lines (77 loc) · 3.37 KB
/
phpunit.sqlite.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="PhpServiceBus Doctrine2 Persistence Test Suite">
<directory>tests/acceptance</directory>
<directory>vendor/phpservicebus/core/tests/acceptance</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="acceptancesupport\PSB\Core\PhpUnit\TestExecutionConfiguratorLoader"
file="vendor/phpservicebus/core/tests/acceptancesupport/PhpUnit/TestExecutionConfiguratorLoader.php">
<arguments>
<string>acceptancesupport\PSB\Core\RabbitMq\RabbitMqTestExecutionConfigurator</string>
<array>
<element key="host">
<string>127.0.0.1</string>
</element>
<element key="port">
<string>5672</string>
</element>
<element key="vhost">
<string>/</string>
</element>
<element key="login">
<string>guest</string>
</element>
<element key="password">
<string>guest</string>
</element>
</array>
</arguments>
</listener>
<listener class="acceptancesupport\PSB\Core\PhpUnit\TestExecutionConfiguratorLoader"
file="vendor/phpservicebus/core/tests/acceptancesupport/PhpUnit/TestExecutionConfiguratorLoader.php">
<arguments>
<string>acceptancesupport\PSB\Persistence\Doctrine2\Doctrine2TestExecutionConfigurator</string>
<array>
<element key="memory">
<boolean>true</boolean>
</element>
<element key="driver">
<string>pdo_sqlite</string>
</element>
</array>
<!--using a json encoding for the storage configs due to a bug in phpunit -->
<!--which does not handle nested arrays correctly-->
<string>
<![CDATA[
{
"OUTBOX": {
"OUTBOX_MESSAGES_TABLE_NAME": {
"table_name": "psb_outbox_messages",
"schema_provider":
"PSB\\Persistence\\Doctrine2\\Outbox\\SchemaProvider\\OutboxMessageSchemaProvider"
},
"OUTBOX_ENDPOINTS_TABLE_NAME": {
"table_name": "psb_outbox_endpoints",
"schema_provider":
"PSB\\Persistence\\Doctrine2\\Outbox\\SchemaProvider\\OutboxEndpointSchemaProvider"
}
}
}
]]>
</string>
</arguments>
</listener>
</listeners>
</phpunit>