aboutsummaryrefslogtreecommitdiffstats
path: root/tests/types
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-21 21:30:23 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-21 21:30:23 +0100
commit6058220d2a05bada0a656809f9011fc86a1e22a5 (patch)
tree12cd337e06876c26f5b156051ff01258e3bd6287 /tests/types
parent58db60c68ebf137ae2a886ec3bd1188431c84721 (diff)
types: Add a simple testcase for basic types and fix the LLC code
* Make append_data, remaining_space and fits_in_current.. work on m_length and not the index. This ways things can't overflow. * The current API consumer was moving the m_index so it should have worked okay.
Diffstat (limited to 'tests/types')
-rw-r--r--tests/types/TypesTest.cpp93
-rw-r--r--tests/types/TypesTest.err0
-rw-r--r--tests/types/TypesTest.ok1
3 files changed, 94 insertions, 0 deletions
diff --git a/tests/types/TypesTest.cpp b/tests/types/TypesTest.cpp
new file mode 100644
index 00000000..235ba974
--- /dev/null
+++ b/tests/types/TypesTest.cpp
@@ -0,0 +1,93 @@
+/*
+ * TypesTest.cpp Test the primitive data types
+ *
+ * Copyright (C) 2013 by Holger Hans Peter Freyther
+ *
+ * All Rights Reserved
+ *
+ * This program 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.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+#include "bts.h"
+#include "tbf.h"
+#include "gprs_debug.h"
+
+extern "C" {
+#include <osmocom/core/application.h>
+#include <osmocom/core/msgb.h>
+#include <osmocom/core/talloc.h>
+#include <osmocom/core/utils.h>
+}
+
+void *tall_pcu_ctx;
+int16_t spoof_mnc = 0, spoof_mcc = 0;
+
+static void test_llc(void)
+{
+ {
+ uint8_t data[LLC_MAX_LEN] = {1, 2, 3, 4, };
+ uint8_t out;
+ gprs_llc llc;
+ llc.init();
+
+ OSMO_ASSERT(llc.chunk_size() == 0);
+ OSMO_ASSERT(llc.remaining_space() == LLC_MAX_LEN);
+ OSMO_ASSERT(llc.frame_length() == 0);
+
+ llc.put_frame(data, 2);
+ OSMO_ASSERT(llc.remaining_space() == LLC_MAX_LEN - 2);
+ OSMO_ASSERT(llc.frame_length() == 2);
+ OSMO_ASSERT(llc.chunk_size() == 2);
+ OSMO_ASSERT(llc.frame[0] == 1);
+ OSMO_ASSERT(llc.frame[1] == 2);
+
+ llc.append_frame(&data[3], 1);
+ OSMO_ASSERT(llc.remaining_space() == LLC_MAX_LEN - 3);
+ OSMO_ASSERT(llc.frame_length() == 3);
+ OSMO_ASSERT(llc.chunk_size() == 3);
+
+ /* consume two bytes */
+ llc.consume(&out, 1);
+ OSMO_ASSERT(llc.remaining_space() == LLC_MAX_LEN - 3);
+ OSMO_ASSERT(llc.frame_length() == 3);
+ OSMO_ASSERT(llc.chunk_size() == 2);
+
+ /* check that the bytes are as we expected */
+ OSMO_ASSERT(llc.frame[0] == 1);
+ OSMO_ASSERT(llc.frame[1] == 2);
+ OSMO_ASSERT(llc.frame[2] == 4);
+
+ /* now fill the frame */
+ llc.append_frame(data, llc.remaining_space() - 1);
+ OSMO_ASSERT(llc.fits_in_current_frame(1));
+ OSMO_ASSERT(!llc.fits_in_current_frame(2));
+ }
+}
+
+int main(int argc, char **argv)
+{
+ printf("Making some basic type testing.\n");
+ test_llc();
+ return EXIT_SUCCESS;
+}
+
+/*
+ * stubs that should not be reached
+ */
+extern "C" {
+void l1if_pdch_req() { abort(); }
+void l1if_connect_pdch() { abort(); }
+void l1if_close_pdch() { abort(); }
+void l1if_open_pdch() { abort(); }
+}
diff --git a/tests/types/TypesTest.err b/tests/types/TypesTest.err
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/types/TypesTest.err
diff --git a/tests/types/TypesTest.ok b/tests/types/TypesTest.ok
new file mode 100644
index 00000000..9d0cbfbb
--- /dev/null
+++ b/tests/types/TypesTest.ok
@@ -0,0 +1 @@
+Making some basic type testing.