Skip to content

Commit ba90798

Browse files
authored
Merge pull request gawel#116 from romkazor/master
AMI: fix QueueAdd multi message wrong detect
2 parents c786190 + bc0272b commit ba90798

File tree

7 files changed

+21
-3
lines changed

7 files changed

+21
-3
lines changed

.github/workflows/tox.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
11+
python: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v3
@@ -24,4 +24,4 @@ jobs:
2424
run: tox -e py
2525
- name: Run flake8 / docs
2626
run: tox -e flake8,docs
27-
if: "matrix.python == '3.10' || matrix.python == '3.11'"
27+
if: "matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'"

panoramisk/actions.py

+2
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ def multi(self):
7979
return True
8080
elif 'will follow' in msg:
8181
return True
82+
elif msg == 'added interface to queue':
83+
return False
8284
elif msg.startswith('added') and msg.endswith('to queue'):
8385
return True
8486
elif msg.endswith('successfully queued') and self['async'] != 'false':

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def read(*rnames):
3434
'Programming Language :: Python :: 3.8',
3535
'Programming Language :: Python :: 3.9',
3636
'Programming Language :: Python :: 3.10',
37+
'Programming Language :: Python :: 3.11',
38+
'Programming Language :: Python :: 3.12',
3739
'Topic :: Communications :: Telephony',
3840
'Topic :: Software Development :: Libraries :: Python Modules',
3941
],

tests/__init__.py

Whitespace-only changes.

tests/fixtures/queue_add.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Response: Success
2+
ActionID: action/transaction_uid/1/1
3+
Message: Added interface to queue
4+
5+

tests/test_manager_with_fixtures.py

+9
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ def test_queue_status(manager):
5454
assert len(responses) == 9
5555

5656

57+
def test_queue_add(manager):
58+
manager = manager(stream='queue_add.yaml')
59+
future = manager.send_action({'Action': 'QueueAdd',
60+
'Queue': 'xxxxxxxxxxxxxxxx-tous',
61+
'Interface': 'SIP/000000'})
62+
responses = future.result()
63+
assert len(responses) == 4
64+
65+
5766
def test_pjsip_show_endpoint(manager):
5867
manager = manager(stream='pjsip_show_endpoint.yaml')
5968
future = manager.send_action({'Action': 'PJSIPShowEndpoint',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,flake8,docs
2+
envlist = py37,py38,py39,py310,py311,py312,flake8,docs
33

44
[flake8]
55
max-line-length = 120

0 commit comments

Comments
 (0)