You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
5 years ago
|
//
|
||
|
// Multicopter mission test.
|
||
|
//
|
||
|
// Author: Julian Oes <julian@oes.ch>
|
||
|
|
||
|
#define CATCH_CONFIG_RUNNER
|
||
|
#include "catch2/catch.hpp"
|
||
|
|
||
|
#include <mavsdk/mavsdk.h>
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
#include "autopilot_tester.h"
|
||
|
|
||
|
|
||
|
static void usage(const std::string& bin_name);
|
||
|
static void remove_argv(int& argc, char** argv, int pos);
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
for (int i = 0; i < argc; ++i) {
|
||
|
const std::string argv_string(argv[i]);
|
||
|
|
||
|
if (argv_string == "-h") {
|
||
|
usage(argv[0]);
|
||
|
}
|
||
|
|
||
|
if (argv_string == "--url") {
|
||
|
if (argc > i + 1) {
|
||
|
connection_url = argv[i+1];
|
||
|
remove_argv(argc, argv, i);
|
||
|
remove_argv(argc, argv, i);
|
||
|
} else {
|
||
|
std::cerr << "No connection URL supplied" << std::endl;
|
||
|
usage(argv[0]);
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Catch::Session session;
|
||
|
const int catch_ret = session.applyCommandLine(argc, argv);
|
||
|
if (catch_ret != 0) {
|
||
|
return catch_ret;
|
||
|
}
|
||
|
return session.run();
|
||
|
}
|
||
|
|
||
|
void usage(const std::string& bin_name)
|
||
|
{
|
||
|
std::cout << std::endl
|
||
|
<< "Usage : " << bin_name << " [--url CONNECTION_URL] [catch2 arguments]" << std::endl
|
||
|
<< "Connection URL format should be :" << std::endl
|
||
|
<< " For TCP : tcp://[server_host][:server_port]" << std::endl
|
||
|
<< " For UDP : udp://[bind_host][:bind_port]" << std::endl
|
||
|
<< " For Serial : serial:///path/to/serial/dev[:baudrate]" << std::endl
|
||
|
<< "For example, to connect to the simulator use URL: udp://:14540" << std::endl
|
||
|
<< std::endl;
|
||
|
}
|
||
|
|
||
|
void remove_argv(int& argc, char** argv, int pos)
|
||
|
{
|
||
|
for (int i = pos; i+1 < argc; ++i) {
|
||
|
argv[i] = argv[i+1];
|
||
|
}
|
||
|
argv[--argc] = nullptr;
|
||
|
}
|