Completed
Push — master ( 3aaa57...3b1bb7 )
by Aimeos
02:24
created

FlyAwsS3Test::setUp()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 2
eloc 3
nc 2
nop 0
1
<?php
2
3
namespace Aimeos\MW\Filesystem;
4
5
6
class FlyAwsS3Test extends \PHPUnit_Framework_TestCase
7
{
8
	protected function setUp()
9
	{
10
		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
			$this->markTestSkipped( 'Install Flysystem first' );
12
		}
13
	}
14
15
16
	public function testGetProvider()
17
	{
18
		if( !class_exists( '\League\Flysystem\AwsS3v3\AwsS3Adapter' ) ) {
19
			$this->markTestSkipped( 'Install Flysystem AwsS3v3 adapter' );
20
		}
21
22
		$object = new FlyAwsS3( array( 'bucket' => 'test' ) );
23
		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
24
25
		$this->setExpectedException( 'InvalidArgumentException' );
26
		$object->has( 'test' );
27
	}
28
29
30
	public function testGetProviderNoBucket()
31
	{
32
		$object = new FlyAwsS3( array() );
33
		$this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );
34
35
		$this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' );
36
		$object->has( 'test' );
37
	}
38
}
39