Completed
Push — master ( 953c6b...ad658e )
by Aimeos
02:48
created
lib/custom/tests/MW/Filesystem/FlyGridfsTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,39 +7,39 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyGridfs( array() );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyGridfs(array());
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
22
-		$object->has( 'test' );
21
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
22
+		$object->has('test');
23 23
 	}
24 24
 
25 25
 
26 26
 	public function testGetProviderToken()
27 27
 	{
28
-		if( !class_exists( '\League\Flysystem\GridFS\GridFSAdapter' ) ) {
29
-			$this->markTestSkipped( 'Install Flysystem GridFS adapter' );
28
+		if (!class_exists('\League\Flysystem\GridFS\GridFSAdapter')) {
29
+			$this->markTestSkipped('Install Flysystem GridFS adapter');
30 30
 		}
31 31
 
32
-		if( !class_exists( '\MongoClient' ) ) {
33
-			$this->markTestSkipped( 'Install Mongo client extension' );
32
+		if (!class_exists('\MongoClient')) {
33
+			$this->markTestSkipped('Install Mongo client extension');
34 34
 		}
35 35
 
36 36
 		$config = array(
37 37
 			'dbname' => 'test',
38 38
 		);
39
-		$object = new FlyGridfs( $config );
40
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
39
+		$object = new FlyGridfs($config);
40
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
41 41
 
42
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
43
-		$object->has( 'test' );
42
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
43
+		$object->has('test');
44 44
 	}
45 45
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyMemoryTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,21 +7,21 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		if( !class_exists( '\League\Flysystem\Memory\MemoryAdapter' ) ) {
19
-			$this->markTestSkipped( 'Install Flysystem memory adapter' );
18
+		if (!class_exists('\League\Flysystem\Memory\MemoryAdapter')) {
19
+			$this->markTestSkipped('Install Flysystem memory adapter');
20 20
 		}
21 21
 
22
-		$object = new FlyMemory( array() );
23
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
22
+		$object = new FlyMemory(array());
23
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
24 24
 
25
-		$object->has( 'test' );
25
+		$object->has('test');
26 26
 	}
27 27
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyDropboxTest.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -7,19 +7,19 @@  discard block
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyDropbox( array() );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyDropbox(array());
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
22
-		$object->has( 'test' );
21
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
22
+		$object->has('test');
23 23
 	}
24 24
 
25 25
 
@@ -28,28 +28,28 @@  discard block
 block discarded – undo
28 28
 		$config = array(
29 29
 			'accesstoken' => 'test',
30 30
 		);
31
-		$object = new FlyDropbox( $config );
32
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
31
+		$object = new FlyDropbox($config);
32
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
33 33
 
34
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
35
-		$object->has( 'test' );
34
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
35
+		$object->has('test');
36 36
 	}
37 37
 
38 38
 
39 39
 	public function testGetProviderAccess()
40 40
 	{
41
-		if( !class_exists( '\League\Flysystem\Dropbox\DropboxAdapter' ) ) {
42
-			$this->markTestSkipped( 'Install Flysystem Dropbox adapter' );
41
+		if (!class_exists('\League\Flysystem\Dropbox\DropboxAdapter')) {
42
+			$this->markTestSkipped('Install Flysystem Dropbox adapter');
43 43
 		}
44 44
 
45 45
 		$config = array(
46 46
 			'accesstoken' => 'test',
47 47
 			'appsecret' => 'test',
48 48
 		);
49
-		$object = new FlyDropbox( $config );
50
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
49
+		$object = new FlyDropbox($config);
50
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
51 51
 
52
-		$this->setExpectedException( 'Exception' );
53
-		$object->has( 'test' );
52
+		$this->setExpectedException('Exception');
53
+		$object->has('test');
54 54
 	}
55 55
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyPhpcrTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@  discard block
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyPhpcr( array() );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyPhpcr(array());
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' );
22
-		$object->has( 'test' );
21
+		$this->setExpectedException('\Aimeos\MW\Filesystem\Exception');
22
+		$object->has('test');
23 23
 	}
24 24
 
25 25
 
26 26
 	public function testGetProviderRoot()
27 27
 	{
28
-		if( !class_exists( '\League\Flysystem\Phpcr\PhpcrAdapter' ) ) {
29
-			$this->markTestSkipped( 'Install Flysystem PHPCR adapter' );
28
+		if (!class_exists('\League\Flysystem\Phpcr\PhpcrAdapter')) {
29
+			$this->markTestSkipped('Install Flysystem PHPCR adapter');
30 30
 		}
31 31
 
32 32
 		$config = array(
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
 			'path' => '/tmp/fly_phpcr.db',
35 35
 			'root' => '/',
36 36
 		);
37
-		$object = new FlyPhpcr( $config );
38
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
37
+		$object = new FlyPhpcr($config);
38
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
39 39
 
40
-		$this->setExpectedException( '\PHPCR\RepositoryException' );
41
-		$object->has( 'test' );
40
+		$this->setExpectedException('\PHPCR\RepositoryException');
41
+		$object->has('test');
42 42
 	}
43 43
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyFtpTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyFtp( array( 'host' => 'ftp.kernel.org' ) );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyFtp(array('host' => 'ftp.kernel.org'));
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$object->has( 'test' );
21
+		$object->has('test');
22 22
 	}
23 23
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyRackspaceTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -7,32 +7,32 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyRackspace( array() );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyRackspace(array());
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' );
22
-		$object->has( 'test' );
21
+		$this->setExpectedException('\Aimeos\MW\Filesystem\Exception');
22
+		$object->has('test');
23 23
 	}
24 24
 
25 25
 
26 26
 	public function testGetProviderContainer()
27 27
 	{
28
-		if( !class_exists( '\League\Flysystem\Rackspace\RackspaceAdapter' ) ) {
29
-			$this->markTestSkipped( 'Install Flysystem Rackspace adapter' );
28
+		if (!class_exists('\League\Flysystem\Rackspace\RackspaceAdapter')) {
29
+			$this->markTestSkipped('Install Flysystem Rackspace adapter');
30 30
 		}
31 31
 
32
-		$object = new FlyRackspace( array( 'container' => 'test' ) );
33
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
32
+		$object = new FlyRackspace(array('container' => 'test'));
33
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
34 34
 
35
-		$this->setExpectedException( '\OpenCloud\Common\Exceptions\CredentialError' );
36
-		$object->has( 'test' );
35
+		$this->setExpectedException('\OpenCloud\Common\Exceptions\CredentialError');
36
+		$object->has('test');
37 37
 	}
38 38
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyLocalTest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,27 +7,27 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyLocal( array( 'basedir' => dirname( dirname( __DIR__ ) ) ) );
19
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
18
+		$object = new FlyLocal(array('basedir' => dirname(dirname(__DIR__))));
19
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
20 20
 
21
-		$object->has( 'test' );
21
+		$object->has('test');
22 22
 	}
23 23
 
24 24
 
25 25
 	public function testGetProviderNoBasedir()
26 26
 	{
27
-		$object = new FlyLocal( array() );
28
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
27
+		$object = new FlyLocal(array());
28
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
29 29
 
30
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
31
-		$object->has( 'test' );
30
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
31
+		$object->has('test');
32 32
 	}
33 33
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyAwsS3Test.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -7,32 +7,32 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		if( !class_exists( '\League\Flysystem\AwsS3v3\AwsS3Adapter' ) ) {
19
-			$this->markTestSkipped( 'Install Flysystem AwsS3v3 adapter' );
18
+		if (!class_exists('\League\Flysystem\AwsS3v3\AwsS3Adapter')) {
19
+			$this->markTestSkipped('Install Flysystem AwsS3v3 adapter');
20 20
 		}
21 21
 
22
-		$object = new FlyAwsS3( array( 'bucket' => 'test' ) );
23
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
22
+		$object = new FlyAwsS3(array('bucket' => 'test'));
23
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
24 24
 
25
-		$this->setExpectedException( 'InvalidArgumentException' );
26
-		$object->has( 'test' );
25
+		$this->setExpectedException('InvalidArgumentException');
26
+		$object->has('test');
27 27
 	}
28 28
 
29 29
 
30 30
 	public function testGetProviderNoBucket()
31 31
 	{
32
-		$object = new FlyAwsS3( array() );
33
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
32
+		$object = new FlyAwsS3(array());
33
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
34 34
 
35
-		$this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' );
36
-		$object->has( 'test' );
35
+		$this->setExpectedException('\Aimeos\MW\Filesystem\Exception');
36
+		$object->has('test');
37 37
 	}
38 38
 }
Please login to merge, or discard this patch.
lib/custom/tests/MW/Filesystem/FlyReplicateTest.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,27 +7,27 @@  discard block
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		if( !class_exists( '\League\Flysystem\Replicate\ReplicateAdapter' ) ) {
19
-			$this->markTestSkipped( 'Install Flysystem Replicate adapter' );
18
+		if (!class_exists('\League\Flysystem\Replicate\ReplicateAdapter')) {
19
+			$this->markTestSkipped('Install Flysystem Replicate adapter');
20 20
 		}
21 21
 
22 22
 		$config = array(
23 23
 			'adapter' => 'Replicate',
24
-			'source' => array( 'adapter' => 'FlyMemory' ),
25
-			'replica' => array( 'adapter' => 'FlyMemory' ),
24
+			'source' => array('adapter' => 'FlyMemory'),
25
+			'replica' => array('adapter' => 'FlyMemory'),
26 26
 		);
27
-		$object = new FlyReplicate( $config );
28
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
27
+		$object = new FlyReplicate($config);
28
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
29 29
 
30
-		$object->has( 'test' );
30
+		$object->has('test');
31 31
 	}
32 32
 
33 33
 
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
 		$config = array(
37 37
 			'adapter' => 'Replicate',
38 38
 		);
39
-		$object = new FlyReplicate( $config );
40
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
39
+		$object = new FlyReplicate($config);
40
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
41 41
 
42
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
43
-		$object->has( 'test' );
42
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
43
+		$object->has('test');
44 44
 	}
45 45
 
46 46
 
@@ -48,12 +48,12 @@  discard block
 block discarded – undo
48 48
 	{
49 49
 		$config = array(
50 50
 			'adapter' => 'Replicate',
51
-			'source' => array( 'adapter' => 'FlyMemory' ),
51
+			'source' => array('adapter' => 'FlyMemory'),
52 52
 		);
53
-		$object = new FlyReplicate( $config );
54
-		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
53
+		$object = new FlyReplicate($config);
54
+		$this->assertInstanceof('\Aimeos\MW\Filesystem\Iface', $object);
55 55
 
56
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
57
-		$object->has( 'test' );
56
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
57
+		$object->has('test');
58 58
 	}
59 59
 }
Please login to merge, or discard this patch.