Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
06115e93
Commit
06115e93
authored
Jan 06, 2015
by
Ghislain MARY
Browse files
Add some registration unit tests in Python.
parent
0e055ae4
Changes
2
Hide whitespace changes
Inline
Side-by-side
tools/python/unittests/linphonetester.py
View file @
06115e93
...
...
@@ -9,6 +9,7 @@ import time
test_domain
=
"sipopen.example.org"
auth_domain
=
"sip.example.org"
test_username
=
"liblinphone_tester"
test_password
=
"secret"
test_route
=
"sip2.linphone.org"
...
...
@@ -21,6 +22,7 @@ else:
def
linphonetester_log_handler
(
level
,
msg
):
import
logging
method
=
getattr
(
logging
.
getLogger
(
"linphonetester"
),
level
)
if
not
msg
.
strip
().
startswith
(
'[PYLINPHONE]'
):
msg
=
'[CORE] '
+
msg
...
...
tools/python/unittests/test_register.py
View file @
06115e93
...
...
@@ -8,7 +8,7 @@ class RegisterCoreManager(CoreManager):
@
classmethod
def
auth_info_requested
(
cls
,
lc
,
realm
,
username
,
domain
):
CoreManager
.
auth_info_requested
(
cls
,
lc
,
realm
,
username
,
domain
)
CoreManager
.
auth_info_requested
(
lc
,
realm
,
username
,
domain
)
info
=
linphone
.
AuthInfo
.
new
(
test_username
,
None
,
test_password
,
None
,
realm
,
domain
)
# Create authentication structure from identity
lc
.
add_auth_info
(
info
)
# Add authentication info to LinphoneCore
...
...
@@ -145,3 +145,47 @@ class TestRegister:
pc
.
server_addr
=
"sip:{domain}:{port};transport=tls"
.
format
(
domain
=
addr
.
domain
,
port
=
port
)
pc
.
done
()
assert_equals
(
CoreManager
.
wait_for_until
(
cm
,
cm
,
lambda
cm1
,
cm2
:
cm1
.
stats
.
number_of_LinphoneRegistrationFailed
==
1
,
5000
),
True
)
def
test_simple_authenticated_register
(
self
):
cm
=
RegisterCoreManager
()
info
=
linphone
.
AuthInfo
.
new
(
test_username
,
None
,
test_password
,
None
,
auth_domain
,
None
)
# Create authentication structure from identity
cm
.
lc
.
add_auth_info
(
info
)
cm
.
register_with_refresh
(
False
,
auth_domain
,
"sip:{route}"
.
format
(
route
=
test_route
))
assert_equals
(
cm
.
stats
.
number_of_auth_info_requested
,
0
)
def
test_digest_auth_without_initial_credentials
(
self
):
cm
=
RegisterCoreManager
(
with_auth
=
True
)
cm
.
register_with_refresh
(
False
,
auth_domain
,
"sip:{route}"
.
format
(
route
=
test_route
))
assert_equals
(
cm
.
stats
.
number_of_auth_info_requested
,
1
)
def
test_authenticated_register_with_late_credentials
(
self
):
cm
=
RegisterCoreManager
()
cm
.
register_with_refresh
(
False
,
auth_domain
,
"sip:{route}"
.
format
(
route
=
test_route
),
True
,
linphone
.
SipTransports
(
5070
,
5070
,
5071
,
0
))
assert_equals
(
cm
.
stats
.
number_of_auth_info_requested
,
1
)
def
test_simple_register_with_refresh
(
self
):
cm
=
RegisterCoreManager
()
cm
.
register_with_refresh
(
True
,
None
,
None
)
assert_equals
(
cm
.
stats
.
number_of_auth_info_requested
,
0
)
def
test_simple_auth_register_with_refresh
(
self
):
cm
=
RegisterCoreManager
(
with_auth
=
True
)
cm
.
register_with_refresh
(
True
,
auth_domain
,
"sip:{route}"
.
format
(
route
=
test_route
))
assert_equals
(
cm
.
stats
.
number_of_auth_info_requested
,
1
)
def
test_multiple_accounts
(
self
):
cm
=
CoreManager
(
'multi_account_rc'
,
False
)
assert_equals
(
CoreManager
.
wait_for
(
cm
,
cm
,
lambda
cm1
,
cm2
:
cm1
.
stats
.
number_of_LinphoneRegistrationOk
==
len
(
cm
.
lc
.
proxy_config_list
)),
True
)
def
test_transport_change
(
self
):
cm
=
CoreManager
(
'multi_account_rc'
,
False
)
number_of_udp_proxies
=
reduce
(
lambda
x
,
y
:
x
+
int
(
y
.
transport
==
"udp"
),
cm
.
lc
.
proxy_config_list
,
0
)
total_number_of_proxies
=
len
(
cm
.
lc
.
proxy_config_list
)
# Keep only UDP
tr
=
cm
.
lc
.
sip_transports
tr
.
tcp_port
=
0
tr
.
tls_port
=
0
tr
.
dtls_port
=
0
cm
.
lc
.
sip_transports
=
tr
assert_equals
(
CoreManager
.
wait_for
(
cm
,
cm
,
lambda
cm1
,
cm2
:
cm1
.
stats
.
number_of_LinphoneRegistrationOk
==
number_of_udp_proxies
),
True
)
assert_equals
(
CoreManager
.
wait_for
(
cm
,
cm
,
lambda
cm1
,
cm2
:
cm1
.
stats
.
number_of_LinphoneRegistrationFailed
==
(
total_number_of_proxies
-
number_of_udp_proxies
)),
True
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment