File: ANSITest.php

package info (click to toggle)
php-phpseclib 2.0.42-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,416 kB
  • sloc: php: 11,867; sh: 66; xml: 49; makefile: 25
file content (49 lines) | stat: -rw-r--r-- 1,431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
 * @author    Jim Wigginton <terrafrost@php.net>
 * @copyright 2014 Jim Wigginton
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
 */

use phpseclib\File\ANSI;

class Unit_File_ANSITest extends PhpseclibTestCase
{
    public function testCase1()
    {
        $str = "\x1B[07m"; // turn reverse video on
        $str.= "aaaaaaaaaaaaaaaaaa";
        $str.= "\x1B[10D"; // move cursor left 10 lines
        $str.= "\x1B[m"; // reset everything
        $str.= "bbb";

        $ansi = new ANSI();
        $ansi->appendString($str);

        $expected = '<pre width="80" style="color: white; background: black">';
        $expected.= '<span style="color: black"><span style="background: white">aaaaaaaa</span></span>';
        $expected.= 'bbb';
        $expected.= '<span style="color: black"><span style="background: white">aaaaaaa</span></span>';
        $expected.= '</pre>';

        $this->assertSame($ansi->getScreen(), $expected);
    }

    public function testLineOverflow()
    {
        $str = '';
        foreach (range('a', 'y') as $char) {
            $str.= "$char\r\n";
        }
        $str.= str_repeat('z', 100);

        $ansi = new ANSI();
        $ansi->appendString($str);

        $screen = $ansi->getScreen();

        $lines = explode("\r\n", $screen);
        $this->assertSame(24, count($lines));
        $this->assertSame(str_repeat('z', 80), $lines[22]);
    }
}