allowedFailures = array( 'http', // [1. routeros (15%); 2. groovy (15%)] 'java', // [1. angelscript (22%); 2. scala (22%)] 'shell', // [1. vhdl (9%); 2. elixir (9%)] 'plaintext', // [1. asciidoc (10%); 2. properties (4%)] 'coffeescript', // [1. livescript (26%); 2. coffeescript (26%)] 'handlebars', // [1. htmlbars (12%); 2. handlebars (12%)] 'n1ql', // [1. sql (26%); 2. n1ql (26%)] 'sml', // [1. sml (18%); 2. coq (18%)] 'purebasic', // [1. reasonml (29%); 2. purebasic (29%)] 'fortran', // [1. irpf90 (40%); 2. fortran (40%)] ); } public static function detectableLanguagesProvider() { $testData = array(); $languages = new Finder(); $languages ->in(__DIR__ . '/detect/') ->sortByName() ->files() ; foreach ($languages as $language) { $testData[] = array($language->getRelativePath(), $language->getContents()); } return $testData; } /** * @dataProvider detectableLanguagesProvider */ public function testAutomaticDetection($language, $raw) { $hl = new Highlighter(); $hl->setAutodetectLanguages($hl->listLanguages()); $actual = $hl->highlightAuto($raw); $errMessage = sprintf( "Expected language: %s; [1. %s (%d%%); 2. %s (%d%%)]", $language, $actual->language, $actual->relevance, $actual->secondBest->language, $actual->secondBest->relevance ); if (in_array($language, $this->allowedFailures)) { $this->markTestSkipped("The '$language' auto-detection test is known to fail: $errMessage"); } $this->assertEquals($language, $actual->language, $errMessage); } }