Newer
Older
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
QGROUNDCONTROL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/// @file
/// @author Don Gagne <don@thegagnes.com>
FileManagerTest::FileManagerTest(void)
: _fileServer(NULL)
, _fileManager(NULL)
, _multiSpy(NULL)
_fileServer = _mockLink->getFileServer();
QVERIFY(_fileServer != NULL);
_fileManager = qgcApp()->toolbox()->multiVehicleManager()->activeVehicle()->uas()->getFileManager();
QVERIFY(_fileManager != NULL);
Q_ASSERT(_multiSpy == NULL);
// Reset any internal state back to normal
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
connect(_fileManager, &FileManager::listEntry, this, &FileManagerTest::listEntry);
_rgSignals[listEntrySignalIndex] = SIGNAL(listEntry(const QString&));
_rgSignals[commandCompleteSignalIndex] = SIGNAL(commandComplete(void));
_rgSignals[commandErrorSignalIndex] = SIGNAL(commandError(const QString&));
_multiSpy = new MultiSignalSpy();
Q_CHECK_PTR(_multiSpy);
QCOMPARE(_multiSpy->init(_fileManager, _rgSignals, _cSignals), true);
}
// Called after every test case
{
Q_ASSERT(_multiSpy);
Q_ASSERT(_fileManager);
// Disconnecting the link will prompt for log file save
setExpectedFileDialog(getSaveFileName, QStringList());
_fileServer = NULL;
_fileManager = NULL;
/// @brief Connected to FileManager listEntry signal in order to catch list entries
void FileManagerTest::listEntry(const QString& entry)
{
// Keep a list of all names received so we can test it for correctness
{
Q_ASSERT(_fileManager);
Q_ASSERT(_multiSpy);
Q_ASSERT(_multiSpy->checkNoSignals() == true);
// If the file manager doesn't receive an ack it will timeout and emit an error. So make sure
// we don't get any error signals.
QVERIFY(_fileManager->_sendCmdTestAck());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
// Setup for no response from ack. This should cause a timeout error
_fileServer->setErrorMode(MockLinkFileServer::errModeNoResponse);
QVERIFY(_fileManager->_sendCmdTestAck());
_multiSpy->waitForSignalByIndex(commandErrorSignalIndex, _ackTimerTimeoutMsecs);
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
_multiSpy->clearAllSignals();
// Setup for a bad sequence number in the ack. This should cause an error;
_fileServer->setErrorMode(MockLinkFileServer::errModeBadSequence);
QVERIFY(_fileManager->_sendCmdTestAck());
_multiSpy->waitForSignalByIndex(commandErrorSignalIndex, _ackTimerTimeoutMsecs);
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
{
Q_ASSERT(_fileManager);
Q_ASSERT(_multiSpy);
Q_ASSERT(_multiSpy->checkNoSignals() == true);
// This should not get the ack back and timeout.
QVERIFY(_fileManager->_sendCmdTestNoAck());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
{
Q_ASSERT(_fileManager);
Q_ASSERT(_multiSpy);
Q_ASSERT(_multiSpy->checkNoSignals() == true);
// FileManager::listDirectory signalling as follows:
// Emits a listEntry signal for each list entry
// It gets a Nak back
// Sequence number is incorrrect on any response
// CRC is incorrect on any responses
// List entry is formatted incorrectly
// It is possible to get a number of good listEntry signals, followed by an commandError signal
// Emits commandComplete after it receives the final list entry
// If an commandError signal is signalled no listComplete is signalled
// We should get a single commandError signal
_fileManager->listDirectory("/bogus");
_multiSpy->waitForSignalByIndex(commandErrorSignalIndex, _ackTimerTimeoutMsecs);
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
// Setup the mock file server with a valid directory list
QStringList fileList;
fileList << "Ddir" << "Ffoo" << "Fbar";
_fileServer->setFileList(fileList);
// Send a list command at the root of the directory tree which should succeed
_fileManager->listDirectory("/");
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
QCOMPARE(_multiSpy->checkSignalByMask(commandCompleteSignalMask), true);
QCOMPARE(_multiSpy->checkNoSignalByMask(commandErrorSignalMask), true);
QCOMPARE(_multiSpy->getSpyByIndex(listEntrySignalIndex)->count(), fileList.count());
QVERIFY(_fileListReceived == fileList);
// Set everything back to initial state
_fileListReceived.clear();
_multiSpy->clearAllSignals();
// Run through the various server side failure modes
for (size_t i=0; i<MockLinkFileServer::cFailureModes; i++) {
MockLinkFileServer::ErrorMode_t errMode = MockLinkFileServer::rgFailureModes[i];
qDebug() << "Testing failure mode:" << errMode;
_fileManager->listDirectory("/");
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
if (errMode == MockLinkFileServer::errModeNoSecondResponse || errMode == MockLinkFileServer::errModeNakSecondResponse) {
// For simulated server errors on subsequent Acks, the first Ack will go through. This means we should have gotten some
// partial results. In the case of the directory list test set, all entries fit into the first ack, so we should have
// gotten back all of them.
QCOMPARE(_multiSpy->getSpyByIndex(listEntrySignalIndex)->count(), fileList.count());
_multiSpy->clearSignalByIndex(listEntrySignalIndex);
// And then it should have errored out because the next list Request would have failed.
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
} else {
// For the simulated errors which failed the intial response we should not have gotten any results back at all.
// Just an error.
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
}
// Set everything back to initial state
_fileListReceived.clear();
_multiSpy->clearAllSignals();
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
#if 0
// Trying to write test code for read and burst mode download as well as implement support in MockLineFileServer reached a point
// of diminishing returns where the test code and mock server were generating more bugs in themselves than finding problems.
void FileManagerTest::_readDownloadTest(void)
{
Q_ASSERT(_fileManager);
Q_ASSERT(_multiSpy);
Q_ASSERT(_multiSpy->checkNoSignals() == true);
// We setup a spy on the Reset command signal of the mock file server so that we can determine that a
// Reset command was correctly sent after the Open/Read commands complete.
QSignalSpy resetSpy(_fileServer, SIGNAL(resetCommandReceived()));
// Send a bogus path
_fileManager->downloadPath("bogus", QDir::temp());
_multiSpy->waitForSignalByIndex(commandErrorSignalIndex, _ackTimerTimeoutMsecs);
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
for (size_t i=0; i<MockLinkFileServer::cFileTestCases; i++) {
QString filePath = QDir::temp().absoluteFilePath(MockLinkFileServer::rgFileTestCases[i].filename);
if (QFile::exists(filePath)) {
Q_ASSERT(QFile::remove(filePath));
}
// Run through the set of file test cases
for (size_t i=0; i<MockLinkFileServer::cFileTestCases; i++) {
const MockLinkFileServer::FileTestCase* testCase = &MockLinkFileServer::rgFileTestCases[i];
// Run through the various failure modes for this test case
for (size_t j=0; j<MockLinkFileServer::cFailureModes; j++) {
qDebug() << "Testing successful download";
// Run what should be a successful file download test case. No servers errors are being simulated.
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
_fileManager->downloadPath(testCase->filename, QDir::temp());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
// This should be a succesful download
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandCompleteSignalMask), true);
_multiSpy->clearAllSignals();
// We should get a single Reset command to close the session
QCOMPARE(resetSpy.count(), 1);
resetSpy.clear();
// Validate file contents
QString filePath = QDir::temp().absoluteFilePath(MockLinkFileServer::rgFileTestCases[i].filename);
_validateFileContents(filePath, MockLinkFileServer::rgFileTestCases[i].length);
MockLinkFileServer::ErrorMode_t errMode = MockLinkFileServer::rgFailureModes[j];
qDebug() << "Testing failure mode:" << errMode;
_fileManager->downloadPath(testCase->filename, QDir::temp());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
if (errMode == MockLinkFileServer::errModeNakResponse) {
// This will Nak the Open call which will fail the download, but not cause a Reset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
QCOMPARE(resetSpy.count(), 0);
} else {
if (testCase->packetCount == 1 && (errMode == MockLinkFileServer::errModeNoSecondResponse || errMode == MockLinkFileServer::errModeNakSecondResponse)) {
// The downloaded file fits within a single Ack response, hence there is no second Read issued.
// This should result in a successful download, followed by a Reset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandCompleteSignalMask), true);
QCOMPARE(resetSpy.count(), 1);
// Validate file contents
QString filePath = QDir::temp().absoluteFilePath(testCase->filename);
_validateFileContents(filePath, testCase->length);
} else {
// Download should have failed, followed by a aReset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
QCOMPARE(resetSpy.count(), 1);
}
}
// Cleanup for next iteration
_multiSpy->clearAllSignals();
resetSpy.clear();
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
void FileManagerTest::_streamDownloadTest(void)
{
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
Q_ASSERT(_fileManager);
Q_ASSERT(_multiSpy);
Q_ASSERT(_multiSpy->checkNoSignals() == true);
// We setup a spy on the Reset command signal of the mock file server so that we can determine that a
// Reset command was correctly sent after the Open/Read commands complete.
QSignalSpy resetSpy(_fileServer, SIGNAL(resetCommandReceived()));
// Send a bogus path
_fileManager->streamPath("bogus", QDir::temp());
_multiSpy->waitForSignalByIndex(commandErrorSignalIndex, _ackTimerTimeoutMsecs);
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
_multiSpy->clearAllSignals();
QCOMPARE(resetSpy.count(), 0);
// Clean previous downloads
for (size_t i=0; i<MockLinkFileServer::cFileTestCases; i++) {
QString filePath = QDir::temp().absoluteFilePath(MockLinkFileServer::rgFileTestCases[i].filename);
if (QFile::exists(filePath)) {
Q_ASSERT(QFile::remove(filePath));
}
}
// Run through the set of file test cases
for (size_t i=0; i<MockLinkFileServer::cFileTestCases; i++) {
const MockLinkFileServer::FileTestCase* testCase = &MockLinkFileServer::rgFileTestCases[i];
// Run through the various failure modes for this test case
for (size_t j=0; j<MockLinkFileServer::cFailureModes; j++) {
qDebug() << "Testing successful download";
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
// Run what should be a successful file download test case. No servers errors are being simulated.
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
_fileManager->streamPath(testCase->filename, QDir::temp());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
// This should be a succesful download
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandCompleteSignalMask), true);
_multiSpy->clearAllSignals();
// We should get a single Reset command to close the session
QCOMPARE(resetSpy.count(), 1);
resetSpy.clear();
// Validate file contents
QString filePath = QDir::temp().absoluteFilePath(MockLinkFileServer::rgFileTestCases[i].filename);
_validateFileContents(filePath, MockLinkFileServer::rgFileTestCases[i].length);
MockLinkFileServer::ErrorMode_t errMode = MockLinkFileServer::rgFailureModes[j];
qDebug() << "Testing failure mode:" << errMode;
_fileServer->setErrorMode(errMode);
_fileManager->downloadPath(testCase->filename, QDir::temp());
QTest::qWait(_ackTimerTimeoutMsecs); // Let the file manager timeout
if (errMode == MockLinkFileServer::errModeNakResponse) {
// This will Nak the Open call which will fail the download, but not cause a Reset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
QCOMPARE(resetSpy.count(), 0);
} else {
if (testCase->packetCount == 1 && (errMode == MockLinkFileServer::errModeNoSecondResponse || errMode == MockLinkFileServer::errModeNakSecondResponse)) {
// The downloaded file fits within a single Ack response, hence there is no second Read issued.
// This should result in a successful download, followed by a Reset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandCompleteSignalMask), true);
QCOMPARE(resetSpy.count(), 1);
// Validate file contents
QString filePath = QDir::temp().absoluteFilePath(testCase->filename);
_validateFileContents(filePath, testCase->length);
} else {
// Download should have failed, followed by a aReset
QCOMPARE(_multiSpy->checkOnlySignalByMask(commandErrorSignalMask), true);
QCOMPARE(resetSpy.count(), 1);
}
}
// Cleanup for next iteration
_multiSpy->clearAllSignals();
resetSpy.clear();
_fileServer->setErrorMode(MockLinkFileServer::errModeNone);
}
}
}
void FileManagerTest::_validateFileContents(const QString& filePath, uint8_t length)
{
QFile file(filePath);
// Make sure file size is correct
QCOMPARE(file.size(), (qint64)length);
// Read data
QVERIFY(file.open(QIODevice::ReadOnly));
QByteArray bytes = file.readAll();
file.close();
// Validate file contents:
// Repeating 0x00, 0x01 .. 0xFF until file is full
for (uint8_t i=0; i<bytes.length(); i++) {
QCOMPARE((uint8_t)bytes[i], (uint8_t)(i & 0xFF));
}
}