|
|
@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Copyright 2012-2019 the original author or authors.
|
|
|
|
* Copyright 2012-2023 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
@ -51,6 +51,20 @@ class ColorConverterTests {
|
|
|
|
AnsiOutput.setEnabled(AnsiOutput.Enabled.DETECT);
|
|
|
|
AnsiOutput.setEnabled(AnsiOutput.Enabled.DETECT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void black() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("black"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[30min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void white() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("white"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[37min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
void faint() {
|
|
|
|
void faint() {
|
|
|
|
this.converter.setOptionList(Collections.singletonList("faint"));
|
|
|
|
this.converter.setOptionList(Collections.singletonList("faint"));
|
|
|
@ -100,6 +114,62 @@ class ColorConverterTests {
|
|
|
|
assertThat(out).isEqualTo("\033[36min\033[0;39m");
|
|
|
|
assertThat(out).isEqualTo("\033[36min\033[0;39m");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightBlack() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_black"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[90min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightWhite() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_white"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[97min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightRed() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_red"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[91min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightGreen() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_green"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[92min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightYellow() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_yellow"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[93min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightBlue() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_blue"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[94min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightMagenta() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_magenta"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[95min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void brightCyan() {
|
|
|
|
|
|
|
|
this.converter.setOptionList(Collections.singletonList("bright_cyan"));
|
|
|
|
|
|
|
|
String out = this.converter.transform(this.event, this.in);
|
|
|
|
|
|
|
|
assertThat(out).isEqualTo("\033[96min\033[0;39m");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
void highlightError() {
|
|
|
|
void highlightError() {
|
|
|
|
this.event.setLevel(Level.ERROR);
|
|
|
|
this.event.setLevel(Level.ERROR);
|
|
|
|