| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include "test-common.h" |
| |
|
| | static void test1_func(abts_case *tc, void *data) |
| | { |
| | int rv; |
| | ogs_socknode_t *ngap; |
| | ogs_socknode_t *gtpu; |
| | ogs_pkbuf_t *gmmbuf; |
| | ogs_pkbuf_t *gsmbuf; |
| | ogs_pkbuf_t *nasbuf; |
| | ogs_pkbuf_t *sendbuf; |
| | ogs_pkbuf_t *recvbuf; |
| | ogs_ngap_message_t message; |
| | int i; |
| |
|
| | ogs_nas_5gs_mobile_identity_suci_t mobile_identity_suci; |
| | test_ue_t *test_ue = NULL; |
| | test_sess_t *sess = NULL; |
| | test_bearer_t *qos_flow = NULL; |
| |
|
| | bson_t *doc = NULL; |
| |
|
| | const char *scheme_output = |
| | "b2e92f83 6055a255 837debf8 50b52899" |
| | "7ce0201c b82adfe4 be1f587d 07d8457d" |
| | "7ee4435e 1978dc89 7bff2412 9c"; |
| |
|
| | |
| | memset(&mobile_identity_suci, 0, sizeof(mobile_identity_suci)); |
| |
|
| | mobile_identity_suci.h.supi_format = OGS_NAS_5GS_SUPI_FORMAT_IMSI; |
| | mobile_identity_suci.h.type = OGS_NAS_5GS_MOBILE_IDENTITY_SUCI; |
| | mobile_identity_suci.routing_indicator1 = 0; |
| | mobile_identity_suci.routing_indicator2 = 0xf; |
| | mobile_identity_suci.routing_indicator3 = 0xf; |
| | mobile_identity_suci.routing_indicator4 = 0xf; |
| | mobile_identity_suci.protection_scheme_id = |
| | OGS_PROTECTION_SCHEME_PROFILE_A; |
| | mobile_identity_suci.home_network_pki_value = 1; |
| |
|
| | test_ue = test_ue_add_by_suci(&mobile_identity_suci, scheme_output); |
| | ogs_assert(test_ue); |
| |
|
| | test_ue->nr_cgi.cell_id = 0x40001; |
| |
|
| | test_ue->nas.registration.tsc = 0; |
| | test_ue->nas.registration.ksi = OGS_NAS_KSI_NO_KEY_IS_AVAILABLE; |
| | test_ue->nas.registration.follow_on_request = 1; |
| | test_ue->nas.registration.value = OGS_NAS_5GS_REGISTRATION_TYPE_INITIAL; |
| |
|
| | test_ue->k_string = "465b5ce8b199b49faa5f0a2ee238a6bc"; |
| | test_ue->opc_string = "e8ed289deba952e4283b54e88e6183ca"; |
| |
|
| | |
| | ngap = testngap_client(AF_INET); |
| | ABTS_PTR_NOTNULL(tc, ngap); |
| |
|
| | |
| | gtpu = test_gtpu_server(1, AF_INET); |
| | ABTS_PTR_NOTNULL(tc, gtpu); |
| |
|
| | |
| | sendbuf = testngap_build_ng_setup_request(0x4000, 22); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | doc = test_db_new_simple(test_ue); |
| | ABTS_PTR_NOTNULL(tc, doc); |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_insert_ue(test_ue, doc)); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| |
|
| | test_ue->registration_request_param.gmm_capability = 1; |
| | test_ue->registration_request_param.s1_ue_network_capability = 1; |
| | test_ue->registration_request_param.requested_nssai = 1; |
| | test_ue->registration_request_param.last_visited_registered_tai = 1; |
| | test_ue->registration_request_param.ue_usage_setting = 1; |
| | nasbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, nasbuf); |
| |
|
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, true); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_authentication_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_security_mode_complete(test_ue, nasbuf); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_InitialContextSetup, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_radio_capability_info_indication(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | sendbuf = testngap_build_initial_context_setup_response(test_ue, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_de_registration_request(test_ue, 1, true, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | ogs_msleep(300); |
| |
|
| | |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_remove_ue(test_ue)); |
| |
|
| | |
| | testgnb_gtpu_close(gtpu); |
| |
|
| | |
| | testgnb_ngap_close(ngap); |
| |
|
| | |
| | test_ue_remove(test_ue); |
| | } |
| |
|
| | static void test2_func(abts_case *tc, void *data) |
| | { |
| | int rv; |
| | ogs_socknode_t *ngap; |
| | ogs_socknode_t *gtpu; |
| | ogs_pkbuf_t *gmmbuf; |
| | ogs_pkbuf_t *gsmbuf; |
| | ogs_pkbuf_t *nasbuf; |
| | ogs_pkbuf_t *sendbuf; |
| | ogs_pkbuf_t *recvbuf; |
| | ogs_ngap_message_t message; |
| | int i; |
| |
|
| | ogs_nas_5gs_mobile_identity_suci_t mobile_identity_suci; |
| | test_ue_t *test_ue = NULL; |
| | test_sess_t *sess = NULL; |
| | test_bearer_t *qos_flow = NULL; |
| |
|
| | bson_t *doc = NULL; |
| |
|
| | const char *scheme_output = |
| | "b2e92f83 6055a255 837debf8 50b52899" |
| | "7ce0201c b82adfe4 be1f587d 07d8457d" |
| | "7ee4435e 1978dc89 7bff2412 9c"; |
| |
|
| | |
| | memset(&mobile_identity_suci, 0, sizeof(mobile_identity_suci)); |
| |
|
| | mobile_identity_suci.h.supi_format = OGS_NAS_5GS_SUPI_FORMAT_IMSI; |
| | mobile_identity_suci.h.type = OGS_NAS_5GS_MOBILE_IDENTITY_SUCI; |
| | mobile_identity_suci.routing_indicator1 = 0; |
| | mobile_identity_suci.routing_indicator2 = 0xf; |
| | mobile_identity_suci.routing_indicator3 = 0xf; |
| | mobile_identity_suci.routing_indicator4 = 0xf; |
| | mobile_identity_suci.protection_scheme_id = |
| | OGS_PROTECTION_SCHEME_PROFILE_A; |
| | mobile_identity_suci.home_network_pki_value = 1; |
| |
|
| | test_ue = test_ue_add_by_suci(&mobile_identity_suci, scheme_output); |
| | ogs_assert(test_ue); |
| |
|
| | test_ue->nr_cgi.cell_id = 0x40001; |
| |
|
| | test_ue->nas.registration.tsc = 0; |
| | test_ue->nas.registration.ksi = OGS_NAS_KSI_NO_KEY_IS_AVAILABLE; |
| | test_ue->nas.registration.follow_on_request = 1; |
| | test_ue->nas.registration.value = OGS_NAS_5GS_REGISTRATION_TYPE_INITIAL; |
| |
|
| | test_ue->k_string = "465b5ce8b199b49faa5f0a2ee238a6bc"; |
| | test_ue->opc_string = "e8ed289deba952e4283b54e88e6183ca"; |
| |
|
| | |
| | ngap = testngap_client(AF_INET); |
| | ABTS_PTR_NOTNULL(tc, ngap); |
| |
|
| | |
| | gtpu = test_gtpu_server(1, AF_INET); |
| | ABTS_PTR_NOTNULL(tc, gtpu); |
| |
|
| | |
| | sendbuf = testngap_build_ng_setup_request(0x4000, 22); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | doc = test_db_new_simple(test_ue); |
| | ABTS_PTR_NOTNULL(tc, doc); |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_insert_ue(test_ue, doc)); |
| |
|
| | |
| | test_ue->registration_request_param.guti = 1; |
| | gmmbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| |
|
| | test_ue->registration_request_param.gmm_capability = 1; |
| | test_ue->registration_request_param.s1_ue_network_capability = 1; |
| | test_ue->registration_request_param.requested_nssai = 1; |
| | test_ue->registration_request_param.last_visited_registered_tai = 1; |
| | test_ue->registration_request_param.ue_usage_setting = 1; |
| | nasbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, nasbuf); |
| |
|
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, true); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_identity_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_authentication_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_security_mode_complete(test_ue, nasbuf); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_InitialContextSetup, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_radio_capability_info_indication(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | sendbuf = testngap_build_initial_context_setup_response(test_ue, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_de_registration_request(test_ue, 1, true, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | ogs_msleep(300); |
| |
|
| | |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_remove_ue(test_ue)); |
| |
|
| | |
| | testgnb_gtpu_close(gtpu); |
| |
|
| | |
| | testgnb_ngap_close(ngap); |
| |
|
| | |
| | test_ue_remove(test_ue); |
| | } |
| |
|
| | static void test3_func(abts_case *tc, void *data) |
| | { |
| | int rv; |
| | ogs_socknode_t *ngap; |
| | ogs_socknode_t *gtpu; |
| | ogs_pkbuf_t *gmmbuf; |
| | ogs_pkbuf_t *gsmbuf; |
| | ogs_pkbuf_t *nasbuf; |
| | ogs_pkbuf_t *sendbuf; |
| | ogs_pkbuf_t *recvbuf; |
| | ogs_ngap_message_t message; |
| | int i; |
| |
|
| | ogs_nas_5gs_mobile_identity_suci_t mobile_identity_suci; |
| | test_ue_t *test_ue = NULL; |
| | test_sess_t *sess = NULL; |
| | test_bearer_t *qos_flow = NULL; |
| |
|
| | bson_t *doc = NULL; |
| |
|
| | const char *scheme_output = |
| | "039AAB83 76597021 E855679A 9778EA0B" |
| | "67396E68 C66DF32C 0F41E9AC CA2DA9B9" "D1" |
| | "cdd22e34 96" |
| | "5500e9242e65f58c"; |
| |
|
| | |
| | memset(&mobile_identity_suci, 0, sizeof(mobile_identity_suci)); |
| |
|
| | mobile_identity_suci.h.supi_format = OGS_NAS_5GS_SUPI_FORMAT_IMSI; |
| | mobile_identity_suci.h.type = OGS_NAS_5GS_MOBILE_IDENTITY_SUCI; |
| | mobile_identity_suci.routing_indicator1 = 0; |
| | mobile_identity_suci.routing_indicator2 = 0xf; |
| | mobile_identity_suci.routing_indicator3 = 0xf; |
| | mobile_identity_suci.routing_indicator4 = 0xf; |
| | mobile_identity_suci.protection_scheme_id = |
| | OGS_PROTECTION_SCHEME_PROFILE_B; |
| | mobile_identity_suci.home_network_pki_value = 2; |
| |
|
| | test_ue = test_ue_add_by_suci(&mobile_identity_suci, scheme_output); |
| | ogs_assert(test_ue); |
| |
|
| | test_ue->nr_cgi.cell_id = 0x40001; |
| |
|
| | test_ue->nas.registration.tsc = 0; |
| | test_ue->nas.registration.ksi = OGS_NAS_KSI_NO_KEY_IS_AVAILABLE; |
| | test_ue->nas.registration.follow_on_request = 1; |
| | test_ue->nas.registration.value = OGS_NAS_5GS_REGISTRATION_TYPE_INITIAL; |
| |
|
| | test_ue->k_string = "465b5ce8b199b49faa5f0a2ee238a6bc"; |
| | test_ue->opc_string = "e8ed289deba952e4283b54e88e6183ca"; |
| |
|
| | |
| | ngap = testngap_client(AF_INET); |
| | ABTS_PTR_NOTNULL(tc, ngap); |
| |
|
| | |
| | gtpu = test_gtpu_server(1, AF_INET); |
| | ABTS_PTR_NOTNULL(tc, gtpu); |
| |
|
| | |
| | sendbuf = testngap_build_ng_setup_request(0x4000, 22); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | doc = test_db_new_simple(test_ue); |
| | ABTS_PTR_NOTNULL(tc, doc); |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_insert_ue(test_ue, doc)); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| |
|
| | test_ue->registration_request_param.gmm_capability = 1; |
| | test_ue->registration_request_param.s1_ue_network_capability = 1; |
| | test_ue->registration_request_param.requested_nssai = 1; |
| | test_ue->registration_request_param.last_visited_registered_tai = 1; |
| | test_ue->registration_request_param.ue_usage_setting = 1; |
| | nasbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, nasbuf); |
| |
|
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, true); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_authentication_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_security_mode_complete(test_ue, nasbuf); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_InitialContextSetup, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_radio_capability_info_indication(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | sendbuf = testngap_build_initial_context_setup_response(test_ue, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_de_registration_request(test_ue, 1, true, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | ogs_msleep(300); |
| |
|
| | |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_remove_ue(test_ue)); |
| |
|
| | |
| | testgnb_gtpu_close(gtpu); |
| |
|
| | |
| | testgnb_ngap_close(ngap); |
| |
|
| | |
| | test_ue_remove(test_ue); |
| | } |
| |
|
| | static void test4_func(abts_case *tc, void *data) |
| | { |
| | int rv; |
| | ogs_socknode_t *ngap; |
| | ogs_socknode_t *gtpu; |
| | ogs_pkbuf_t *gmmbuf; |
| | ogs_pkbuf_t *gsmbuf; |
| | ogs_pkbuf_t *nasbuf; |
| | ogs_pkbuf_t *sendbuf; |
| | ogs_pkbuf_t *recvbuf; |
| | ogs_ngap_message_t message; |
| | int i; |
| |
|
| | ogs_nas_5gs_mobile_identity_suci_t mobile_identity_suci; |
| | test_ue_t *test_ue = NULL; |
| | test_sess_t *sess = NULL; |
| | test_bearer_t *qos_flow = NULL; |
| |
|
| | bson_t *doc = NULL; |
| |
|
| | const char *scheme_output = |
| | "039AAB83 76597021 E855679A 9778EA0B" |
| | "67396E68 C66DF32C 0F41E9AC CA2DA9B9" "D1" |
| | "cdd22e34 96" |
| | "5500e9242e65f58c"; |
| |
|
| | |
| | memset(&mobile_identity_suci, 0, sizeof(mobile_identity_suci)); |
| |
|
| | mobile_identity_suci.h.supi_format = OGS_NAS_5GS_SUPI_FORMAT_IMSI; |
| | mobile_identity_suci.h.type = OGS_NAS_5GS_MOBILE_IDENTITY_SUCI; |
| | mobile_identity_suci.routing_indicator1 = 0; |
| | mobile_identity_suci.routing_indicator2 = 0xf; |
| | mobile_identity_suci.routing_indicator3 = 0xf; |
| | mobile_identity_suci.routing_indicator4 = 0xf; |
| | mobile_identity_suci.protection_scheme_id = |
| | OGS_PROTECTION_SCHEME_PROFILE_B; |
| | mobile_identity_suci.home_network_pki_value = 2; |
| |
|
| | test_ue = test_ue_add_by_suci(&mobile_identity_suci, scheme_output); |
| | ogs_assert(test_ue); |
| |
|
| | test_ue->nr_cgi.cell_id = 0x40001; |
| |
|
| | test_ue->nas.registration.tsc = 0; |
| | test_ue->nas.registration.ksi = OGS_NAS_KSI_NO_KEY_IS_AVAILABLE; |
| | test_ue->nas.registration.follow_on_request = 1; |
| | test_ue->nas.registration.value = OGS_NAS_5GS_REGISTRATION_TYPE_INITIAL; |
| |
|
| | test_ue->k_string = "465b5ce8b199b49faa5f0a2ee238a6bc"; |
| | test_ue->opc_string = "e8ed289deba952e4283b54e88e6183ca"; |
| |
|
| | |
| | ngap = testngap_client(AF_INET); |
| | ABTS_PTR_NOTNULL(tc, ngap); |
| |
|
| | |
| | gtpu = test_gtpu_server(1, AF_INET); |
| | ABTS_PTR_NOTNULL(tc, gtpu); |
| |
|
| | |
| | sendbuf = testngap_build_ng_setup_request(0x4000, 22); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | doc = test_db_new_simple(test_ue); |
| | ABTS_PTR_NOTNULL(tc, doc); |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_insert_ue(test_ue, doc)); |
| |
|
| | |
| | test_ue->registration_request_param.guti = 1; |
| | gmmbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| |
|
| | test_ue->registration_request_param.gmm_capability = 1; |
| | test_ue->registration_request_param.s1_ue_network_capability = 1; |
| | test_ue->registration_request_param.requested_nssai = 1; |
| | test_ue->registration_request_param.last_visited_registered_tai = 1; |
| | test_ue->registration_request_param.ue_usage_setting = 1; |
| | nasbuf = testgmm_build_registration_request(test_ue, NULL, false, false); |
| | ABTS_PTR_NOTNULL(tc, nasbuf); |
| |
|
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, true); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_identity_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_authentication_response(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_security_mode_complete(test_ue, nasbuf); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_InitialContextSetup, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_radio_capability_info_indication(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | sendbuf = testngap_build_initial_context_setup_response(test_ue, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | gmmbuf = testgmm_build_registration_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_uplink_nas_transport(test_ue, gmmbuf); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| |
|
| | |
| | gmmbuf = testgmm_build_de_registration_request(test_ue, 1, true, false); |
| | ABTS_PTR_NOTNULL(tc, gmmbuf); |
| | sendbuf = testngap_build_initial_ue_message(test_ue, gmmbuf, |
| | NGAP_RRCEstablishmentCause_mo_Signalling, false, false); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | |
| | recvbuf = testgnb_ngap_read(ngap); |
| | ABTS_PTR_NOTNULL(tc, recvbuf); |
| | testngap_recv(test_ue, recvbuf); |
| | ABTS_INT_EQUAL(tc, |
| | NGAP_ProcedureCode_id_UEContextRelease, |
| | test_ue->ngap_procedure_code); |
| |
|
| | |
| | sendbuf = testngap_build_ue_context_release_complete(test_ue); |
| | ABTS_PTR_NOTNULL(tc, sendbuf); |
| | rv = testgnb_ngap_send(ngap, sendbuf); |
| | ABTS_INT_EQUAL(tc, OGS_OK, rv); |
| |
|
| | ogs_msleep(300); |
| |
|
| | |
| | ABTS_INT_EQUAL(tc, OGS_OK, test_db_remove_ue(test_ue)); |
| |
|
| | |
| | testgnb_gtpu_close(gtpu); |
| |
|
| | |
| | testgnb_ngap_close(ngap); |
| |
|
| | |
| | test_ue_remove(test_ue); |
| | } |
| |
|
| | abts_suite *test_ecc(abts_suite *suite) |
| | { |
| | suite = ADD_SUITE(suite) |
| |
|
| | abts_run_test(suite, test1_func, NULL); |
| | abts_run_test(suite, test2_func, NULL); |
| | abts_run_test(suite, test3_func, NULL); |
| | abts_run_test(suite, test4_func, NULL); |
| |
|
| | return suite; |
| | } |
| |
|