1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the test suite of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU
19** General Public License version 3 as published by the Free Software
20** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21** included in the packaging of this file. Please review the following
22** information to ensure the GNU General Public License requirements will
23** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24**
25** $QT_END_LICENSE$
26**
27****************************************************************************/
28
29#ifndef TST_QMIMEDATABASE_H
30#define TST_QMIMEDATABASE_H
31
32#include <QtCore/QObject>
33#include <QtCore/QTemporaryDir>
34#include <QtCore/QStringList>
35
36class tst_QMimeDatabase : public QObject
37{
38 Q_OBJECT
39
40public:
41 tst_QMimeDatabase();
42
43private slots:
44 void initTestCase();
45 void init();
46 void cleanupTestCase();
47
48 void mimeTypeForName();
49 void mimeTypeForFileName_data();
50 void mimeTypeForFileName();
51 void mimeTypesForFileName_data();
52 void mimeTypesForFileName();
53 void inheritance();
54 void aliases();
55 void listAliases_data();
56 void listAliases();
57 void icons();
58 void comment();
59 void mimeTypeForFileWithContent();
60 void mimeTypeForUrl();
61 void mimeTypeForData_data();
62 void mimeTypeForData();
63 void mimeTypeForFileAndContent_data();
64 void mimeTypeForFileAndContent();
65 void allMimeTypes();
66 void suffixes_data();
67 void suffixes();
68 void knownSuffix();
69 void symlinkToFifo();
70 void fromThreads();
71
72 // shared-mime-info test suite
73
74 void findByFileName_data();
75 void findByFileName();
76
77 void findByData_data();
78 void findByData();
79
80 void findByFile_data();
81 void findByFile();
82
83 //
84
85 void installNewGlobalMimeType();
86 void installNewLocalMimeType();
87
88private:
89 void initTestCaseInternal(); // test-specific
90
91 QString m_globalXdgDir;
92 QString m_localMimeDir;
93 QStringList m_additionalMimeFileNames;
94 QStringList m_additionalMimeFilePaths;
95 QTemporaryDir m_temporaryDir;
96 QString m_testSuite;
97 bool m_isUsingCacheProvider;
98};
99
100#endif // TST_QMIMEDATABASE_H
101

source code of qtbase/tests/auto/corelib/mimetypes/qmimedatabase/tst_qmimedatabase.h