[MERGED] osmo-gsm-tester[master]: modem: Allow tests to change KI

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Pau Espin Pedrol gerrit-no-reply at lists.osmocom.org
Wed Aug 23 12:55:43 UTC 2017


Pau Espin Pedrol has submitted this change and it was merged.

Change subject: modem: Allow tests to change KI
......................................................................


modem: Allow tests to change KI

This is useful for tests that wants to fake a bad KI to test if auth and
encryption are working correctly.

Change-Id: I40cfed6f6b9239eea2b97ffa010b98c78f0cb9cb
---
M src/osmo_gsm_tester/ofono_client.py
1 file changed, 6 insertions(+), 0 deletions(-)

Approvals:
  Pau Espin Pedrol: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/osmo_gsm_tester/ofono_client.py b/src/osmo_gsm_tester/ofono_client.py
index 60f98df..00cfd47 100644
--- a/src/osmo_gsm_tester/ofono_client.py
+++ b/src/osmo_gsm_tester/ofono_client.py
@@ -318,6 +318,7 @@
     'convenience for ofono Modem interaction'
     msisdn = None
     sms_received_list = None
+    _ki = None
 
     def __init__(self, conf):
         self.conf = conf
@@ -394,7 +395,12 @@
             raise log.Error('No IMSI')
         return imsi
 
+    def set_ki(self, ki):
+        self._ki = ki
+
     def ki(self):
+        if self._ki is not None:
+            return self._ki
         return self.conf.get('ki')
 
     def _on_netreg_property_changed(self, name, value):

-- 
To view, visit https://gerrit.osmocom.org/3583
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I40cfed6f6b9239eea2b97ffa010b98c78f0cb9cb
Gerrit-PatchSet: 2
Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Owner: Pau Espin Pedrol <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Pau Espin Pedrol <pespin at sysmocom.de>



More information about the gerrit-log mailing list