summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Functions/FunctionsMedia.php79
-rw-r--r--tests/app/Functions/FunctionsMediaTest.php42
2 files changed, 0 insertions, 121 deletions
diff --git a/app/Functions/FunctionsMedia.php b/app/Functions/FunctionsMedia.php
deleted file mode 100644
index 7a544241eb..0000000000
--- a/app/Functions/FunctionsMedia.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/**
- * webtrees: online genealogy
- * Copyright (C) 2018 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-namespace Fisharebest\Webtrees\Functions;
-
-/**
- * Class FunctionsMedia - common functions
- */
-class FunctionsMedia
-{
- /**
- * Convert raw values from php.ini file into bytes
- *
- * @param string $val
- *
- * @return int
- */
- public static function sizeToBytes($val)
- {
- if (!$val) {
- // no value was passed in, assume no limit and return -1
- $val = -1;
- }
- switch (substr($val, -1)) {
- case 'g':
- case 'G':
- return (int)$val * 1024 * 1024 * 1024;
- case 'm':
- case 'M':
- return (int)$val * 1024 * 1024;
- case 'k':
- case 'K':
- return (int)$val * 1024;
- default:
- return (int)$val;
- }
- }
-
- /**
- * Send a dummy image, where one could not be found or created.
- *
- * @param int $status HTTP status code, such as 404 for "Not found"
- * @param string $message
- */
- public static function outputHttpStatusAsImage($status, $message)
- {
- $width = 100;
- $height = 100;
- $image = imagecreatetruecolor($width, $height);
- $foreground = imagecolorallocate($image, 255, 0, 0);
- $background = imagecolorallocate($image, 224, 224, 224);
-
- // Draw a border
- imagefilledrectangle($image, 0, 0, $width, $height, $foreground);
- imagefilledrectangle($image, 1, 1, $width - 2, $height - 2, $background);
-
- // Draw text
- imagestring($image, 5, 5, 30, (string)$status, $foreground);
- imagestring($image, 5, 5, 50, $message, $foreground);
-
-
- http_response_code(404);
- header('Content-Type: image/png');
- imagepng($image);
- imagedestroy($image);
- }
-}
diff --git a/tests/app/Functions/FunctionsMediaTest.php b/tests/app/Functions/FunctionsMediaTest.php
deleted file mode 100644
index edf56d9ef5..0000000000
--- a/tests/app/Functions/FunctionsMediaTest.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2018 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-use Fisharebest\Webtrees\Functions\FunctionsMedia;
-
-/**
- * Unit tests for the global functions in the file includes/functions/functions_mediadb.php
- */
-class FunctionsMediaTest extends \PHPUnit\Framework\TestCase
-{
- /**
- * Test the function return_bytes().
- */
- public function testFunctionReturnBytes()
- {
- $this->assertSame(-1, FunctionsMedia::sizeToBytes(''));
- $this->assertSame(-1, FunctionsMedia::sizeToBytes('-1'));
- $this->assertSame(42, FunctionsMedia::sizeToBytes('42'));
- $this->assertSame(42, FunctionsMedia::sizeToBytes('42b'));
- $this->assertSame(42, FunctionsMedia::sizeToBytes('42B'));
- $this->assertSame(43008, FunctionsMedia::sizeToBytes('42k'));
- $this->assertSame(43008, FunctionsMedia::sizeToBytes('42K'));
- $this->assertSame(44040192, FunctionsMedia::sizeToBytes('42m'));
- $this->assertSame(44040192, FunctionsMedia::sizeToBytes('42M'));
- $this->assertSame(45097156608, FunctionsMedia::sizeToBytes('42g'));
- $this->assertSame(45097156608, FunctionsMedia::sizeToBytes('42G'));
- }
-}