mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.9 KiB
C++
53 lines
1.9 KiB
C++
/**
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsRAN 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 Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
#include "sched_nr_common_test.h"
|
|
#include "srsran/support/srsran_test.h"
|
|
|
|
namespace srsenb {
|
|
|
|
void test_dl_pdcch_consistency(srsran::const_span<sched_nr_impl::pdcch_dl_t> dl_pdcchs)
|
|
{
|
|
for (const auto& pdcch : dl_pdcchs) {
|
|
if (pdcch.dci.ctx.rnti_type == srsran_rnti_type_ra) {
|
|
TESTASSERT_EQ(pdcch.dci.ctx.format, srsran_dci_format_nr_1_0);
|
|
TESTASSERT_EQ(pdcch.dci.ctx.ss_type, srsran_search_space_type_common_1);
|
|
TESTASSERT(pdcch.dci.ctx.location.L > 0);
|
|
} else if (pdcch.dci.ctx.rnti_type == srsran_rnti_type_c) {
|
|
TESTASSERT(pdcch.dci.ctx.format == srsran_dci_format_nr_1_0 or pdcch.dci.ctx.format == srsran_dci_format_nr_1_1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void test_pdsch_consistency(srsran::const_span<mac_interface_phy_nr::pdsch_t> pdschs)
|
|
{
|
|
for (const mac_interface_phy_nr::pdsch_t& pdsch : pdschs) {
|
|
TESTASSERT(pdsch.sch.grant.nof_layers > 0);
|
|
if (pdsch.sch.grant.rnti_type == srsran_rnti_type_c) {
|
|
TESTASSERT(pdsch.sch.grant.tb[0].softbuffer.tx != nullptr);
|
|
TESTASSERT(pdsch.sch.grant.tb[0].softbuffer.tx->buffer_b != nullptr);
|
|
TESTASSERT(pdsch.sch.grant.tb[0].softbuffer.tx->max_cb > 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace srsenb
|