mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-15 06:14:58 +00:00
257 lines
10 KiB
C++
257 lines
10 KiB
C++
/*!
|
|
* \file control_thread_test.cc
|
|
* \brief This file implements tests for the ControlThread.
|
|
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
|
|
* Carles Fernandez-Prades, 2013. cfernandez(at)cttc.es
|
|
*
|
|
*
|
|
* -----------------------------------------------------------------------------
|
|
*
|
|
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
|
* This file is part of GNSS-SDR.
|
|
*
|
|
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#include "channel_event.h"
|
|
#include "command_event.h"
|
|
#include "concurrent_queue.h"
|
|
#include "control_thread.h"
|
|
#include "gnss_sdr_make_unique.h"
|
|
#include "in_memory_configuration.h"
|
|
#include <boost/exception/diagnostic_information.hpp>
|
|
#include <boost/exception_ptr.hpp>
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <gtest/gtest.h>
|
|
#include <pmt/pmt.h>
|
|
#include <chrono>
|
|
#include <exception>
|
|
#include <memory>
|
|
#include <sys/ipc.h>
|
|
#include <sys/msg.h>
|
|
#include <sys/types.h>
|
|
#include <thread>
|
|
#include <unistd.h>
|
|
|
|
#if USE_GLOG_AND_GFLAGS
|
|
#include <gflags/gflags.h>
|
|
#include <glog/logging.h>
|
|
#else
|
|
#include <absl/log/log.h>
|
|
#endif
|
|
|
|
class ControlThreadTest : public ::testing::Test
|
|
{
|
|
public:
|
|
static int stop_receiver();
|
|
typedef struct
|
|
{
|
|
long mtype; // required by SysV message
|
|
double message;
|
|
} message_buffer;
|
|
};
|
|
|
|
|
|
int ControlThreadTest::stop_receiver()
|
|
{
|
|
message_buffer msg_stop;
|
|
msg_stop.mtype = 1;
|
|
msg_stop.message = -200.0;
|
|
int msqid_stop = -1;
|
|
int msgsend_size = sizeof(msg_stop.message);
|
|
key_t key_stop = 1102;
|
|
|
|
// wait for the receiver control queue to be created
|
|
while (((msqid_stop = msgget(key_stop, 0644))) == -1)
|
|
{
|
|
}
|
|
|
|
// wait for a couple of seconds
|
|
std::this_thread::sleep_for(std::chrono::seconds(2));
|
|
|
|
// Stop the receiver
|
|
msgsnd(msqid_stop, &msg_stop, msgsend_size, IPC_NOWAIT);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
TEST_F(ControlThreadTest /*unused*/, InstantiateRunControlMessages /*unused*/)
|
|
{
|
|
std::shared_ptr<InMemoryConfiguration> config = std::make_shared<InMemoryConfiguration>();
|
|
|
|
config->set_property("SignalSource.implementation", "File_Signal_Source");
|
|
std::string path = std::string(TEST_PATH);
|
|
std::string file = path + "signal_samples/GSoC_CTTC_capture_2012_07_26_4Msps_4ms.dat";
|
|
const char* file_name = file.c_str();
|
|
config->set_property("SignalSource.filename", file_name);
|
|
config->set_property("SignalSource.item_type", "gr_complex");
|
|
config->set_property("SignalSource.sampling_frequency", "4000000");
|
|
config->set_property("SignalSource.repeat", "true");
|
|
config->set_property("SignalConditioner.implementation", "Pass_Through");
|
|
config->set_property("SignalConditioner.item_type", "gr_complex");
|
|
config->set_property("Channels_1C.count", "2");
|
|
config->set_property("Channels_1E.count", "0");
|
|
config->set_property("Channels.in_acquisition", "1");
|
|
config->set_property("Acquisition_1C.implementation", "GPS_L1_CA_PCPS_Acquisition");
|
|
config->set_property("Acquisition_1C.threshold", "1");
|
|
config->set_property("Acquisition_1C.doppler_max", "5000");
|
|
config->set_property("Acquisition_1C.doppler_min", "-5000");
|
|
config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_Tracking");
|
|
config->set_property("Tracking_1C.item_type", "gr_complex");
|
|
config->set_property("TelemetryDecoder_1C.implementation", "GPS_L1_CA_Telemetry_Decoder");
|
|
config->set_property("TelemetryDecoder_1C.item_type", "gr_complex");
|
|
config->set_property("Observables.implementation", "Hybrid_Observables");
|
|
config->set_property("Observables.item_type", "gr_complex");
|
|
config->set_property("PVT.implementation", "RTKLIB_PVT");
|
|
config->set_property("PVT.item_type", "gr_complex");
|
|
config->set_property("GNSS-SDR.internal_fs_sps", "4000000");
|
|
|
|
std::shared_ptr<ControlThread> control_thread = std::make_shared<ControlThread>(config);
|
|
|
|
std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue = std::make_shared<Concurrent_Queue<pmt::pmt_t>>();
|
|
control_queue->push(pmt::make_any(channel_event_make(0, 0)));
|
|
control_queue->push(pmt::make_any(channel_event_make(1, 0)));
|
|
control_queue->push(pmt::make_any(command_event_make(200, 0)));
|
|
|
|
control_thread->set_control_queue(control_queue);
|
|
try
|
|
{
|
|
control_thread->run();
|
|
}
|
|
catch (const boost::exception& e)
|
|
{
|
|
std::cout << "Boost exception: " << boost::diagnostic_information(e);
|
|
}
|
|
catch (const std::exception& ex)
|
|
{
|
|
std::cout << "STD exception: " << ex.what();
|
|
}
|
|
|
|
unsigned int expected3 = 3;
|
|
unsigned int expected1 = 1;
|
|
EXPECT_EQ(expected3, control_thread->processed_control_messages());
|
|
EXPECT_EQ(expected1, control_thread->applied_actions());
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
|
}
|
|
|
|
|
|
TEST_F(ControlThreadTest /*unused*/, InstantiateRunControlMessages2 /*unused*/)
|
|
{
|
|
std::shared_ptr<InMemoryConfiguration> config = std::make_shared<InMemoryConfiguration>();
|
|
config->set_property("SignalSource.implementation", "File_Signal_Source");
|
|
std::string path = std::string(TEST_PATH);
|
|
std::string file = path + "signal_samples/GSoC_CTTC_capture_2012_07_26_4Msps_4ms.dat";
|
|
const char* file_name = file.c_str();
|
|
config->set_property("SignalSource.filename", file_name);
|
|
config->set_property("SignalSource.item_type", "gr_complex");
|
|
config->set_property("SignalSource.sampling_frequency", "4000000");
|
|
config->set_property("SignalSource.repeat", "true");
|
|
config->set_property("SignalConditioner.implementation", "Pass_Through");
|
|
config->set_property("SignalConditioner.item_type", "gr_complex");
|
|
config->set_property("Channels_1C.count", "4");
|
|
config->set_property("Channels_1E.count", "0");
|
|
config->set_property("Channels.in_acquisition", "1");
|
|
config->set_property("Acquisition_1C.implementation", "GPS_L1_CA_PCPS_Acquisition");
|
|
config->set_property("Acquisition_1C.threshold", "1");
|
|
config->set_property("Acquisition_1C.doppler_max", "5000");
|
|
config->set_property("Acquisition_1C.doppler_min", "-5000");
|
|
config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_Tracking");
|
|
config->set_property("Tracking_1C.item_type", "gr_complex");
|
|
config->set_property("TelemetryDecoder_1C.implementation", "GPS_L1_CA_Telemetry_Decoder");
|
|
config->set_property("TelemetryDecoder_1C.item_type", "gr_complex");
|
|
config->set_property("Observables.implementation", "Hybrid_Observables");
|
|
config->set_property("Observables.item_type", "gr_complex");
|
|
config->set_property("PVT.implementation", "RTKLIB_PVT");
|
|
config->set_property("PVT.item_type", "gr_complex");
|
|
config->set_property("GNSS-SDR.internal_fs_sps", "4000000");
|
|
|
|
auto control_thread2 = std::make_unique<ControlThread>(config);
|
|
std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue2 = std::make_shared<Concurrent_Queue<pmt::pmt_t>>();
|
|
|
|
control_queue2->push(pmt::make_any(channel_event_make(0, 0)));
|
|
control_queue2->push(pmt::make_any(channel_event_make(2, 0)));
|
|
control_queue2->push(pmt::make_any(channel_event_make(1, 0)));
|
|
control_queue2->push(pmt::make_any(channel_event_make(3, 0)));
|
|
control_queue2->push(pmt::make_any(command_event_make(200, 0)));
|
|
|
|
control_thread2->set_control_queue(control_queue2);
|
|
|
|
try
|
|
{
|
|
control_thread2->run();
|
|
}
|
|
catch (const boost::exception& e)
|
|
{
|
|
std::cout << "Boost exception: " << boost::diagnostic_information(e);
|
|
}
|
|
catch (const std::exception& ex)
|
|
{
|
|
std::cout << "STD exception: " << ex.what();
|
|
}
|
|
|
|
unsigned int expected5 = 5;
|
|
unsigned int expected1 = 1;
|
|
EXPECT_EQ(expected5, control_thread2->processed_control_messages());
|
|
EXPECT_EQ(expected1, control_thread2->applied_actions());
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
|
}
|
|
|
|
|
|
TEST_F(ControlThreadTest /*unused*/, StopReceiverProgrammatically /*unused*/)
|
|
{
|
|
std::shared_ptr<InMemoryConfiguration> config = std::make_shared<InMemoryConfiguration>();
|
|
config->set_property("SignalSource.implementation", "File_Signal_Source");
|
|
std::string path = std::string(TEST_PATH);
|
|
std::string file = path + "signal_samples/GSoC_CTTC_capture_2012_07_26_4Msps_4ms.dat";
|
|
const char* file_name = file.c_str();
|
|
config->set_property("SignalSource.filename", file_name);
|
|
config->set_property("SignalSource.item_type", "gr_complex");
|
|
config->set_property("SignalSource.sampling_frequency", "4000000");
|
|
config->set_property("SignalSource.repeat", "true");
|
|
config->set_property("SignalConditioner.implementation", "Pass_Through");
|
|
config->set_property("SignalConditioner.item_type", "gr_complex");
|
|
config->set_property("Channels_1C.count", "4");
|
|
config->set_property("Channels_1E.count", "0");
|
|
config->set_property("Channels.in_acquisition", "1");
|
|
config->set_property("Acquisition_1C.implementation", "GPS_L1_CA_PCPS_Acquisition");
|
|
config->set_property("Acquisition_1C.threshold", "1");
|
|
config->set_property("Acquisition_1C.doppler_max", "5000");
|
|
config->set_property("Acquisition_1C.doppler_min", "-5000");
|
|
config->set_property("Tracking_1C.implementation", "GPS_L1_CA_DLL_PLL_Tracking");
|
|
config->set_property("Tracking_1C.item_type", "gr_complex");
|
|
config->set_property("TelemetryDecoder_1C.implementation", "GPS_L1_CA_Telemetry_Decoder");
|
|
config->set_property("TelemetryDecoder_1C.item_type", "gr_complex");
|
|
config->set_property("Observables.implementation", "Hybrid_Observables");
|
|
config->set_property("Observables.item_type", "gr_complex");
|
|
config->set_property("PVT.implementation", "RTKLIB_PVT");
|
|
config->set_property("PVT.item_type", "gr_complex");
|
|
config->set_property("GNSS-SDR.internal_fs_sps", "4000000");
|
|
|
|
std::shared_ptr<ControlThread> control_thread = std::make_shared<ControlThread>(config);
|
|
std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> control_queue = std::make_shared<Concurrent_Queue<pmt::pmt_t>>();
|
|
control_thread->set_control_queue(control_queue);
|
|
|
|
std::thread stop_receiver_thread(stop_receiver);
|
|
|
|
try
|
|
{
|
|
control_thread->run();
|
|
}
|
|
catch (const boost::exception& e)
|
|
{
|
|
std::cout << "Boost exception: " << boost::diagnostic_information(e);
|
|
}
|
|
catch (const std::exception& ex)
|
|
{
|
|
std::cout << "STD exception: " << ex.what();
|
|
}
|
|
|
|
stop_receiver_thread.join();
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
|
}
|