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
|
/*
* Copyright (C) 2008-2020 The Communi Project
*
* This test is free, and not covered by the BSD license. There is no
* restriction applied to their modification, redistribution, using and so on.
* You can study them, modify them, use them in your own program - either
* completely or partially.
*/
#include "irc.h"
#include "irctextformat.h"
#include "ircpalette.h"
#include <QtTest/QtTest>
class tst_IrcTextFormat : public QObject
{
Q_OBJECT
private slots:
void testDefaults();
void testPlainText_data();
void testPlainText();
void testHtml_data();
void testHtml();
void testUrls_data();
void testUrls();
};
void tst_IrcTextFormat::testDefaults()
{
IrcTextFormat format;
QVERIFY(format.palette());
QVERIFY(!format.urlPattern().isEmpty());
QCOMPARE(format.spanFormat(), IrcTextFormat::SpanStyle);
}
void tst_IrcTextFormat::testPlainText_data()
{
QTest::addColumn<QString>("input");
QTest::addColumn<QString>("output");
QTest::newRow("bold") << "\02bold\x0f" << "bold";
QTest::newRow("line-through") << "\x13line-through\x0f" << "line-through";
QTest::newRow("underline") << "\x15underline\x0f" << "underline";
QTest::newRow("inverse") << "\x16inverse\x0f" << "inverse";
QTest::newRow("italic") << "\x1ditalic\x0f" << "italic";
QTest::newRow("underline") << "\x1funderline\x0f" << "underline";
IrcTextFormat format;
QVERIFY(format.palette());
IrcPalette* palette = format.palette();
for (int i = Irc::White; i <= Irc::LightGray; ++i) {
QString color = palette->colorName(i);
QTest::newRow(color.toUtf8()) << QString("\x03%1%2\x0f").arg(i).arg(color) << color;
}
QTest::newRow("dummy \\x03") << "foo\x03 \02bold\x0f bar\x03" << "foo bold bar";
QTest::newRow("extra \\x0f") << "foo\x0f \02bold\x0f bar\x0f" << "foo bold bar";
QTest::newRow("background") << QString("foo \x03%1,%1red\x0f on \x03%1,%1red\x03 bar").arg(Irc::Red) << "foo red on red bar";
}
void tst_IrcTextFormat::testPlainText()
{
QFETCH(QString, input);
QFETCH(QString, output);
IrcTextFormat format;
QCOMPARE(format.toPlainText(input), output);
format.parse(input);
QCOMPARE(format.plainText(), output);
}
void tst_IrcTextFormat::testHtml_data()
{
qRegisterMetaType<IrcTextFormat::SpanFormat>();
QTest::addColumn<IrcTextFormat::SpanFormat>("span");
QTest::addColumn<QString>("input");
QTest::addColumn<QString>("output");
QTest::newRow("style=bold") << IrcTextFormat::SpanStyle << "foo \02bold\x0f and \02bold\02 bar" << "foo <span style='font-weight: bold'>bold</span> and <span style='font-weight: bold'>bold</span> bar";
QTest::newRow("class=bold") << IrcTextFormat::SpanClass << "foo \02bold\x0f and \02bold\02 bar" << "foo <span class='bold'>bold</span> and <span class='bold'>bold</span> bar";
QTest::newRow("style=line-through") << IrcTextFormat::SpanStyle << "foo \x13line\x0f and \x13through\x13 bar" << "foo <span style='text-decoration: line-through'>line</span> and <span style='text-decoration: line-through'>through</span> bar";
QTest::newRow("class=line-through") << IrcTextFormat::SpanClass << "foo \x13line\x0f and \x13through\x13 bar" << "foo <span class='line-through'>line</span> and <span class='line-through'>through</span> bar";
QTest::newRow("style=underline1") << IrcTextFormat::SpanStyle << "foo \x15under\x0f and \x15line\x15 bar" << "foo <span style='text-decoration: underline'>under</span> and <span style='text-decoration: underline'>line</span> bar";
QTest::newRow("style=inverse") << IrcTextFormat::SpanStyle << "foo \x16inverse\x0f and \x16inverse\x16 bar" << "foo <span style='text-decoration: inverse'>inverse</span> and <span style='text-decoration: inverse'>inverse</span> bar";
QTest::newRow("class=inverse") << IrcTextFormat::SpanClass << "foo \x16inverse\x0f and \x16inverse\x16 bar" << "foo <span class='inverse'>inverse</span> and <span class='inverse'>inverse</span> bar";
QTest::newRow("style=italic") << IrcTextFormat::SpanStyle << "foo \x1ditalic\x0f and \x1ditalic\x1d bar" << "foo <span style='font-style: italic'>italic</span> and <span style='font-style: italic'>italic</span> bar";
QTest::newRow("class=italic") << IrcTextFormat::SpanClass << "foo \x1ditalic\x0f and \x1ditalic\x1d bar" << "foo <span class='italic'>italic</span> and <span class='italic'>italic</span> bar";
QTest::newRow("style=underline2") << IrcTextFormat::SpanStyle << "foo \x1funder\x0f and \x1fline\x1f bar" << "foo <span style='text-decoration: underline'>under</span> and <span style='text-decoration: underline'>line</span> bar";
IrcTextFormat format;
QVERIFY(format.palette());
IrcPalette* palette = format.palette();
for (int i = Irc::White; i <= Irc::LightGray; ++i) {
QString color = palette->colorName(i);
QTest::newRow(QStringLiteral("style=%1").arg(color).toUtf8()) << IrcTextFormat::SpanStyle << QString("foo \x03%1%2\x0f and \x03%1%2\x03 bar").arg(i).arg(color) << QStringLiteral("foo <span style='color: %1'>%1</span> and <span style='color: %1'>%1</span> bar").arg(color);
QTest::newRow(QStringLiteral("class=%1").arg(color).toUtf8()) << IrcTextFormat::SpanClass << QString("foo \x03%1%2\x0f and \x03%1%2\x03 bar").arg(i).arg(color) << QStringLiteral("foo <span class='%1'>%1</span> and <span class='%1'>%1</span> bar").arg(color);
}
QTest::newRow("extra \\x0f") << IrcTextFormat::SpanStyle << "foo\x0f \02bold\x0f bar\x0f" << "foo <span style='font-weight: bold'>bold</span> bar";
QTest::newRow("style=background") << IrcTextFormat::SpanStyle << QString("foo \x03%1,%1red\x0f on \x03%1,%1red\x03 bar").arg(Irc::Red) << "foo <span style='color: red; background-color: red'>red</span> on <span style='color: red; background-color: red'>red</span> bar";
QTest::newRow("class=background") << IrcTextFormat::SpanClass << QString("foo \x03%1,%1red\x0f on \x03%1,%1red\x03 bar").arg(Irc::Red) << "foo <span class='red red-background'>red</span> on <span class='red red-background'>red</span> bar";
}
void tst_IrcTextFormat::testHtml()
{
QFETCH(IrcTextFormat::SpanFormat, span);
QFETCH(QString, input);
QFETCH(QString, output);
IrcTextFormat format;
format.setSpanFormat(span);
QCOMPARE(format.toHtml(input), output);
format.parse(input);
QCOMPARE(format.html(), output);
}
Q_DECLARE_METATYPE(QList<QUrl>)
void tst_IrcTextFormat::testUrls_data()
{
qRegisterMetaType<QList<QUrl> >();
QTest::addColumn<QString>("pattern");
QTest::addColumn<QString>("input");
QTest::addColumn<QString>("output");
QTest::addColumn<QList<QUrl> >("urls");
QString defaultPattern = IrcTextFormat().urlPattern();
QTest::newRow("www.fi") << defaultPattern << "www.fi" << "<a href='http://www.fi'>www.fi</a>" << (QList<QUrl>() << QUrl(QStringLiteral("http://www.fi")));
QTest::newRow("ftp.funet.fi") << defaultPattern << "ftp.funet.fi" << "<a href='ftp://ftp.funet.fi'>ftp.funet.fi</a>" << (QList<QUrl>() << QUrl(QStringLiteral("ftp://ftp.funet.fi")));
QTest::newRow("jpnurmi@gmail.com") << defaultPattern << "jpnurmi@gmail.com" << "<a href='mailto:jpnurmi@gmail.com'>jpnurmi@gmail.com</a>" << (QList<QUrl>() << QUrl(QStringLiteral("mailto:jpnurmi@gmail.com")));
QTest::newRow("quote") << defaultPattern << "http://en.wikipedia.org/wiki/Shamir's_Secret_Sharing" << "<a href='http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing'>http://en.wikipedia.org/wiki/Shamir's_Secret_Sharing</a>" << (QList<QUrl>() << QUrl(QStringLiteral("http://en.wikipedia.org/wiki/Shamir's_Secret_Sharing")));
QTest::newRow("percent") << defaultPattern << "http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing" << "<a href='http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing'>http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing</a>" << (QList<QUrl>() << QUrl(QStringLiteral("http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing")));
QTest::newRow("parentheses") << defaultPattern << "http://en.wikipedia.org/wiki/Qt_(software)" << "<a href='http://en.wikipedia.org/wiki/Qt_%28software%29'>http://en.wikipedia.org/wiki/Qt_(software)</a>" << (QList<QUrl>() << QUrl(QStringLiteral("http://en.wikipedia.org/wiki/Qt_(software)")));
QTest::newRow("hash & comma") << defaultPattern << "https://codereview.qt-project.org/#change,1" << "<a href='https://codereview.qt-project.org/#change,1'>https://codereview.qt-project.org/#change,1</a>" << (QList<QUrl>() << QUrl(QStringLiteral("https://codereview.qt-project.org/#change,1")));
QTest::newRow("equal & question & ampersand") << defaultPattern << "https://www.google.no/imghp?hl=en&tab=wi" << "<a href='https://www.google.no/imghp?hl=en&tab=wi'>https://www.google.no/imghp?hl=en&tab=wi</a>" << (QList<QUrl>() << QUrl(QStringLiteral("https://www.google.no/imghp?hl=en&tab=wi")));
QTest::newRow("github commits") << defaultPattern << "https://github.com/communi/libcommuni/compare/ebf3c8ea47dc...19d66ddcb122" << "<a href='https://github.com/communi/libcommuni/compare/ebf3c8ea47dc...19d66ddcb122'>https://github.com/communi/libcommuni/compare/ebf3c8ea47dc...19d66ddcb122</a>" << (QList<QUrl>() << QUrl(QStringLiteral("https://github.com/communi/libcommuni/compare/ebf3c8ea47dc...19d66ddcb122")));
QTest::newRow("gerrit gitweb") << defaultPattern << "https://codereview.qt-project.org/gitweb?p=qt%2Fqtquickcontrols2.git;a=commit;h=f57f2d9e45b177232b76bde07ff96ef3e43fe5b1" << "<a href='https://codereview.qt-project.org/gitweb?p=qt%2Fqtquickcontrols2.git;a=commit;h=f57f2d9e45b177232b76bde07ff96ef3e43fe5b1'>https://codereview.qt-project.org/gitweb?p=qt%2Fqtquickcontrols2.git;a=commit;h=f57f2d9e45b177232b76bde07ff96ef3e43fe5b1</a>" << (QList<QUrl>() << QUrl(QStringLiteral("https://codereview.qt-project.org/gitweb?p=qt%2Fqtquickcontrols2.git;a=commit;h=f57f2d9e45b177232b76bde07ff96ef3e43fe5b1")));
QTest::newRow("multiple") << defaultPattern << "www.fi ftp.funet.fi jpnurmi@gmail.com" << "<a href='http://www.fi'>www.fi</a> <a href='ftp://ftp.funet.fi'>ftp.funet.fi</a> <a href='mailto:jpnurmi@gmail.com'>jpnurmi@gmail.com</a>" << (QList<QUrl>() << QUrl(QStringLiteral("http://www.fi")) << QUrl(QStringLiteral("ftp://ftp.funet.fi")) << QUrl(QStringLiteral("mailto:jpnurmi@gmail.com")));
QTest::newRow("empty pattern") << QString() << "www.fi ftp.funet.fi jpnurmi@gmail.com" << "www.fi ftp.funet.fi jpnurmi@gmail.com" << QList<QUrl>();
QTest::newRow("info") << defaultPattern
<< QStringLiteral("[libera-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://libera.chat/faq.shtml#gettinghelp")
<< QStringLiteral("[libera-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: <a href='http://libera.chat/faq.shtml#gettinghelp'>http://libera.chat/faq.shtml#gettinghelp</a>")
<< (QList<QUrl>() << QUrl(QStringLiteral("http://libera.chat/faq.shtml#gettinghelp")));
QTest::newRow("topic") << defaultPattern
<< QStringLiteral("Communi 1.2.2 - IRC framework || Home: https://communi.github.io || Docs: https://communi.github.io/doc || MeeGo: http://store.ovi.com/content/219150")
<< QStringLiteral("Communi 1.2.2 - IRC framework || Home: <a href='https://communi.github.io'>https://communi.github.io</a> || Docs: <a href='https://communi.github.io/doc'>https://communi.github.io/doc</a> || MeeGo: <a href='http://store.ovi.com/content/219150'>http://store.ovi.com/content/219150</a>")
<< (QList<QUrl>() << QUrl(QStringLiteral("https://communi.github.io")) << QUrl(QStringLiteral("https://communi.github.io/doc")) << QUrl(QStringLiteral("http://store.ovi.com/content/219150")));
QTest::newRow("commit") << defaultPattern
<< QStringLiteral("[communi-desktop] jpnurmi pushed 2 new commits to master: https://github.com/communi/communi-desktop/compare/257ca915a490...8832bfe8d0b8")
<< QStringLiteral("[communi-desktop] jpnurmi pushed 2 new commits to master: <a href='https://github.com/communi/communi-desktop/compare/257ca915a490...8832bfe8d0b8'>https://github.com/communi/communi-desktop/compare/257ca915a490...8832bfe8d0b8</a>")
<< (QList<QUrl>() << QUrl(QStringLiteral("https://github.com/communi/communi-desktop/compare/257ca915a490...8832bfe8d0b8")));
QTest::newRow("with protocol") << defaultPattern
<< QStringLiteral("aa http://www.fi bb ftp://ftp.funet.fi cc")
<< QStringLiteral("aa <a href='http://www.fi'>http://www.fi</a> bb <a href='ftp://ftp.funet.fi'>ftp://ftp.funet.fi</a> cc")
<< (QList<QUrl>() << QUrl(QStringLiteral("http://www.fi")) << QUrl(QStringLiteral("ftp://ftp.funet.fi")));
QTest::newRow("without protocol") << defaultPattern
<< QStringLiteral("aa www.fi bb ftp.funet.fi cc jpnurmi@gmail.com dd")
<< QStringLiteral("aa <a href='http://www.fi'>www.fi</a> bb <a href='ftp://ftp.funet.fi'>ftp.funet.fi</a> cc <a href='mailto:jpnurmi@gmail.com'>jpnurmi@gmail.com</a> dd")
<< (QList<QUrl>() << QUrl(QStringLiteral("http://www.fi")) << QUrl(QStringLiteral("ftp://ftp.funet.fi")) << QUrl(QStringLiteral("mailto:jpnurmi@gmail.com")));
}
void tst_IrcTextFormat::testUrls()
{
QFETCH(QString, pattern);
QFETCH(QString, input);
QFETCH(QString, output);
QFETCH(QList<QUrl>, urls);
IrcTextFormat format;
format.setUrlPattern(pattern);
QCOMPARE(format.urlPattern(), pattern);
QCOMPARE(format.toHtml(input), output);
format.parse(input);
QCOMPARE(format.html(), output);
QCOMPARE(format.urls(), urls);
}
QTEST_MAIN(tst_IrcTextFormat)
#include "tst_irctextformat.moc"
|