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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
// Copyright (C) 2016 Andre Hartmann <aha_1980@gmx.de>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <utils/ansiescapecodehandler.h>
#include <QString>
#include <QTest>
using namespace Utils;
typedef QList<FormattedText> FormattedTextList;
Q_DECLARE_METATYPE(QTextCharFormat);
Q_DECLARE_METATYPE(FormattedText);
Q_DECLARE_METATYPE(FormattedTextList);
static QString ansiEscape(const QByteArray &sequence)
{
return QString::fromLatin1("\x1b[" + sequence);
}
class tst_AnsiEscapeCodeHandler : public QObject
{
Q_OBJECT
public:
tst_AnsiEscapeCodeHandler();
private Q_SLOTS:
void testSimpleFormat();
void testSimpleFormat_data();
void testLineOverlappingFormat();
void testSplitControlSequence();
void oneLineBenchmark();
void multiLineBenchmark();
private:
const QString red;
const QString redBackground;
const QString red256;
const QString redBackground256;
const QString mustard256;
const QString mustardBackground256;
const QString gray256;
const QString grayBackground256;
const QString mustardRgb;
const QString mustardBackgroundRgb;
const QString bold;
const QString normal;
const QString normal1;
const QString eraseToEol;
};
tst_AnsiEscapeCodeHandler::tst_AnsiEscapeCodeHandler() :
red(ansiEscape("31m")),
redBackground(ansiEscape("41m")),
red256(ansiEscape("38;5;1m")),
redBackground256(ansiEscape("48;5;1m")),
mustard256(ansiEscape("38;5;220m")),
mustardBackground256(ansiEscape("48;5;220m")),
gray256(ansiEscape("38;5;250m")),
grayBackground256(ansiEscape("48;5;250m")),
mustardRgb(ansiEscape("38;2;255;204;0m")),
mustardBackgroundRgb(ansiEscape("48;2;255;204;0m")),
bold(ansiEscape("1m")),
normal(ansiEscape("0m")),
normal1(ansiEscape("m")),
eraseToEol(ansiEscape("K"))
{
}
void tst_AnsiEscapeCodeHandler::testSimpleFormat()
{
QFETCH(QString, text);
QFETCH(QTextCharFormat, format);
QFETCH(FormattedTextList, expected);
AnsiEscapeCodeHandler handler;
FormattedTextList result = handler.parseText(FormattedText(text, format));
handler.endFormatScope();
QCOMPARE(result.size(), expected.size());
for (int i = 0; i < result.size(); ++i) {
QCOMPARE(result[i].text, expected[i].text);
QCOMPARE(result[i].format, expected[i].format);
}
}
void tst_AnsiEscapeCodeHandler::testSimpleFormat_data()
{
QTest::addColumn<QString>("text");
QTest::addColumn<QTextCharFormat>("format");
QTest::addColumn<FormattedTextList>("expected");
// Test pass-through
QTextCharFormat defaultFormat;
QTest::newRow("Pass-through") << "Hello World" << defaultFormat
<< (FormattedTextList() << FormattedText("Hello World", defaultFormat));
QTextCharFormat redFormat;
redFormat.setForeground(QColor(170, 0, 0));
QTest::newRow("Text-color change (8 color)")
<< QString("This is " + red + "red" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("red", redFormat)
<< FormattedText(" text", defaultFormat));
QTextCharFormat redBackgroundFormat;
redBackgroundFormat.setBackground(QColor(170, 0, 0));
QTest::newRow("Background-color change (8 color)")
<< QString("This is " + redBackground + "red" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("red", redBackgroundFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Text-color change (256 color mode / 8 foreground colors)")
<< QString("This is " + red256 + "red" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("red", redFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Background-color change (256 color mode / 8 background colors)")
<< QString("This is " + redBackground256 + "red" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("red", redBackgroundFormat)
<< FormattedText(" text", defaultFormat));
QTextCharFormat mustardFormat;
mustardFormat.setForeground(QColor(255, 204, 0));
QTest::newRow("Text-color change (256 color mode / 216 colors)")
<< QString("This is " + mustard256 + "mustard" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("mustard", mustardFormat)
<< FormattedText(" text", defaultFormat));
QTextCharFormat mustardBackgroundFormat;
mustardBackgroundFormat.setBackground(QColor(255, 204, 0));
QTest::newRow("Background-color change (256 color mode / 216 colors)")
<< QString("This is " + mustardBackground256 + "mustard" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("mustard", mustardBackgroundFormat)
<< FormattedText(" text", defaultFormat));
uint gray = (250 - 232) * 11;
QTextCharFormat grayFormat;
grayFormat.setForeground(QColor(gray, gray, gray));
QTest::newRow("Text-color change (256 color mode / 24 grayscale)")
<< QString("This is " + gray256 + "gray" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("gray", grayFormat)
<< FormattedText(" text", defaultFormat));
QTextCharFormat grayBackgroundFormat;
grayBackgroundFormat.setBackground(QColor(gray, gray, gray));
QTest::newRow("Background-color change (256 color mode / 24 grayscale)")
<< QString("This is " + grayBackground256 + "gray" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("gray", grayBackgroundFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Text-color change (RGB color mode)")
<< QString("This is " + mustardRgb + "mustard" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("mustard", mustardFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Background-color change (RGB color mode)")
<< QString("This is " + mustardBackgroundRgb + "mustard" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("This is ", defaultFormat)
<< FormattedText("mustard", mustardBackgroundFormat)
<< FormattedText(" text", defaultFormat));
QTextCharFormat boldFormat;
boldFormat.setFontWeight(QFont::Bold);
QTest::newRow("Text-format change")
<< QString("A line of " + bold + "bold" + normal + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A line of ", defaultFormat)
<< FormattedText("bold", boldFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Alternative reset pattern (QTCREATORBUG-10132)")
<< QString("A line of " + bold + "bold" + normal1 + " text") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A line of ", defaultFormat)
<< FormattedText("bold", boldFormat)
<< FormattedText(" text", defaultFormat));
QTest::newRow("Erase to EOL is unsupported and stripped")
<< QString("All text after this is " + eraseToEol + "not deleted") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("All text after this is ", defaultFormat)
<< FormattedText("not deleted", defaultFormat));
QTest::newRow("Unfinished control sequence \\x1b")
<< QString("A text before \x1b") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A text before ", defaultFormat));
QTest::newRow("Unfinished control sequence \\x1b[")
<< QString("A text before \x1b[") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A text before ", defaultFormat));
QTest::newRow("Unfinished control sequence \\x1b[3")
<< QString("A text before \x1b[3") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A text before ", defaultFormat));
QTest::newRow("Unfinished control sequence \\x1b[31")
<< QString("A text before \x1b[31") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A text before ", defaultFormat));
QTest::newRow("Unfinished control sequence \\x1b[31,")
<< QString("A text before \x1b[31,") << QTextCharFormat()
<< (FormattedTextList()
<< FormattedText("A text before ", defaultFormat));
}
void tst_AnsiEscapeCodeHandler::testLineOverlappingFormat()
{
// Test line-overlapping formats
const QString line1 = "A line of " + bold + "bold text";
const QString line2 = "A line of " + normal + "normal text";
QTextCharFormat defaultFormat;
AnsiEscapeCodeHandler handler;
FormattedTextList result;
result.append(handler.parseText(FormattedText(line1, defaultFormat)));
result.append(handler.parseText(FormattedText(line2, defaultFormat)));
QTextCharFormat boldFormat;
boldFormat.setFontWeight(QFont::Bold);
QCOMPARE(result.size(), 4);
QCOMPARE(result[0].text, QLatin1String("A line of "));
QCOMPARE(result[0].format, defaultFormat);
QCOMPARE(result[1].text, QLatin1String("bold text"));
QCOMPARE(result[1].format, boldFormat);
QCOMPARE(result[2].text, QLatin1String("A line of "));
QCOMPARE(result[2].format, boldFormat);
QCOMPARE(result[3].text, QLatin1String("normal text"));
QCOMPARE(result[3].format, defaultFormat);
}
void tst_AnsiEscapeCodeHandler::testSplitControlSequence()
{
// Test line-overlapping formats
const QString line1 = "Normal line \x1b";
const QString line2 = "[1m bold line";
QTextCharFormat defaultFormat;
AnsiEscapeCodeHandler handler;
FormattedTextList result;
result.append(handler.parseText(FormattedText(line1, defaultFormat)));
result.append(handler.parseText(FormattedText(line2, defaultFormat)));
QTextCharFormat boldFormat;
boldFormat.setFontWeight(QFont::Bold);
QCOMPARE(result.size(), 2);
QCOMPARE(result[0].text, QLatin1String("Normal line "));
QCOMPARE(result[0].format, defaultFormat);
QCOMPARE(result[1].text, QLatin1String(" bold line"));
QCOMPARE(result[1].format, boldFormat);
}
void tst_AnsiEscapeCodeHandler::oneLineBenchmark()
{
const QString line = QLatin1String("Normal text")
+ mustard256 + QLatin1String(" mustard text ")
+ bold + QLatin1String(" bold text ")
+ grayBackground256 + QLatin1String(" gray background text");
AnsiEscapeCodeHandler handler;
QTextCharFormat defaultFormat;
QBENCHMARK {
handler.parseText(FormattedText(line, defaultFormat));
}
}
void tst_AnsiEscapeCodeHandler::multiLineBenchmark()
{
const QString line1 = QLatin1String("Normal text")
+ mustard256 + QLatin1String(" mustard text ")
+ bold;
const QString line2 = QLatin1String(" bold text ")
+ grayBackground256 + QLatin1String(" gray background text");
AnsiEscapeCodeHandler handler;
QTextCharFormat defaultFormat;
QBENCHMARK {
handler.parseText(FormattedText(line1, defaultFormat));
handler.parseText(FormattedText(line2, defaultFormat));
}
}
QTEST_APPLESS_MAIN(tst_AnsiEscapeCodeHandler)
#include "tst_ansiescapecodehandler.moc"
|