aboutsummaryrefslogtreecommitdiffstats
path: root/tests/smpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/smpp')
-rw-r--r--tests/smpp/Makefile.am40
-rw-r--r--tests/smpp/smpp_test.c73
-rw-r--r--tests/smpp/smpp_test.err2
-rw-r--r--tests/smpp/smpp_test.ok1
4 files changed, 0 insertions, 116 deletions
diff --git a/tests/smpp/Makefile.am b/tests/smpp/Makefile.am
deleted file mode 100644
index 508270753..000000000
--- a/tests/smpp/Makefile.am
+++ /dev/null
@@ -1,40 +0,0 @@
-AM_CPPFLAGS = \
- $(all_includes) \
- -I$(top_srcdir)/include \
- -I$(top_srcdir)/src/libmsc \
- $(NULL)
-
-AM_CFLAGS = \
- -Wall \
- -ggdb3 \
- $(LIBOSMOCORE_CFLAGS) \
- $(LIBOSMOGSM_CFLAGS) \
- $(LIBOSMOSCCP_CFLAGS) \
- $(LIBOSMOABIS_CFLAGS) \
- $(COVERAGE_CFLAGS) \
- $(LIBSMPP34_CFLAGS) \
- $(NULL)
-
-AM_LDFLAGS = \
- $(COVERAGE_LDFLAGS) \
- $(NULL)
-
-EXTRA_DIST = \
- smpp_test.ok \
- smpp_test.err \
- $(NULL)
-
-noinst_PROGRAMS = \
- smpp_test \
- $(NULL)
-
-smpp_test_SOURCES = \
- smpp_test.c \
- $(top_builddir)/src/libmsc/smpp_utils.c \
- $(NULL)
-
-smpp_test_LDADD = \
- $(top_builddir)/src/libcommon/libcommon.a \
- $(LIBOSMOCORE_LIBS) \
- $(LIBOSMOGSM_LIBS) \
- $(NULL)
diff --git a/tests/smpp/smpp_test.c b/tests/smpp/smpp_test.c
deleted file mode 100644
index 62fa9d2e9..000000000
--- a/tests/smpp/smpp_test.c
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * (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 Affero 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 <stdlib.h>
-#include <stdio.h>
-
-#include <openbsc/debug.h>
-
-#include <osmocom/core/application.h>
-#include <osmocom/core/backtrace.h>
-
-#include "smpp_smsc.h"
-
-struct coding_test {
- uint8_t dcs;
- uint8_t coding;
- int mode;
- int res;
-};
-
-static struct coding_test codecs[] = {
- { .dcs = 0xf6 , .coding = 0x02, .mode = MODE_8BIT, .res = 0 },
- { .dcs = 0xf2 , .coding = 0x01, .mode = MODE_7BIT, .res = 0 },
- { .dcs = 0x02 , .coding = 0x01, .mode = MODE_7BIT, .res = 0 },
- { .dcs = 0x06 , .coding = 0x02, .mode = MODE_8BIT, .res = 0 },
- { .dcs = 0x0A , .coding = 0x08, .mode = MODE_8BIT, .res = 0 },
- { .dcs = 0x0E , .coding = 0xFF, .mode = 0xFF, .res = -1 },
- { .dcs = 0xE0 , .coding = 0xFF, .mode = 0xFF, .res = -1 },
-};
-
-static void test_coding_scheme(void)
-{
- int i;
- printf("Testing coding scheme support\n");
-
- for (i = 0; i < ARRAY_SIZE(codecs); ++i) {
- uint8_t coding;
- int mode, res;
-
- res = smpp_determine_scheme(codecs[i].dcs, &coding, &mode);
- OSMO_ASSERT(res == codecs[i].res);
- if (res != -1) {
- OSMO_ASSERT(mode == codecs[i].mode);
- OSMO_ASSERT(coding == codecs[i].coding);
- }
- }
-}
-
-int main(int argc, char **argv)
-{
- osmo_init_logging(&log_info);
- log_set_use_color(osmo_stderr_target, 0);
- log_set_print_filename(osmo_stderr_target, 0);
-
- test_coding_scheme();
- return EXIT_SUCCESS;
-}
diff --git a/tests/smpp/smpp_test.err b/tests/smpp/smpp_test.err
deleted file mode 100644
index ec966ba47..000000000
--- a/tests/smpp/smpp_test.err
+++ /dev/null
@@ -1,2 +0,0 @@
-SMPP MO Unknown Data Coding 0x0e
-SMPP MO Unknown Data Coding 0xe0
diff --git a/tests/smpp/smpp_test.ok b/tests/smpp/smpp_test.ok
deleted file mode 100644
index fd44804d1..000000000
--- a/tests/smpp/smpp_test.ok
+++ /dev/null
@@ -1 +0,0 @@
-Testing coding scheme support