dexter has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36816?usp=email )
Change subject: IPAd_Tests: fix terminology
......................................................................
IPAd_Tests: fix terminology
When testing the profile download we call it "direct" profile
download, but we actually mean "indirect" profile download.
Related: SYS#6563
Change-Id: I971ed877f76abaa3e05bc05d3e20a0fd1f19982d
---
M ipad/IPAd_Tests.ttcn
1 file changed, 18 insertions(+), 5 deletions(-)
Approvals:
laforge: Looks good to me, approved
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/ipad/IPAd_Tests.ttcn b/ipad/IPAd_Tests.ttcn
index e866e50..b3e1a99 100644
--- a/ipad/IPAd_Tests.ttcn
+++ b/ipad/IPAd_Tests.ttcn
@@ -420,7 +420,7 @@
/* A testcase to try out an the Common Mutual Authentication Procedure */
-private function f_TC_proc_direct_prfle_dwnld(charstring id) runs on IPAd_ConnHdlr {
+private function f_TC_proc_indirect_prfle_dwnld(charstring id) runs on IPAd_ConnHdlr {
var EsipaMessageFromIpaToEim esipa_req;
var EsipaMessageFromEimToIpa esipa_res;
var integer i;
@@ -430,7 +430,7 @@
f_es10x_init();
f_http_register();
- /* Prepare direct profile download by responding with a download trigger request */
+ /* Prepare indirect profile download by responding with a download trigger request */
esipa_res := valueof(ts_getEimPackageResponse_dnlTrigReq);
esipa_req := f_esipa_transceive(esipa_res);
if (not match(esipa_req, tr_getEimPackageRequest)) {
@@ -493,12 +493,12 @@
setverdict(pass);
}
-testcase TC_proc_direct_prfle_dwnld() runs on MTC_CT {
+testcase TC_proc_indirect_prfle_dwnld() runs on MTC_CT {
var charstring id := testcasename();
var IPAd_ConnHdlrPars pars := f_init_pars();
var IPAd_ConnHdlr vc_conn;
f_init(id);
- vc_conn := f_start_handler(refers(f_TC_proc_direct_prfle_dwnld), pars);
+ vc_conn := f_start_handler(refers(f_TC_proc_indirect_prfle_dwnld), pars);
vc_conn.done;
setverdict(pass);
}
@@ -703,7 +703,7 @@
}
control {
- execute ( TC_proc_direct_prfle_dwnld() );
+ execute ( TC_proc_indirect_prfle_dwnld() );
execute ( TC_proc_euicc_pkg_dwnld_exec() );
execute ( TC_proc_euicc_pkg_dwnld_exec_rollback() );
execute ( TC_proc_euicc_data_req() );
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36816?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I971ed877f76abaa3e05bc05d3e20a0fd1f19982d
Gerrit-Change-Number: 36816
Gerrit-PatchSet: 2
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged