summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmakelib/tst_qmakelib.cpp
blob: 2fdec205c26aa324ab09302cc6346893001262a7 (plain)
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
314
315
316
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "tst_qmakelib.h"

#include <ioutils.h>

using namespace QMakeInternal;

void tst_qmakelib::initTestCase()
{
    m_indir = QFINDTESTDATA("testdata");
    m_outdir = m_indir + QLatin1String("_build");
    m_env.insert(QStringLiteral("E1"), QStringLiteral("env var"));
#ifdef Q_OS_WIN
    m_env.insert(QStringLiteral("COMSPEC"), qgetenv("COMSPEC"));
#endif
    m_prop.insert(ProKey("P1"), ProString("prop val"));
    m_prop.insert(ProKey("QT_HOST_DATA/get"), ProString(m_indir));
    m_prop.insert(ProKey("QT_HOST_DATA/src"), ProString(m_indir));

    QVERIFY(!m_indir.isEmpty());
    QVERIFY(QDir(m_outdir).removeRecursively());
    QVERIFY(QDir().mkpath(m_outdir));
}

void tst_qmakelib::cleanupTestCase()
{
    QVERIFY(QDir(m_outdir).removeRecursively());
}

void tst_qmakelib::proString()
{
    QString qs1(QString::fromUtf8("this is a string"));

    ProString s1(qs1);
    QCOMPARE(s1.toQString(), QStringLiteral("this is a string"));

    ProString s2(qs1, 5, 8);
    QCOMPARE(s2.toQString(), QStringLiteral("is a str"));

    QCOMPARE(s2.hash(), 0x80000000);
    qHash(s2);
    QCOMPARE(s2.hash(), 90404018U);

    QCOMPARE(s2.mid(0, 10).toQString(), QStringLiteral("is a str"));
    QCOMPARE(s2.mid(1, 5).toQString(), QStringLiteral("s a s"));
    QCOMPARE(s2.mid(10, 3).toQString(), QStringLiteral(""));

    QString qs2(QStringLiteral("   spacy  string   "));
    QCOMPARE(ProString(qs2, 3, 13).trimmed().toQString(), QStringLiteral("spacy  string"));
    QCOMPARE(ProString(qs2, 1, 17).trimmed().toQString(), QStringLiteral("spacy  string"));

    s2.prepend(ProString("there "));
    QCOMPARE(s2.toQString(), QStringLiteral("there is a str"));

    ProString s3("this is a longish string with bells and whistles");
    s3 = s3.mid(18, 17);
    QCOMPARE(s3.toQString(), QStringLiteral("string with bells"));
    // Prepend to detached string with lots of spare space in it.
    s3.prepend(ProString("another "));
    QCOMPARE(s3.toQString(), QStringLiteral("another string with bells"));

    // Note: The string still has plenty of spare space.
    s3.append(QLatin1Char('.'));
    QCOMPARE(s3.toQString(), QStringLiteral("another string with bells."));
    s3.append(QLatin1String(" eh?"));
    QCOMPARE(s3.toQString(), QStringLiteral("another string with bells. eh?"));

    s3.append(ProString(" yeah!"));
    QCOMPARE(s3.toQString(), QStringLiteral("another string with bells. eh? yeah!"));

    bool pending = false; // Not in string, but joining => add space
    s3.append(ProString("..."), &pending);
    QCOMPARE(s3.toQString(), QStringLiteral("another string with bells. eh? yeah! ..."));
    QVERIFY(pending);

    ProStringList sl1;
    sl1 << ProString("") << ProString("foo") << ProString("barbaz");
    ProString s4a("hallo");
    s4a.append(sl1);
    QCOMPARE(s4a.toQString(), QStringLiteral("hallo foo barbaz"));
    ProString s4b("hallo");
    pending = false;
    s4b.append(sl1, &pending);
    QCOMPARE(s4b.toQString(), QStringLiteral("hallo  foo barbaz"));
    ProString s4c;
    pending = false;
    s4c.append(sl1, &pending);
    QCOMPARE(s4c.toQString(), QStringLiteral(" foo barbaz"));
    // bizarreness
    ProString s4d("hallo");
    pending = false;
    s4d.append(sl1, &pending, true);
    QCOMPARE(s4d.toQString(), QStringLiteral("hallo foo barbaz"));
    ProString s4e;
    pending = false;
    s4e.append(sl1, &pending, true);
    QCOMPARE(s4e.toQString(), QStringLiteral("foo barbaz"));

    ProStringList sl2;
    sl2 << ProString("foo");
    ProString s5;
    s5.append(sl2);
    QCOMPARE(s5.toQString(), QStringLiteral("foo"));

    QCOMPARE(ProString("one") + ProString(" more"), QStringLiteral("one more"));
}

void tst_qmakelib::proStringList()
{
    ProStringList sl1;
    sl1 << ProString("qt") << ProString(QLatin1String("is"))
        << ProString(QStringLiteral("uncool")).mid(2);

    QCOMPARE(sl1.toQStringList(), QStringList() << "qt" << "is" << "cool");
    QCOMPARE(sl1.join(QStringLiteral("~~")), QStringLiteral("qt~~is~~cool"));

    ProStringList sl2;
    sl2 << ProString("mostly") << ProString("...") << ProString("is") << ProString("...");
    sl1.insertUnique(sl2);
    QCOMPARE(sl1.toQStringList(), QStringList() << "qt" << "is" << "cool" << "mostly" << "...");

    QVERIFY(sl1.contains("cool"));
    QVERIFY(!sl1.contains("COOL"));
    QVERIFY(sl1.contains("COOL", Qt::CaseInsensitive));
}

void tst_qmakelib::quoteArgUnix_data()
{
    QTest::addColumn<QString>("in");
    QTest::addColumn<QString>("out");

    static const struct {
        const char * const in;
        const char * const out;
    } vals[] = {
        { "", "''" },
        { "hallo", "hallo" },
        { "hallo du", "'hallo du'" },
        { "ha'llo", "'ha'\\''llo'" },
    };

    for (unsigned i = 0; i < sizeof(vals)/sizeof(vals[0]); i++)
        QTest::newRow(vals[i].in) << QString::fromLatin1(vals[i].in)
                                  << QString::fromLatin1(vals[i].out);
}

void tst_qmakelib::quoteArgUnix()
{
    QFETCH(QString, in);
    QFETCH(QString, out);

    QCOMPARE(IoUtils::shellQuoteUnix(in), out);
}

void tst_qmakelib::quoteArgWin_data()
{
    QTest::addColumn<QString>("in");
    QTest::addColumn<QString>("out");

    static const struct {
        const char * const in;
        const char * const out;
    } vals[] = {
        { "", "\"\"" },
        { "hallo", "hallo" },
        { "hallo du", "\"hallo du\"" },
        { "hallo\\", "hallo\\" },
        { "hallo du\\", "\"hallo du\\\\\"" },
        { "ha\"llo", "\"ha\\\"llo^\"" },
        { "ha\\\"llo", "\"ha\\\\\\\"llo^\"" },
    };

    for (unsigned i = 0; i < sizeof(vals)/sizeof(vals[0]); i++)
        QTest::newRow(vals[i].in) << QString::fromLatin1(vals[i].in)
                                  << QString::fromLatin1(vals[i].out);
}

void tst_qmakelib::quoteArgWin()
{
    QFETCH(QString, in);
    QFETCH(QString, out);

    QCOMPARE(IoUtils::shellQuoteWin(in), out);
}

void tst_qmakelib::pathUtils()
{
    QString afp = QCoreApplication::applicationFilePath();
    QVERIFY(IoUtils::exists(afp));
    QVERIFY(!IoUtils::exists(afp + "-tehfail"));
    QCOMPARE(IoUtils::fileType(afp), IoUtils::FileIsRegular);
    QString adp = QCoreApplication::applicationDirPath();
    QCOMPARE(IoUtils::fileType(adp), IoUtils::FileIsDir);

    QString fn0 = "file/path";
    QVERIFY(IoUtils::isRelativePath(fn0));

    QString fn1 = "/a/unix/file/path";
    QCOMPARE(IoUtils::pathName(fn1).toString(), QStringLiteral("/a/unix/file/"));
    QCOMPARE(IoUtils::fileName(fn1).toString(), QStringLiteral("path"));
}

void tst_qmakelib::ioUtilRelativity_data()
{
    QTest::addColumn<QString>("path");
    QTest::addColumn<bool>("relative");

    static const struct {
        const char *name;
        const char *path;
        bool relative;
    } rows[] = {
        { "resource", ":/resource",
#ifdef QMAKE_BUILTIN_PRFS
          false
#else
          true
#endif
        },
#ifdef Q_OS_WIN // all the complications:
        // (except UNC: unsupported)
        { "drive-abs", "c:/path/to/file", false },
        { "drive-abs-bs", "c:\\path\\to\\file", false },
        { "drive-path", "c:path/to/file.txt", true },
        { "drive-path-bs", "c:path\\to\\file.txt", true },
        { "rooted", "/Users/qt/bin/true", true },
        { "rooted-bs", "\\Users\\qt\\bin\\true", true },
        { "drive-rel", "c:file.txt", true },
        { "subdir-bs", "path\\to\\file", true },
#else
        { "rooted", "/usr/bin/false", false },
#endif // Q_OS_WIN
        { "subdir", "path/to/file", true },
        { "simple", "file.name", true },
        { "empty", "", true }
    };

    for (unsigned int i = sizeof(rows) / sizeof(rows[0]); i-- > 0; )
        QTest::newRow(rows[i].name) << QString::fromLatin1(rows[i].path)
                                    << rows[i].relative;
}

void tst_qmakelib::ioUtilRelativity()
{
    QFETCH(QString, path);
    QFETCH(bool, relative);

    QCOMPARE(IoUtils::isRelativePath(path), relative);
}

void tst_qmakelib::ioUtilResolve_data()
{
    QTest::addColumn<QString>("base");
    QTest::addColumn<QString>("path");
    QTest::addColumn<QString>("expect");

    static const struct {
        const char *name;
        const char *base;
        const char *path;
        const char *expect;
    } data[] = {
#ifdef Q_OS_WIN // all the complications:
        { "drive-drive", "a:/ms/dir", "z:/root/file", "z:/root/file" },
        { "drive-drive-bs", "a:\\ms\\dir", "z:\\root\\file", "z:/root/file" },
        { "drive-root", "a:/ms/dir", "/root/file", "a:/root/file" },
        { "drive-root-bs", "a:\\ms\\dir", "\\root\\file", "a:/root/file" },
        { "drive-sub", "a:/ms/dir", "sub/file", "a:/ms/dir/sub/file" },
        { "drive-sub-bs", "a:\\ms\\dir", "sub\\file", "a:/ms/dir/sub/file" },
        { "drive-rel", "a:/ms/dir", "file.txt", "a:/ms/dir/file.txt" },
        { "drive-rel-bs", "a:\\ms\\dir", "file.txt", "a:/ms/dir/file.txt" },
#else
        { "abs-abs", "/a/unix/dir", "/root/file", "/root/file" },
        { "abs-sub", "/a/unix/dir", "sub/file", "/a/unix/dir/sub/file" },
        { "abs-rel", "/a/unix/dir", "file.txt", "/a/unix/dir/file.txt" },
#endif // Q_OS_WIN
    };

    for (unsigned i = sizeof(data) / sizeof(data[0]); i-- > 0; )
        QTest::newRow(data[i].name) << QString::fromLatin1(data[i].base)
                                    << QString::fromLatin1(data[i].path)
                                    << QString::fromLatin1(data[i].expect);
}

void tst_qmakelib::ioUtilResolve()
{
    QFETCH(QString, base);
    QFETCH(QString, path);
    QFETCH(QString, expect);

    QCOMPARE(IoUtils::resolvePath(base, path), expect);
}

void QMakeTestHandler::print(const QString &fileName, int lineNo, int type, const QString &msg)
{
    QString pfx = ((type & QMakeParserHandler::CategoryMask) == QMakeParserHandler::WarningMessage)
                  ? QString::fromLatin1("WARNING: ") : QString();
    if (lineNo)
        doPrint(QStringLiteral("%1%2:%3: %4").arg(pfx, fileName, QString::number(lineNo), msg));
    else
        doPrint(QStringLiteral("%1%2").arg(pfx, msg));
}

void QMakeTestHandler::doPrint(const QString &msg)
{
    if (!expected.isEmpty() && expected.first() == msg) {
        expected.removeAt(0);
    } else {
        qWarning("%s", qPrintable(msg));
        printed = true;
    }
}

QTEST_MAIN(tst_qmakelib)