Address comments from @rullzer:
- implement isAvailable - run tests only if ImageMagick with HEIC support is available in the environment Signed-off-by: Sebastian Steinmetz <me@sebastiansteinmetz.ch>
This commit is contained in:
parent
8a7bc3fb03
commit
5a996b5f87
2 changed files with 20 additions and 6 deletions
|
@ -29,4 +29,12 @@ class HEIC extends Bitmap {
|
|||
public function getMimeType() {
|
||||
return '/image\/hei(f|c)/';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function isAvailable(\OCP\Files\FileInfo $file) {
|
||||
return in_array("HEIC", \Imagick::queryFonts("HEI*") );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -31,12 +31,18 @@ namespace Test\Preview;
|
|||
class HEICTest extends Provider {
|
||||
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
if ( !in_array("HEIC", \Imagick::queryFormats("HEI*")) ) {
|
||||
$this->markTestSkipped('ImageMagick is not HEIC aware. Skipping tests');
|
||||
} else {
|
||||
parent::setUp();
|
||||
|
||||
$fileName = 'testimage.heic';
|
||||
$this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName);
|
||||
$this->width = 1680;
|
||||
$this->height = 1050;
|
||||
$this->provider = new \OC\Preview\HEIC;
|
||||
}
|
||||
|
||||
$fileName = 'testimage.heic';
|
||||
$this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName);
|
||||
$this->width = 1680;
|
||||
$this->height = 1050;
|
||||
$this->provider = new \OC\Preview\HEIC;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue