Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37455?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified+1 by Jenkins Builder
Change subject: asterisk: Increate timeout waiting for AMI event FullyBooted
......................................................................
asterisk: Increate timeout waiting for AMI event FullyBooted
Change-Id: Ibd2bbdc4b916b5baca01407bac3cc5e9a99500e3
---
M asterisk/Asterisk_Tests.ttcn
1 file changed, 12 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/55/37455/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37455?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: Ibd2bbdc4b916b5baca01407bac3cc5e9a99500e3
Gerrit-Change-Number: 37455
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37455?usp=email )
Change subject: asterisk: Increate timeout waiting for AMI event FullyBooted
......................................................................
asterisk: Increate timeout waiting for AMI event FullyBooted
Change-Id: Ibd2bbdc4b916b5baca01407bac3cc5e9a99500e3
---
M asterisk/Asterisk_Tests.ttcn
1 file changed, 12 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/55/37455/1
diff --git a/asterisk/Asterisk_Tests.ttcn b/asterisk/Asterisk_Tests.ttcn
index 0796d99..34dad58 100644
--- a/asterisk/Asterisk_Tests.ttcn
+++ b/asterisk/Asterisk_Tests.ttcn
@@ -112,8 +112,10 @@
f_ami_action_login(AMI_CLIENT, mp_ami_user, mp_ami_secret);
+ /* It can sometimes take up to ~30s for Asterisk to finish startup and
+ * sending the FullyBooted event... */
timer tReady;
- tReady.start(10.0);
+ tReady.start(30.0);
alt {
[] AMI_CLIENT.receive(tr_AMI_Event_FullyBooted);
[] as_ami_rx_ignore(AMI_CLIENT);
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37455?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: Ibd2bbdc4b916b5baca01407bac3cc5e9a99500e3
Gerrit-Change-Number: 37455
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange
laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/37452?usp=email )
Change subject: transport: Implement treatment of 62xx and 63xx warning/error responses
......................................................................
transport: Implement treatment of 62xx and 63xx warning/error responses
TS 102 221 specifies that (in case of a class 4 command) and as SW
62xx or 63xx, we should send a GET RESPONSE just like in the 61xx
case in order to get the respective response.
As we don't really know if it's a case1/2/3/4 command in the
pySim.transport, let's always send the GET RESPONSE in case SW 62xx or
63xx are received. It shouldn't hurt - in the worst case there's no
response available...
Change-Id: Ibb1398194a16fc1f1f9bc46af6c66fb6575240cd
---
M pySim/transport/__init__.py
1 file changed, 23 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/52/37452/1
diff --git a/pySim/transport/__init__.py b/pySim/transport/__init__.py
index dd06af8..bc630e9 100644
--- a/pySim/transport/__init__.py
+++ b/pySim/transport/__init__.py
@@ -130,6 +130,7 @@
data : string (in hex) of returned data (ex. "074F4EFFFF")
sw : string (in hex) of status word (ex. "9000")
"""
+ prev_pdu = pdu
data, sw = self.send_apdu_raw(pdu)
# When we have sent the first APDU, the SW may indicate that there are response bytes
@@ -137,15 +138,17 @@
# xx is the number of response bytes available.
# See also:
if sw is not None:
- while ((sw[0:2] == '9f') or (sw[0:2] == '61')):
+ while (sw[0:2] in ['9f', '61', '62', '63']):
# SW1=9F: 3GPP TS 51.011 9.4.1, Responses to commands which are correctly executed
# SW1=61: ISO/IEC 7816-4, Table 5 — General meaning of the interindustry values of SW1-SW2
+ # SW1=62: ETSI TS 102 221 7.3.1.1.4 Clause 4b): 62xx, 63xx, 9xxx != 9000
pdu_gr = pdu[0:2] + 'c00000' + sw[2:4]
+ prev_pdu = pdu_gr
d, sw = self.send_apdu_raw(pdu_gr)
data += d
if sw[0:2] == '6c':
# SW1=6C: ETSI TS 102 221 Table 7.1: Procedure byte coding
- pdu_gr = pdu[0:8] + sw[2:4]
+ pdu_gr = prev_pdu[0:8] + sw[2:4]
data, sw = self.send_apdu_raw(pdu_gr)
return data, sw
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/37452?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ibb1398194a16fc1f1f9bc46af6c66fb6575240cd
Gerrit-Change-Number: 37452
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newchange
pespin has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/37434?usp=email )
Change subject: asterisk: pjsip.conf: Forward Hold/Resume SIP UA -> IMS Core
......................................................................
asterisk: pjsip.conf: Forward Hold/Resume SIP UA -> IMS Core
This is needed for forward the a=sendonly when a local SIP UA wishes to
hold a call.
Related: SYS#7002
Change-Id: I70e7e5df2d9c91acdc85c689cf8e48c5a44b2a34
---
M ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf
1 file changed, 14 insertions(+), 0 deletions(-)
Approvals:
laforge: Looks good to me, but someone else must approve
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf b/ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf
index 574ecf6..bd33845 100644
--- a/ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf
+++ b/ttcn3-asterisk-ims-ue-test/asterisk/pjsip.conf
@@ -115,6 +115,7 @@
direct_media=no
ims_aka=yes
100rel=peer_supported
+moh_passthrough=yes
[volte_ims]
type=auth
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/37434?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I70e7e5df2d9c91acdc85c689cf8e48c5a44b2a34
Gerrit-Change-Number: 37434
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/37437?usp=email )
Change subject: obs: use specific mirror
......................................................................
obs: use specific mirror
Use debian.inf.tu-dresden.de (which has a proper TLS certificate)
instead of the generic ftp.de.debian.org.
Closes: OS#6499
Change-Id: Iee06b6c6cc418a1b2f4eba094704c6e5e156799c
---
M scripts/obs/sync_obs_projects.py
1 file changed, 17 insertions(+), 3 deletions(-)
Approvals:
Jenkins Builder: Verified
lynxis lazus: Looks good to me, approved
diff --git a/scripts/obs/sync_obs_projects.py b/scripts/obs/sync_obs_projects.py
index cc4635a..beb3e09 100755
--- a/scripts/obs/sync_obs_projects.py
+++ b/scripts/obs/sync_obs_projects.py
@@ -182,15 +182,16 @@
# (e.g. <pubkey>debian-archive-12</pubkey>):
# https://github.com/openSUSE/open-build-service/pull/14528
# Also we don't have such a pubkeydir set up on our OBS server. Assume
- # ftp.de.debian.org is a trusted mirror, switch to HTTPS and skip the
- # PGP verification by removing the pubkey blocks.
+ # https://debian.inf.tu-dresden.de/ is a trusted mirror, switch to
+ # HTTPS and skip the PGP verification by removing the pubkey blocks.
if project.startswith("Debian:"):
for download in repository.findall(".download"):
url = download.get("url")
print(f" changing url to https: {url}")
assert url.startswith("http://ftp.de.debian.org/debian"), \
f"unexpected mirror URL"
- download.set("url", url.replace("http://", "https://"))
+ download.set("url", url.replace("http://ftp.de.debian.org/debian",
+ "https://debian.inf.tu-dresden.de/debian"))
for pubkey in download.findall("pubkey"):
download.remove(pubkey)
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/37437?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Iee06b6c6cc418a1b2f4eba094704c6e5e156799c
Gerrit-Change-Number: 37437
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: merged