1
0

SVGTest.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * @author Olivier Paroz <owncloud@interfasys.ch>
  4. *
  5. * @copyright Copyright (c) 2015, ownCloud, Inc.
  6. * @license AGPL-3.0
  7. *
  8. * This code is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License, version 3,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License, version 3,
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>
  19. *
  20. */
  21. namespace Test\Preview;
  22. /**
  23. * Class SVGTest
  24. *
  25. * @group DB
  26. *
  27. * @package Test\Preview
  28. */
  29. class SVGTest extends Provider {
  30. protected function setUp(): void {
  31. $checkImagick = new \Imagick();
  32. if (count($checkImagick->queryFormats('SVG')) === 1) {
  33. parent::setUp();
  34. $fileName = 'testimagelarge.svg';
  35. $this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName);
  36. $this->width = 3000;
  37. $this->height = 2000;
  38. $this->provider = new \OC\Preview\SVG;
  39. } else {
  40. $this->markTestSkipped('No SVG provider present');
  41. }
  42. }
  43. public function dataGetThumbnailSVGHref(): array {
  44. return [
  45. ['href'],
  46. [' href'],
  47. ["\nhref"],
  48. ['xlink:href'],
  49. [' xlink:href'],
  50. ["\nxlink:href"],
  51. ];
  52. }
  53. /**
  54. * @dataProvider dataGetThumbnailSVGHref
  55. * @requires extension imagick
  56. */
  57. public function testGetThumbnailSVGHref(string $content): void {
  58. $handle = fopen('php://temp', 'w+');
  59. fwrite($handle, '<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  60. <image x="0" y="0"' . $content . '="fxlogo.png" height="100" width="100" />
  61. </svg>');
  62. rewind($handle);
  63. $file = $this->createMock(\OCP\Files\File::class);
  64. $file->method('fopen')
  65. ->willReturn($handle);
  66. self::assertNull($this->provider->getThumbnail($file, 512, 512));
  67. }
  68. }