22
22
import static org .hamcrest .CoreMatchers .not ;
23
23
import static org .hamcrest .CoreMatchers .sameInstance ;
24
24
import static org .hamcrest .MatcherAssert .assertThat ;
25
+ import static org .junit .Assert .assertEquals ;
25
26
27
+ import java .io .ByteArrayOutputStream ;
26
28
import java .io .PrintStream ;
29
+ import java .nio .charset .StandardCharsets ;
27
30
31
+ import org .fusesource .jansi .AnsiColors ;
32
+ import org .fusesource .jansi .AnsiConsole ;
33
+ import org .fusesource .jansi .AnsiMode ;
34
+ import org .fusesource .jansi .AnsiPrintStream ;
35
+ import org .fusesource .jansi .AnsiType ;
36
+ import org .fusesource .jansi .io .AnsiOutputStream ;
28
37
import org .junit .Test ;
29
38
30
39
public class MessageUtilsTest
@@ -45,4 +54,24 @@ public void testSystem()
45
54
System .setOut ( currentOut );
46
55
}
47
56
}
57
+
58
+ @ Test
59
+ public void testTerminalWidth ()
60
+ {
61
+ AnsiOutputStream .WidthSupplier width = new AnsiOutputStream .WidthSupplier ()
62
+ {
63
+ @ Override
64
+ public int getTerminalWidth ()
65
+ {
66
+ return 33 ;
67
+ }
68
+ };
69
+ AnsiOutputStream aos = new AnsiOutputStream ( new ByteArrayOutputStream (), width , AnsiMode .Default ,
70
+ null , AnsiType .Emulation , AnsiColors .Colors256 , StandardCharsets .UTF_8 ,
71
+ null , null , false );
72
+ AnsiConsole .systemInstall ();
73
+ AnsiConsole .out = new AnsiPrintStream ( aos , true );
74
+ assertEquals ( 33 , MessageUtils .getTerminalWidth () );
75
+ AnsiConsole .systemUninstall ();
76
+ }
48
77
}
0 commit comments