assertEquals(str_repeat('a', 25), $output); } /* public function testScreenSize() { for ($i = 1; $i < 20; $i++) { echo implode(', ', Console::getScreenSize(true)) . "\n"; ob_flush(); sleep(1); } }*/ public function ansiFormats() { return [ ['test', 'test'], [Console::ansiFormat('test', [Console::FG_RED]), 'test'], ['abc' . Console::ansiFormat('def', [Console::FG_RED]) . 'ghj', 'abcdefghj'], ['abc' . Console::ansiFormat('def', [Console::FG_RED, Console::BG_GREEN]) . 'ghj', 'abcdefghj'], ['abc' . Console::ansiFormat('def', [Console::FG_GREEN, Console::FG_RED, Console::BG_GREEN]) . 'ghj', 'abcdefghj'], ['abc' . Console::ansiFormat('def', [Console::BOLD, Console::BG_GREEN]) . 'ghj', 'abcdefghj'], [ Console::ansiFormat('test', [Console::UNDERLINE, Console::OVERLINED, Console::CROSSED_OUT, Console::FG_GREEN]), 'test' ], [Console::ansiFormatCode([Console::RESET]) . Console::ansiFormatCode([Console::RESET]), ''], [Console::ansiFormatCode([Console::RESET]) . Console::ansiFormatCode([Console::RESET]) . 'test', 'test'], [Console::ansiFormatCode([Console::RESET]) . 'test' . Console::ansiFormatCode([Console::RESET]), 'test'], [ Console::ansiFormatCode([Console::BOLD]) . 'abc' . Console::ansiFormatCode([Console::RESET, Console::FG_GREEN]) . 'ghj' . Console::ansiFormatCode([Console::RESET]), 'abcghj' ], [ Console::ansiFormatCode([Console::FG_GREEN]) . ' a ' . Console::ansiFormatCode([Console::BOLD]) . 'abc' . Console::ansiFormatCode([Console::RESET]) . 'ghj', ' a abcghj' ], [ Console::ansiFormat('test', [Console::FG_GREEN, Console::BG_BLUE, Console::NEGATIVE]), 'test' ], [ Console::ansiFormat('test', [Console::NEGATIVE]), 'test' ], [ Console::ansiFormat('test', [Console::CONCEALED]), 'test' ], ]; } /** * @dataProvider ansiFormats */ public function testAnsi2Html($ansi, $html) { $this->assertEquals($html, Console::ansiToHtml($ansi)); } }