| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | /****************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2016-01-15 14:55:33 +01:00
										 |  |  | ** Copyright (C) 2016 Andre Hartmann <aha_1980@gmx.de> | 
					
						
							|  |  |  | ** Contact: https://www.qt.io/licensing/
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | ** | 
					
						
							|  |  |  | ** This file is part of Qt Creator. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Commercial License Usage | 
					
						
							|  |  |  | ** Licensees holding valid commercial Qt licenses may use this file in | 
					
						
							|  |  |  | ** accordance with the commercial license agreement provided with the | 
					
						
							|  |  |  | ** Software or, alternatively, in accordance with the terms contained in | 
					
						
							| 
									
										
										
										
											2016-01-15 14:55:33 +01:00
										 |  |  | ** a written agreement between you and The Qt Company. For licensing terms | 
					
						
							|  |  |  | ** and conditions see https://www.qt.io/terms-conditions. For further
 | 
					
						
							|  |  |  | ** information use the contact form at https://www.qt.io/contact-us.
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2016-01-15 14:55:33 +01:00
										 |  |  | ** GNU General Public License Usage | 
					
						
							|  |  |  | ** Alternatively, this file may be used under the terms of the GNU | 
					
						
							|  |  |  | ** General Public License version 3 as published by the Free Software | 
					
						
							|  |  |  | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT | 
					
						
							|  |  |  | ** included in the packaging of this file. Please review the following | 
					
						
							|  |  |  | ** information to ensure the GNU General Public License requirements will | 
					
						
							|  |  |  | ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | ** | 
					
						
							|  |  |  | ****************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <utils/ansiescapecodehandler.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | #include <QtTest>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace Utils; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  | typedef QList<FormattedText> FormattedTextList; | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | Q_DECLARE_METATYPE(QTextCharFormat); | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  | Q_DECLARE_METATYPE(FormattedText); | 
					
						
							|  |  |  | Q_DECLARE_METATYPE(FormattedTextList); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 10:16:03 +03:00
										 |  |  | static QString ansiEscape(const QByteArray &sequence) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return QString::fromLatin1("\x1b[" + sequence); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | class tst_AnsiEscapeCodeHandler : public QObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     tst_AnsiEscapeCodeHandler(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private Q_SLOTS: | 
					
						
							| 
									
										
										
										
											2013-09-24 21:21:10 +02:00
										 |  |  |     void testSimpleFormat(); | 
					
						
							|  |  |  |     void testSimpleFormat_data(); | 
					
						
							| 
									
										
										
										
											2013-09-24 20:51:22 +02:00
										 |  |  |     void testLineOverlappingFormat(); | 
					
						
							| 
									
										
										
										
											2015-07-11 23:35:49 -07:00
										 |  |  |     void testSplitControlSequence(); | 
					
						
							| 
									
										
										
										
											2015-07-14 20:54:26 +02:00
										 |  |  |     void oneLineBenchmark(); | 
					
						
							|  |  |  |     void multiLineBenchmark(); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2013-09-11 10:16:03 +03:00
										 |  |  |     const QString red; | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     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; | 
					
						
							| 
									
										
										
										
											2013-09-11 10:16:03 +03:00
										 |  |  |     const QString bold; | 
					
						
							|  |  |  |     const QString normal; | 
					
						
							|  |  |  |     const QString normal1; | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     const QString eraseToEol; | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 10:16:03 +03:00
										 |  |  | tst_AnsiEscapeCodeHandler::tst_AnsiEscapeCodeHandler() : | 
					
						
							|  |  |  |     red(ansiEscape("31m")), | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     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")), | 
					
						
							| 
									
										
										
										
											2013-09-11 10:16:03 +03:00
										 |  |  |     bold(ansiEscape("1m")), | 
					
						
							|  |  |  |     normal(ansiEscape("0m")), | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     normal1(ansiEscape("m")), | 
					
						
							|  |  |  |     eraseToEol(ansiEscape("K")) | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-24 21:21:10 +02:00
										 |  |  | void tst_AnsiEscapeCodeHandler::testSimpleFormat() | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QFETCH(QString, text); | 
					
						
							|  |  |  |     QFETCH(QTextCharFormat, format); | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |     QFETCH(FormattedTextList, expected); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     AnsiEscapeCodeHandler handler; | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |     FormattedTextList result = handler.parseText(FormattedText(text, format)); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  |     handler.endFormatScope(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-12 14:22:47 +03:00
										 |  |  |     QCOMPARE(result.size(), expected.size()); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  |     for (int i = 0; i < result.size(); ++i) { | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |         QCOMPARE(result[i].text, expected[i].text); | 
					
						
							|  |  |  |         QCOMPARE(result[i].format, expected[i].format); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-24 21:21:10 +02:00
										 |  |  | void tst_AnsiEscapeCodeHandler::testSimpleFormat_data() | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QTest::addColumn<QString>("text"); | 
					
						
							|  |  |  |     QTest::addColumn<QTextCharFormat>("format"); | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |     QTest::addColumn<FormattedTextList>("expected"); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Test pass-through
 | 
					
						
							|  |  |  |     QTextCharFormat defaultFormat; | 
					
						
							|  |  |  |     QTest::newRow("Pass-through") << "Hello World" << defaultFormat | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |                        << (FormattedTextList() << FormattedText("Hello World", defaultFormat)); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QTextCharFormat redFormat; | 
					
						
							|  |  |  |     redFormat.setForeground(QColor(170, 0, 0)); | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     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)); | 
					
						
							| 
									
										
										
										
											2014-07-04 15:40:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  |     QTextCharFormat boldFormat; | 
					
						
							|  |  |  |     boldFormat.setFontWeight(QFont::Bold); | 
					
						
							| 
									
										
										
										
											2014-07-07 20:38:44 +02:00
										 |  |  |     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)); | 
					
						
							| 
									
										
										
										
											2015-07-11 23:35:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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)); | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-24 20:51:22 +02:00
										 |  |  | 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; | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |     FormattedTextList result; | 
					
						
							|  |  |  |     result.append(handler.parseText(FormattedText(line1, defaultFormat))); | 
					
						
							|  |  |  |     result.append(handler.parseText(FormattedText(line2, defaultFormat))); | 
					
						
							| 
									
										
										
										
											2013-09-24 20:51:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QTextCharFormat boldFormat; | 
					
						
							|  |  |  |     boldFormat.setFontWeight(QFont::Bold); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QCOMPARE(result.size(), 4); | 
					
						
							| 
									
										
										
										
											2014-01-17 15:55:27 +01:00
										 |  |  |     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); | 
					
						
							| 
									
										
										
										
											2013-09-24 20:51:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-11 23:35:49 -07:00
										 |  |  | 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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 20:54:26 +02:00
										 |  |  | 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)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 21:11:58 +02:00
										 |  |  | QTEST_APPLESS_MAIN(tst_AnsiEscapeCodeHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "tst_ansiescapecodehandler.moc"
 |