mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-07 07:23:14 +00:00
108 lines
2.8 KiB
C
108 lines
2.8 KiB
C
/*
|
|
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
|
|
*
|
|
* This file is part of Open5GS.
|
|
*
|
|
* 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 General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "test-app.h"
|
|
|
|
abts_suite *test_mo_idle(abts_suite *suite);
|
|
abts_suite *test_mt_idle(abts_suite *suite);
|
|
abts_suite *test_mo_active(abts_suite *suite);
|
|
abts_suite *test_mt_active(abts_suite *suite);
|
|
abts_suite *test_mo_sms(abts_suite *suite);
|
|
abts_suite *test_mt_sms(abts_suite *suite);
|
|
abts_suite *test_crash(abts_suite *suite);
|
|
|
|
const struct testlist {
|
|
abts_suite *(*func)(abts_suite *suite);
|
|
} alltests[] = {
|
|
{test_mo_idle},
|
|
{test_mt_idle},
|
|
{test_mo_active},
|
|
{test_mt_active},
|
|
{test_mo_sms},
|
|
{test_mt_sms},
|
|
{test_crash},
|
|
{NULL},
|
|
};
|
|
|
|
static ogs_thread_t *pcrf_thread = NULL;
|
|
static ogs_thread_t *pgw_thread = NULL;
|
|
static ogs_thread_t *sgw_thread = NULL;
|
|
static ogs_thread_t *hss_thread = NULL;
|
|
ogs_socknode_t *sgsap = NULL;
|
|
|
|
static void terminate(void)
|
|
{
|
|
ogs_msleep(50);
|
|
|
|
test_child_terminate();
|
|
|
|
ogs_info("MME try to terminate");
|
|
mme_terminate();
|
|
|
|
testvlr_sgsap_close(sgsap);
|
|
|
|
ogs_sctp_final();
|
|
test_app_final();
|
|
ogs_info("MME terminate...done");
|
|
|
|
if (hss_thread) ogs_thread_destroy(hss_thread);
|
|
if (sgw_thread) ogs_thread_destroy(sgw_thread);
|
|
if (pgw_thread) ogs_thread_destroy(pgw_thread);
|
|
if (pcrf_thread) ogs_thread_destroy(pcrf_thread);
|
|
|
|
ogs_app_terminate();
|
|
}
|
|
|
|
static void initialize(const char *const argv[])
|
|
{
|
|
int rv;
|
|
|
|
rv = ogs_app_initialize(NULL, argv);
|
|
ogs_assert(rv == OGS_OK);
|
|
|
|
pcrf_thread = test_child_create("pcrf", argv);
|
|
pgw_thread = test_child_create("pgw", argv);
|
|
sgw_thread = test_child_create("sgw", argv);
|
|
hss_thread = test_child_create("hss", argv);
|
|
|
|
test_app_init();
|
|
ogs_sctp_init(ogs_config()->usrsctp.udp_port);
|
|
|
|
sgsap = testvlr_sgsap_server("127.0.0.2");
|
|
ogs_assert(sgsap);
|
|
|
|
rv = mme_initialize();
|
|
ogs_assert(rv == OGS_OK);
|
|
ogs_info("MME initialize...done");
|
|
}
|
|
|
|
int main(int argc, const char *const argv[])
|
|
{
|
|
int i;
|
|
abts_suite *suite = NULL;
|
|
|
|
atexit(terminate);
|
|
test_app_run(argc, argv, "csfb.yaml", initialize);
|
|
|
|
for (i = 0; alltests[i].func; i++)
|
|
suite = alltests[i].func(suite);
|
|
|
|
return abts_report(suite);
|
|
}
|