aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-03-12 12:53:27 +0100
committerMax <msuraev@sysmocom.de>2019-03-19 15:05:51 +0000
commitf4d3973688a0d07cadb9e1f3529712b5e50624ea (patch)
treeca2c6d33756aba807504c275d002fc664e1b167f /tests
parent0fb91b736c3a3219fb018b4841f18ef164519f73 (diff)
MS store: move test helper to unit test
It's confusing to have test-specific helper with the same name as tested function directly inside the GprsMsStorage class. Let's convert it into static function and move to the unit test. Change-Id: Ia2a5b90779051af894fe15d957c1d26f0a142f33
Diffstat (limited to 'tests')
-rw-r--r--tests/ms/MsTest.cpp20
1 files changed, 18 insertions, 2 deletions
diff --git a/tests/ms/MsTest.cpp b/tests/ms/MsTest.cpp
index 728daf6e..2b0bc0ff 100644
--- a/tests/ms/MsTest.cpp
+++ b/tests/ms/MsTest.cpp
@@ -337,6 +337,22 @@ static void test_ms_change_tlli()
printf("=== end %s ===\n", __func__);
}
+static GprsMs *prepare_ms(GprsMsStorage *st, uint32_t tlli, enum gprs_rlcmac_tbf_direction dir)
+{
+ GprsMs *ms = st->get_ms(tlli);
+ if (ms)
+ return ms;
+
+ ms = st->create_ms();
+
+ if (dir == GPRS_RLCMAC_UL_TBF)
+ ms->set_tlli(tlli);
+ else
+ ms->confirm_tlli(tlli);
+
+ return ms;
+}
+
static void test_ms_storage()
{
uint32_t tlli = 0xffeeddbb;
@@ -355,7 +371,7 @@ static void test_ms_storage()
ms = store.get_ms(tlli + 0);
OSMO_ASSERT(ms == NULL);
- ms = store.create_ms(tlli + 0, GPRS_RLCMAC_UL_TBF);
+ ms = prepare_ms(&store, tlli + 0, GPRS_RLCMAC_UL_TBF);
OSMO_ASSERT(ms != NULL);
OSMO_ASSERT(ms->tlli() == tlli + 0);
ms->set_imsi(imsi1);
@@ -371,7 +387,7 @@ static void test_ms_storage()
ms_tmp = store.get_ms(0, 0, imsi2);
OSMO_ASSERT(ms_tmp == NULL);
- ms = store.create_ms(tlli + 1, GPRS_RLCMAC_UL_TBF);
+ ms = prepare_ms(&store, tlli + 1, GPRS_RLCMAC_UL_TBF);
OSMO_ASSERT(ms != NULL);
OSMO_ASSERT(ms->tlli() == tlli + 1);
ms->set_imsi(imsi2);