4 * Tests for OracleInstaller
10 class OracleInstallerTest
extends MediaWikiTestCase
{
13 * @dataProvider provideOracleConnectStrings
14 * @covers OracleInstaller::checkConnectStringFormat
16 public function testCheckConnectStringFormat( $expected, $connectString, $msg = '' ) {
17 $validity = $expected ?
'should be valid' : 'should NOT be valid';
18 $msg = "'$connectString' ($msg) $validity.";
19 $this->assertEquals( $expected,
20 OracleInstaller
::checkConnectStringFormat( $connectString ),
26 * Provider to test OracleInstaller::checkConnectStringFormat()
28 function provideOracleConnectStrings() {
29 // expected result, connectString[, message]
31 array( true, 'simple_01', 'Simple TNS name' ),
32 array( true, 'simple_01.world', 'TNS name with domain' ),
33 array( true, 'simple_01.domain.net', 'TNS name with domain' ),
34 array( true, 'host123', 'Host only' ),
35 array( true, 'host123.domain.net', 'FQDN only' ),
36 array( true, '//host123.domain.net', 'FQDN URL only' ),
37 array( true, '123.223.213.132', 'Host IP only' ),
38 array( true, 'host:1521', 'Host and port' ),
39 array( true, 'host:1521/service', 'Host, port and service' ),
40 array( true, 'host:1521/service:shared', 'Host, port, service and shared server type' ),
41 array( true, 'host:1521/service:dedicated', 'Host, port, service and dedicated server type' ),
42 array( true, 'host:1521/service:pooled', 'Host, port, service and pooled server type' ),
45 'host:1521/service:shared/instance1',
46 'Host, port, service, server type and instance'
48 array( true, 'host:1521//instance1', 'Host, port and instance' ),