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
|
/*
Q Light Controller - Unit tests
qlcfile_test.cpp
Copyright (C) Heikki Junnila
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <QtTest>
#if defined(WIN32) || defined(Q_OS_WIN)
#else
# include <sys/types.h>
# include <sys/stat.h>
#endif
#include "qlcfile_test.h"
#include "qlcfile.h"
#include "qlcconfig.h"
void QLCFile_Test::XMLReader()
{
QVERIFY(QLCFile::getXMLReader("") == NULL);
QXmlStreamReader *reader = QLCFile::getXMLReader("readonly.xml.in");
QVERIFY(reader != NULL);
QVERIFY(reader->device() != NULL);
QVERIFY(reader->device()->isOpen() == true);
/* check releasing an invalid reader does nothing */
QLCFile::releaseXMLReader(NULL);
/* release the real reader */
QLCFile::releaseXMLReader(reader);
reader = NULL;
/* check a file that cannot be created */
reader = QLCFile::getXMLReader("foo.xml");
QVERIFY(reader == NULL);
}
void QLCFile_Test::getXMLHeader()
{
QBuffer buffer;
buffer.open(QIODevice::WriteOnly | QIODevice::Text);
QXmlStreamWriter doc(&buffer);
doc.setAutoFormatting(true);
doc.setAutoFormattingIndent(1);
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
doc.setCodec("UTF-8");
#endif
QLCFile::writeXMLHeader(&doc, "DocumentTag", "TestUnit");
doc.writeEndDocument();
doc.setDevice(NULL);
buffer.close();
buffer.open(QIODevice::ReadOnly | QIODevice::Text);
QXmlStreamReader xmlReader(&buffer);
while (!xmlReader.atEnd())
{
if (xmlReader.readNext() == QXmlStreamReader::DTD)
break;
}
bool creatorTag = false, author = false, appname = false,
appversion = false;
QVERIFY(xmlReader.hasError() == false);
QVERIFY(xmlReader.dtdName().toString() == "DocumentTag");
QVERIFY(xmlReader.readNextStartElement() == true);
QVERIFY(xmlReader.name().toString() == "DocumentTag");
while (xmlReader.readNextStartElement())
{
if (xmlReader.name() == KXMLQLCCreatorAuthor)
{
author = true;
QVERIFY(xmlReader.readElementText() == "TestUnit");
}
else if (xmlReader.name() == KXMLQLCCreator)
creatorTag = true;
else if (xmlReader.name() == KXMLQLCCreatorName)
{
appname = true;
xmlReader.skipCurrentElement();
}
else if (xmlReader.name() == KXMLQLCCreatorVersion)
{
appversion = true;
xmlReader.skipCurrentElement();
}
}
QVERIFY(creatorTag == true);
QVERIFY(appname == true);
QVERIFY(appversion == true);
QVERIFY(author == true);
}
void QLCFile_Test::errorString()
{
QCOMPARE(QLCFile::errorString(QFile::NoError),
tr("No error occurred."));
QCOMPARE(QLCFile::errorString(QFile::ReadError),
tr("An error occurred when reading from the file."));
QCOMPARE(QLCFile::errorString(QFile::WriteError),
tr("An error occurred when writing to the file."));
QCOMPARE(QLCFile::errorString(QFile::FatalError),
tr("A fatal error occurred."));
QCOMPARE(QLCFile::errorString(QFile::ResourceError),
tr("Resource error occurred."));
QCOMPARE(QLCFile::errorString(QFile::OpenError),
tr("The file could not be opened."));
QCOMPARE(QLCFile::errorString(QFile::AbortError),
tr("The operation was aborted."));
QCOMPARE(QLCFile::errorString(QFile::TimeOutError),
tr("A timeout occurred."));
QCOMPARE(QLCFile::errorString(QFile::UnspecifiedError),
tr("An unspecified error occurred."));
QCOMPARE(QLCFile::errorString(QFile::RemoveError),
tr("The file could not be removed."));
QCOMPARE(QLCFile::errorString(QFile::RenameError),
tr("The file could not be renamed."));
QCOMPARE(QLCFile::errorString(QFile::PositionError),
tr("The position in the file could not be changed."));
QCOMPARE(QLCFile::errorString(QFile::ResizeError),
tr("The file could not be resized."));
QCOMPARE(QLCFile::errorString(QFile::PermissionsError),
tr("The file could not be accessed."));
QCOMPARE(QLCFile::errorString(QFile::CopyError),
tr("The file could not be copied."));
QCOMPARE(QLCFile::errorString(QFile::FileError(31337)),
tr("An unknown error occurred."));
}
void QLCFile_Test::version()
{
QVERIFY(QLCFile::getQtRuntimeVersion() > 40000);
}
void QLCFile_Test::windowManager()
{
QVERIFY(QLCFile::hasWindowManager() == true);
QLCFile::setHasWindowManager(false);
QVERIFY(QLCFile::hasWindowManager() == false);
}
QTEST_APPLESS_MAIN(QLCFile_Test)
|