From c9c419c4317ddd12b49082368e245f881a001610 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 23 Nov 2013 01:19:43 +0100 Subject: [ticket/11912] Expect logic exceptions in test if no guesser available PHPBB3-11912 --- tests/mimetype/guesser_test.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/mimetype') diff --git a/tests/mimetype/guesser_test.php b/tests/mimetype/guesser_test.php index 2c1a35544f..9f0371262b 100644 --- a/tests/mimetype/guesser_test.php +++ b/tests/mimetype/guesser_test.php @@ -127,7 +127,20 @@ class guesser_test extends \phpbb_test_case */ public function test_content_guesser($expected, $guessers, $overload = false) { + $supported = false; self::$function_exists = !$overload; + + // Cover possible LogicExceptions + foreach ($guessers as $cur_guesser) + { + $supported += $cur_guesser->is_supported(); + } + + if (!$supported) + { + $this->setExpectedException('\LogicException'); + } + $guesser = new \phpbb\mimetype\guesser($guessers); $this->assertEquals($expected[0], $guesser->guess($this->jpg_file)); $this->assertEquals($expected[1], $guesser->guess($this->jpg_file, $this->jpg_file . '.jpg')); -- cgit v1.2.1