Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
130ac82e
Commit
130ac82e
authored
Oct 23, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Base class for MissionManager/ControllerTest
parent
8fc0149b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
193 additions
and
0 deletions
+193
-0
MissionControllerManagerTest.cc
src/MissionManager/MissionControllerManagerTest.cc
+101
-0
MissionControllerManagerTest.h
src/MissionManager/MissionControllerManagerTest.h
+92
-0
No files found.
src/MissionManager/MissionControllerManagerTest.cc
0 → 100644
View file @
130ac82e
/*=====================================================================
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/>.
======================================================================*/
#include "MissionControllerManagerTest.h"
#include "LinkManager.h"
#include "MultiVehicleManager.h"
UT_REGISTER_TEST
(
MissionControllerManagerTest
)
MissionControllerManagerTest
::
MissionControllerManagerTest
(
void
)
:
_mockLink
(
NULL
)
{
}
void
MissionControllerManagerTest
::
cleanup
(
void
)
{
delete
_multiSpyMissionManager
;
_multiSpyMissionManager
=
NULL
;
LinkManager
::
instance
()
->
disconnectLink
(
_mockLink
);
_mockLink
=
NULL
;
QTest
::
qWait
(
1000
);
// Need to allow signals to move between threads
UnitTest
::
cleanup
();
}
void
MissionControllerManagerTest
::
_initForFirmwareType
(
MAV_AUTOPILOT
firmwareType
)
{
UnitTest
::
init
();
LinkManager
*
linkMgr
=
LinkManager
::
instance
();
Q_CHECK_PTR
(
linkMgr
);
_mockLink
=
new
MockLink
();
Q_CHECK_PTR
(
_mockLink
);
_mockLink
->
setFirmwareType
(
firmwareType
);
LinkManager
::
instance
()
->
_addLink
(
_mockLink
);
linkMgr
->
connectLink
(
_mockLink
);
// Wait for the Vehicle to work it's way through the various threads
QSignalSpy
spyVehicle
(
MultiVehicleManager
::
instance
(),
SIGNAL
(
activeVehicleChanged
(
Vehicle
*
)));
QCOMPARE
(
spyVehicle
.
wait
(
5000
),
true
);
// Wait for the Mission Manager to finish it's initial load
_missionManager
=
MultiVehicleManager
::
instance
()
->
activeVehicle
()
->
missionManager
();
QVERIFY
(
_missionManager
);
_rgMissionManagerSignals
[
canEditChangedSignalIndex
]
=
SIGNAL
(
canEditChanged
(
bool
));
_rgMissionManagerSignals
[
newMissionItemsAvailableSignalIndex
]
=
SIGNAL
(
newMissionItemsAvailable
(
void
));
_rgMissionManagerSignals
[
inProgressChangedSignalIndex
]
=
SIGNAL
(
inProgressChanged
(
bool
));
_rgMissionManagerSignals
[
errorSignalIndex
]
=
SIGNAL
(
error
(
int
,
const
QString
&
));
_multiSpyMissionManager
=
new
MultiSignalSpy
();
Q_CHECK_PTR
(
_multiSpyMissionManager
);
QCOMPARE
(
_multiSpyMissionManager
->
init
(
_missionManager
,
_rgMissionManagerSignals
,
_cMissionManagerSignals
),
true
);
if
(
_missionManager
->
inProgress
())
{
_multiSpyMissionManager
->
waitForSignalByIndex
(
newMissionItemsAvailableSignalIndex
,
_missionManagerSignalWaitTime
);
_multiSpyMissionManager
->
waitForSignalByIndex
(
inProgressChangedSignalIndex
,
_missionManagerSignalWaitTime
);
QCOMPARE
(
_multiSpyMissionManager
->
checkSignalByMask
(
newMissionItemsAvailableSignalMask
|
inProgressChangedSignalMask
),
true
);
QCOMPARE
(
_multiSpyMissionManager
->
checkNoSignalByMask
(
canEditChangedSignalIndex
),
true
);
}
QVERIFY
(
!
_missionManager
->
inProgress
());
QCOMPARE
(
_missionManager
->
missionItems
()
->
count
(),
0
);
_multiSpyMissionManager
->
clearAllSignals
();
}
/// Checks the state of the inProgress value and signal to match the specified value
void
MissionControllerManagerTest
::
_checkInProgressValues
(
bool
inProgress
)
{
QCOMPARE
(
_missionManager
->
inProgress
(),
inProgress
);
QSignalSpy
*
spy
=
_multiSpyMissionManager
->
getSpyByIndex
(
inProgressChangedSignalIndex
);
QList
<
QVariant
>
signalArgs
=
spy
->
takeFirst
();
QCOMPARE
(
signalArgs
.
count
(),
1
);
QCOMPARE
(
signalArgs
[
0
].
toBool
(),
inProgress
);
}
src/MissionManager/MissionControllerManagerTest.h
0 → 100644
View file @
130ac82e
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2015 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/>.
======================================================================*/
#ifndef MissionControllerManagerTest_H
#define MissionControllerManagerTest_H
#include "UnitTest.h"
#include "MockLink.h"
#include "MissionManager.h"
#include "MultiSignalSpy.h"
#include <QGeoCoordinate>
/// This is the base class for the MissionManager and MissionController unit tests.
class
MissionControllerManagerTest
:
public
UnitTest
{
Q_OBJECT
public:
MissionControllerManagerTest
(
void
);
protected
slots
:
void
cleanup
(
void
);
protected:
void
_initForFirmwareType
(
MAV_AUTOPILOT
firmwareType
);
void
_checkInProgressValues
(
bool
inProgress
);
MockLink
*
_mockLink
;
MissionManager
*
_missionManager
;
typedef
struct
{
int
sequenceNumber
;
QGeoCoordinate
coordinate
;
int
command
;
double
param1
;
double
param2
;
double
param3
;
double
param4
;
bool
autocontinue
;
bool
isCurrentItem
;
int
frame
;
}
ItemInfo_t
;
typedef
struct
{
const
char
*
itemStream
;
const
ItemInfo_t
expectedItem
;
}
TestCase_t
;
typedef
enum
{
canEditChangedSignalIndex
=
0
,
newMissionItemsAvailableSignalIndex
,
inProgressChangedSignalIndex
,
errorSignalIndex
,
maxSignalIndex
}
MissionManagerSignalIndex_t
;
typedef
enum
{
canEditChangedSignalMask
=
1
<<
canEditChangedSignalIndex
,
newMissionItemsAvailableSignalMask
=
1
<<
newMissionItemsAvailableSignalIndex
,
inProgressChangedSignalMask
=
1
<<
inProgressChangedSignalIndex
,
errorSignalMask
=
1
<<
errorSignalIndex
,
}
MissionManagerSignalMask_t
;
MultiSignalSpy
*
_multiSpyMissionManager
;
static
const
size_t
_cMissionManagerSignals
=
maxSignalIndex
;
const
char
*
_rgMissionManagerSignals
[
_cMissionManagerSignals
];
static
const
int
_missionManagerSignalWaitTime
=
MissionManager
::
_ackTimeoutMilliseconds
*
MissionManager
::
_maxRetryCount
*
2
;
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment