/** * * \section COPYRIGHT * * Copyright 2013-2021 Software Radio Systems Limited * * 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. * */ #include "sched_nr_common_test.h" #include "srsenb/hdr/stack/mac/nr/sched_nr_cfg.h" #include "srsran/support/srsran_test.h" namespace srsenb { void test_dl_pdcch_consistency(srsran::const_span 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 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); } } } void test_ssb_scheduled_grant( const srsran::slot_point& sl_point, const sched_nr_interface::cell_cfg_t& cell_cfg, const srsran::bounded_vector& ssb_list) { /* * Verify that, with correct SSB periodicity, dl_res has: * 1) SSB grant * 2) 4 LSBs of SFN in packed MIB message are correct * 3) SSB index is 0 */ if (sl_point.to_uint() % (cell_cfg.ssb.periodicity_ms * (uint32_t)sl_point.nof_slots_per_subframe()) == 0) { TESTASSERT(ssb_list.size() == 1); auto& ssb_item = ssb_list.back(); TESTASSERT(ssb_item.pbch_msg.sfn_4lsb == ((uint8_t)sl_point.sfn() & 0b1111)); bool expected_hrf = sl_point.slot_idx() % SRSRAN_NSLOTS_PER_FRAME_NR(srsran_subcarrier_spacing_15kHz) >= SRSRAN_NSLOTS_PER_FRAME_NR(srsran_subcarrier_spacing_15kHz) / 2; TESTASSERT(ssb_item.pbch_msg.hrf == expected_hrf); TESTASSERT(ssb_item.pbch_msg.ssb_idx == 0); } // Verify that, outside SSB periodicity, there is NO SSB grant else { TESTASSERT(ssb_list.size() == 0); } } } // namespace srsenb