srsLTE/srsenb/test/rrc/rrc_nr_test.cc

101 lines
2.6 KiB
C++
Raw Normal View History

/**
2020-06-03 12:20:10 -07:00
*
* \section COPYRIGHT
2020-06-03 12:20:10 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2020-06-03 12:20:10 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2020-06-03 12:20:10 -07:00
*
*/
#include "srsenb/hdr/stack/rrc/rrc_nr.h"
#include "srsenb/test/common/dummy_classes_common.h"
#include "srsenb/test/common/dummy_classes_nr.h"
2021-03-19 03:45:56 -07:00
#include "srsran/common/test_common.h"
2020-06-03 12:20:10 -07:00
#include <iostream>
using namespace asn1::rrc_nr;
namespace srsenb {
int test_cell_cfg(const srsenb::sched_interface::cell_cfg_t& cellcfg)
{
// SIB1 must exist and have period 16rf
TESTASSERT(cellcfg.sibs[0].len > 0);
TESTASSERT(cellcfg.sibs[0].period_rf == 16);
TESTASSERT(cellcfg.si_window_ms > 0);
2021-03-19 03:45:56 -07:00
return SRSRAN_SUCCESS;
2020-06-03 12:20:10 -07:00
}
/*
* Test 1 - Test default SIB generation
* Description: Check whether the SIBs were set correctly
*/
int test_sib_generation()
{
srsran::task_scheduler task_sched;
2020-06-03 12:20:10 -07:00
mac_dummy mac_obj;
rlc_dummy rlc_obj;
pdcp_dummy pdcp_obj;
rrc_nr rrc_obj(&task_sched);
2020-06-03 12:20:10 -07:00
// set cfg
rrc_nr_cfg_t default_cfg = {};
rrc_nr_cfg_t rrc_cfg = rrc_obj.update_default_cfg(default_cfg);
auto& sched_elem = rrc_cfg.sib1.si_sched_info.sched_info_list[0];
TESTASSERT(rrc_obj.init(rrc_cfg, nullptr, &mac_obj, &rlc_obj, &pdcp_obj, nullptr, nullptr, nullptr) ==
SRSRAN_SUCCESS);
2020-06-03 12:20:10 -07:00
2021-03-19 03:45:56 -07:00
TESTASSERT(test_cell_cfg(mac_obj.cellcfgobj) == SRSRAN_SUCCESS);
2020-06-03 12:20:10 -07:00
// TEMP tests
2020-06-03 12:24:36 -07:00
TESTASSERT(mac_obj.cellcfgobj.sibs[1].len > 0);
TESTASSERT(mac_obj.cellcfgobj.sibs[1].period_rf == sched_elem.si_periodicity.to_number());
2020-06-03 12:20:10 -07:00
for (int i = 2; i < 16; ++i) {
2020-06-03 12:24:36 -07:00
TESTASSERT(mac_obj.cellcfgobj.sibs[i].len == 0);
2020-06-03 12:20:10 -07:00
}
2020-06-03 12:24:36 -07:00
TESTASSERT(mac_obj.cellcfgobj.cell.nof_prb == 25);
2020-06-03 12:20:10 -07:00
2021-03-19 03:45:56 -07:00
return SRSRAN_SUCCESS;
2020-06-03 12:20:10 -07:00
}
int test_rrc_setup()
{
srsran::task_scheduler task_sched;
2020-06-03 12:20:10 -07:00
mac_dummy mac_obj;
rlc_dummy rlc_obj;
pdcp_dummy pdcp_obj;
rrc_nr rrc_obj(&task_sched);
2020-06-03 12:20:10 -07:00
// set cfg
rrc_nr_cfg_t default_cfg = {};
rrc_nr_cfg_t rrc_cfg = rrc_obj.update_default_cfg(default_cfg);
TESTASSERT(rrc_obj.init(rrc_cfg, nullptr, &mac_obj, &rlc_obj, &pdcp_obj, nullptr, nullptr, nullptr) ==
SRSRAN_SUCCESS);
2020-06-03 12:20:10 -07:00
for (uint32_t n = 0; n < 2; ++n) {
uint32_t timeout = 5500;
for (uint32_t i = 0; i < timeout and rlc_obj.last_sdu == nullptr; ++i) {
task_sched.tic();
2020-06-03 12:20:10 -07:00
}
// TODO: trigger proper RRC Setup procedure (not timer based)
// TESTASSERT(rlc_obj.last_sdu != nullptr);
2020-06-03 12:20:10 -07:00
}
2021-03-19 03:45:56 -07:00
return SRSRAN_SUCCESS;
2020-06-03 12:20:10 -07:00
}
} // namespace srsenb
int main()
{
2021-03-19 03:45:56 -07:00
TESTASSERT(srsenb::test_sib_generation() == SRSRAN_SUCCESS);
TESTASSERT(srsenb::test_rrc_setup() == SRSRAN_SUCCESS);
2020-06-03 12:20:10 -07:00
return SRSRAN_SUCCESS;
}