aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tbf/TbfTest.cpp
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-05-22 17:48:04 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-05-28 13:58:23 +0200
commit9200ce60196a289968144582f1acfac25e17eed5 (patch)
tree34b047174ff64bf5365fcb96ac531d39adccfc17 /tests/tbf/TbfTest.cpp
parentddfc0d57632c5f57aeb123f6506d3923fcec69dc (diff)
tbf: Store the timing advance (TA) value in the GprsMs object
The TA value rather relates to an MS and not to a single TBF. So all TBFs share the same TA value. Currently the TA value is stored per TBF and eventually copied from an old TBF to a new one. It is in general only passed with an RACH request when the TLLI and thus the MS is not yet known. This commit adds a TA member to the GprsMs class and uses that one when the TBF is associated to an MS object. Since the TBF is not always associated with an MS object (after RACH or when it has been replaced by another TBF), the TA value is still stored in each TBF and that value is used as long as no MS object is being associated. Sponsored-by: On-Waves ehf
Diffstat (limited to 'tests/tbf/TbfTest.cpp')
-rw-r--r--tests/tbf/TbfTest.cpp29
1 files changed, 20 insertions, 9 deletions
diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp
index e25f3447..2184b324 100644
--- a/tests/tbf/TbfTest.cpp
+++ b/tests/tbf/TbfTest.cpp
@@ -78,8 +78,7 @@ static void test_tbf_tlli_update()
0, 0, 0);
dl_tbf->update_tlli(0x2342);
dl_tbf->update_ms(0x2342, GPRS_RLCMAC_DL_TBF);
- dl_tbf->ta = 4;
- the_bts.timing_advance()->remember(0x2342, dl_tbf->ta);
+ dl_tbf->set_ta(4);
gprs_rlcmac_tbf *ul_tbf = tbf_alloc_ul_tbf(the_bts.bts_data(),
dl_tbf, 0,
@@ -114,7 +113,17 @@ static void test_tbf_tlli_update()
ms_new = the_bts.ms_by_tlli(0x2342);
OSMO_ASSERT(ms_new == NULL);
- OSMO_ASSERT(the_bts.timing_advance()->recall(0x4232) == 4);
+ ms_new = the_bts.ms_by_tlli(0x4232);
+ OSMO_ASSERT(ms_new != NULL);
+ OSMO_ASSERT(ms_new->ta() == 4);
+
+ OSMO_ASSERT(ul_tbf->ta() == 4);
+ OSMO_ASSERT(dl_tbf->ta() == 4);
+
+ ul_tbf->set_ta(6);
+
+ OSMO_ASSERT(ul_tbf->ta() == 6);
+ OSMO_ASSERT(dl_tbf->ta() == 6);
}
static uint8_t llc_data[200];
@@ -439,9 +448,9 @@ static void test_tbf_single_phase()
OSMO_ASSERT(ul_tbf != NULL);
fprintf(stderr, "Got '%s', TA=%d\n",
- ul_tbf->name(), ul_tbf->ta);
+ ul_tbf->name(), ul_tbf->ta());
- OSMO_ASSERT(ul_tbf->ta == qta / 4);
+ OSMO_ASSERT(ul_tbf->ta() == qta / 4);
uint8_t data_msg[23] = {
0x00, /* GPRS_RLCMAC_DATA_BLOCK << 6 */
@@ -455,7 +464,8 @@ static void test_tbf_single_phase()
ms = the_bts.ms_by_tlli(0xf1223344);
OSMO_ASSERT(ms != NULL);
- fprintf(stderr, "Got MS: TLLI = 0x%08x\n", ms->tlli());
+ fprintf(stderr, "Got MS: TLLI = 0x%08x, TA = %d\n", ms->tlli(), ms->ta());
+ OSMO_ASSERT(ms->ta() == qta/4);
printf("=== end %s ===\n", __func__);
}
@@ -515,9 +525,9 @@ static void test_tbf_two_phase()
OSMO_ASSERT(ul_tbf != NULL);
fprintf(stderr, "Got '%s', TA=%d\n",
- ul_tbf->name(), ul_tbf->ta);
+ ul_tbf->name(), ul_tbf->ta());
- OSMO_ASSERT(ul_tbf->ta == qta / 4);
+ OSMO_ASSERT(ul_tbf->ta() == qta / 4);
/* send packet uplink assignment */
rts_fn += 52;
@@ -535,7 +545,8 @@ static void test_tbf_two_phase()
ms = the_bts.ms_by_tlli(0xf1223344);
OSMO_ASSERT(ms != NULL);
- fprintf(stderr, "Got MS: TLLI = 0x%08x\n", ms->tlli());
+ fprintf(stderr, "Got MS: TLLI = 0x%08x, TA = %d\n", ms->tlli(), ms->ta());
+ OSMO_ASSERT(ms->ta() == qta/4);
printf("=== end %s ===\n", __func__);
}