Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
3505fc6d
Commit
3505fc6d
authored
Aug 01, 2018
by
Christian Bergmiller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored tests and async fixes
parent
4221be7d
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
65 additions
and
61 deletions
+65
-61
opcua/client/client.py
opcua/client/client.py
+1
-0
opcua/common/methods.py
opcua/common/methods.py
+3
-3
opcua/common/subscription.py
opcua/common/subscription.py
+2
-2
opcua/server/internal_server.py
opcua/server/internal_server.py
+1
-1
tests/conftest.py
tests/conftest.py
+3
-2
tests/test_client.py
tests/test_client.py
+1
-1
tests/test_common.py
tests/test_common.py
+5
-5
tests/test_standard_address_space.py
tests/test_standard_address_space.py
+17
-17
tests/test_subscriptions.py
tests/test_subscriptions.py
+27
-27
tests/util_enum_struct.py
tests/util_enum_struct.py
+5
-3
No files found.
opcua/client/client.py
View file @
3505fc6d
...
...
@@ -521,6 +521,7 @@ class Client(object):
async
def
get_namespace_index
(
self
,
uri
):
uries
=
await
self
.
get_namespace_array
()
_logger
.
info
(
'get_namespace_index %s %r'
,
type
(
uries
),
uries
)
return
uries
.
index
(
uri
)
async
def
delete_nodes
(
self
,
nodes
,
recursive
=
False
):
...
...
opcua/common/methods.py
View file @
3505fc6d
...
...
@@ -37,18 +37,18 @@ async def call_method_full(parent, methodid, *args):
elif
isinstance
(
methodid
,
node
.
Node
):
methodid
=
methodid
.
nodeid
result
=
_call_method
(
parent
.
server
,
parent
.
nodeid
,
methodid
,
to_variant
(
*
args
))
result
=
await
_call_method
(
parent
.
server
,
parent
.
nodeid
,
methodid
,
to_variant
(
*
args
))
result
.
OutputArguments
=
[
var
.
Value
for
var
in
result
.
OutputArguments
]
return
result
def
_call_method
(
server
,
parentnodeid
,
methodid
,
arguments
):
async
def
_call_method
(
server
,
parentnodeid
,
methodid
,
arguments
):
request
=
ua
.
CallMethodRequest
()
request
.
ObjectId
=
parentnodeid
request
.
MethodId
=
methodid
request
.
InputArguments
=
arguments
methodstocall
=
[
request
]
results
=
server
.
call
(
methodstocall
)
results
=
await
server
.
call
(
methodstocall
)
res
=
results
[
0
]
res
.
StatusCode
.
check
()
return
res
...
...
opcua/common/subscription.py
View file @
3505fc6d
...
...
@@ -96,11 +96,11 @@ class Subscription(object):
self
.
loop
.
create_task
(
self
.
server
.
publish
())
self
.
loop
.
create_task
(
self
.
server
.
publish
())
def
delete
(
self
):
async
def
delete
(
self
):
"""
Delete subscription on server. This is automatically done by Client and Server classes on exit
"""
results
=
self
.
server
.
delete_subscriptions
([
self
.
subscription_id
])
results
=
await
self
.
server
.
delete_subscriptions
([
self
.
subscription_id
])
results
[
0
].
check
()
def
publish_callback
(
self
,
publishresult
):
...
...
opcua/server/internal_server.py
View file @
3505fc6d
...
...
@@ -361,7 +361,7 @@ class InternalSession(object):
def
republish
(
self
,
params
):
return
self
.
subscription_service
.
republish
(
params
)
def
delete_subscriptions
(
self
,
ids
):
async
def
delete_subscriptions
(
self
,
ids
):
for
i
in
ids
:
if
i
in
self
.
subscriptions
:
self
.
subscriptions
.
remove
(
i
)
...
...
tests/conftest.py
View file @
3505fc6d
...
...
@@ -23,6 +23,7 @@ async def server():
await
srv
.
init
()
srv
.
set_endpoint
(
f'opc.tcp://127.0.0.1:
{
port_num
}
'
)
await
add_server_methods
(
srv
)
await
add_server_custom_enum_struct
(
srv
)
await
srv
.
start
()
yield
srv
# stop the server
...
...
@@ -46,7 +47,7 @@ async def discovery_server():
async
def
admin_client
():
# start admin client
# long timeout since travis (automated testing) can be really slow
clt
=
Client
(
f'opc.tcp://admin@127.0.0.1:
{
port_num
1
}
'
,
timeout
=
10
)
clt
=
Client
(
f'opc.tcp://admin@127.0.0.1:
{
port_num
}
'
,
timeout
=
10
)
await
clt
.
connect
()
yield
clt
await
clt
.
disconnect
()
...
...
@@ -55,7 +56,7 @@ async def admin_client():
@
pytest
.
fixture
()
async
def
client
():
# start anonymous client
ro_clt
=
Client
(
f'opc.tcp://127.0.0.1:
{
port_num
1
}
'
)
ro_clt
=
Client
(
f'opc.tcp://127.0.0.1:
{
port_num
}
'
)
await
ro_clt
.
connect
()
yield
ro_clt
await
ro_clt
.
disconnect
()
...
...
tests/test_client.py
View file @
3505fc6d
...
...
@@ -3,7 +3,7 @@ import logging
import
pytest
from
opcua
import
Client
from
opcua
import
Server
from
opcua
import
ua
_logger
=
logging
.
getLogger
(
__name__
)
...
...
tests/test_common.py
View file @
3505fc6d
...
...
@@ -583,17 +583,17 @@ async def test_method_array(opc):
m
=
await
o
.
get_child
(
"2:ServerMethodArray"
)
result
=
await
o
.
call_method
(
m
,
"sin"
,
ua
.
Variant
(
math
.
pi
))
assert
result
<
0.01
with
pytest
.
raises
(
ua
.
UaStatusCodeError
)
as
cm
:
with
pytest
.
raises
(
ua
.
UaStatusCodeError
)
as
exc_info
:
await
o
.
call_method
(
m
,
"cos"
,
ua
.
Variant
(
math
.
pi
))
assert
ua
.
StatusCodes
.
BadInvalidArgument
==
cm
.
exception
.
code
with
pytest
.
raises
(
ua
.
UaStatusCodeError
)
as
cm
:
assert
ua
.
StatusCodes
.
BadInvalidArgument
==
exc_info
.
type
.
code
with
pytest
.
raises
(
ua
.
UaStatusCodeError
)
as
exc_info
:
await
o
.
call_method
(
m
,
"panic"
,
ua
.
Variant
(
math
.
pi
))
assert
ua
.
StatusCodes
.
BadOutOfMemory
==
cm
.
exception
.
code
assert
ua
.
StatusCodes
.
BadOutOfMemory
==
exc_info
.
type
.
code
async
def
test_method_array2
(
opc
):
o
=
opc
.
opc
.
get_objects_node
()
m
=
o
.
get_child
(
"2:ServerMethodArray2"
)
m
=
await
o
.
get_child
(
"2:ServerMethodArray2"
)
result
=
await
o
.
call_method
(
m
,
[
1.1
,
3.4
,
9
])
assert
[
2.2
,
6.8
,
18
]
==
result
result
=
await
call_method_full
(
o
,
m
,
[
1.1
,
3.4
,
9
])
...
...
tests/test
s
_standard_address_space.py
→
tests/test_standard_address_space.py
View file @
3505fc6d
import
unit
test
import
py
test
import
os.path
import
xml.etree.ElementTree
as
ET
...
...
@@ -49,19 +49,19 @@ def get_refs(e):
find_elem
(
e
,
'References'
))
class
StandardAddressSpaceTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
aspace
=
AddressSpace
(
)
self
.
node_mgt_service
=
NodeManagementService
(
self
.
aspace
)
standard_address_space
.
fill_address_space
(
self
.
node_mgt_service
)
def
test_std_address_space_references
(
self
):
std_nodes
=
read_nodes
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
'schemas'
,
'Opc.Ua.NodeSet2.xml'
)))
for
k
in
self
.
aspace
.
keys
():
refs
=
set
(
(
r
.
ReferenceTypeId
.
to_string
(),
r
.
NodeId
.
to_string
(),
r
.
IsForward
)
for
r
in
self
.
aspace
[
k
].
references
)
xml_refs
=
set
((
r
.
attrib
[
'ReferenceType'
],
r
.
text
,
r
.
attrib
.
get
(
'IsForward'
,
'true'
)
==
'true'
)
for
r
in
find_elem
(
std_nodes
[
k
.
to_string
()],
'References'
)
)
self
.
assertTrue
(
len
(
xml_refs
-
refs
)
==
0
)
def
test_std_address_space_references
(
):
aspace
=
AddressSpace
()
node_mgt_service
=
NodeManagementService
(
aspace
)
standard_address_space
.
fill_address_space
(
node_mgt_service
)
std_nodes
=
read_nodes
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
'schemas'
,
'Opc.Ua.NodeSet2.xml'
)
)
)
for
k
in
aspace
.
keys
(
):
refs
=
set
(
(
r
.
ReferenceTypeId
.
to_string
(),
r
.
NodeId
.
to_string
(),
r
.
IsForward
)
for
r
in
aspace
[
k
].
references
)
xml_
refs
=
set
(
(
r
.
attrib
[
'ReferenceType'
],
r
.
text
,
r
.
attrib
.
get
(
'IsForward'
,
'true'
)
==
'true'
)
for
r
in
find_elem
(
std_nodes
[
k
.
to_string
()],
'References'
)
)
assert
0
==
len
(
xml_refs
-
refs
)
tests/test_subscriptions.py
View file @
3505fc6d
...
...
@@ -67,11 +67,11 @@ class MySubHandlerCounter():
async
def
test_subscription_failure
(
opc
):
myhandler
=
MySubHandler
()
o
=
opc
.
get_objects_node
()
sub
=
await
opc
.
create_subscription
(
100
,
myhandler
)
o
=
opc
.
opc
.
get_objects_node
()
sub
=
await
opc
.
opc
.
create_subscription
(
100
,
myhandler
)
with
pytest
.
raises
(
ua
.
UaStatusCodeError
):
handle1
=
sub
.
subscribe_data_change
(
o
)
# we can only subscribe to variables so this should fail
sub
.
delete
()
handle1
=
await
sub
.
subscribe_data_change
(
o
)
# we can only subscribe to variables so this should fail
await
sub
.
delete
()
async
def
test_subscription_overload
(
opc
):
...
...
@@ -85,18 +85,18 @@ async def test_subscription_overload(opc):
v
=
await
o
.
add_variable
(
3
,
f'SubscriptionVariableOverload
{
i
}
'
,
99
)
variables
.
append
(
v
)
for
i
in
range
(
nb
):
sub
.
subscribe_data_change
(
variables
)
await
sub
.
subscribe_data_change
(
variables
)
for
i
in
range
(
nb
):
for
j
in
range
(
nb
):
await
variables
[
i
].
set_value
(
j
)
s
=
await
opc
.
opc
.
create_subscription
(
1
,
myhandler
)
s
.
subscribe_data_change
(
variables
)
await
s
.
subscribe_data_change
(
variables
)
subs
.
append
(
s
)
sub
.
subscribe_data_change
(
variables
[
i
])
await
sub
.
subscribe_data_change
(
variables
[
i
])
for
i
in
range
(
nb
):
for
j
in
range
(
nb
):
await
variables
[
i
].
set_value
(
j
)
sub
.
delete
()
await
sub
.
delete
()
for
s
in
subs
:
s
.
delete
()
...
...
@@ -113,7 +113,7 @@ async def test_subscription_count(opc):
await
var
.
set_value
(
val
+
1
)
await
sleep
(
0.2
)
# let last event arrive
assert
nb
+
1
==
myhandler
.
datachange_count
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscription_count_list
(
opc
):
...
...
@@ -129,7 +129,7 @@ async def test_subscription_count_list(opc):
await
var
.
set_value
(
val
)
await
sleep
(
0.2
)
# let last event arrive
assert
nb
+
1
==
myhandler
.
datachange_count
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscription_count_no_change
(
opc
):
...
...
@@ -144,7 +144,7 @@ async def test_subscription_count_no_change(opc):
var
.
set_value
(
val
)
await
sleep
(
0.2
)
# let last event arrive
assert
1
==
myhandler
.
datachange_count
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscription_count_empty
(
opc
):
...
...
@@ -161,7 +161,7 @@ async def test_subscription_count_empty(opc):
break
await
sleep
(
0.2
)
# let last event arrive
assert
4
==
myhandler
.
datachange_count
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscription_overload_simple
(
opc
):
...
...
@@ -174,7 +174,7 @@ async def test_subscription_overload_simple(opc):
variables
.
append
(
await
o
.
add_variable
(
3
,
f'SubVarOverload
{
i
}
'
,
i
))
for
i
in
range
(
nb
):
sub
.
subscribe_data_change
(
variables
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscription_data_change
(
opc
):
...
...
@@ -206,7 +206,7 @@ async def test_subscription_data_change(opc):
await
sub
.
unsubscribe
(
handle1
)
with
pytest
.
raises
(
ua
.
UaStatusCodeError
):
await
sub
.
unsubscribe
(
handle1
)
# second try should fail
sub
.
delete
()
await
sub
.
delete
()
with
pytest
.
raises
(
ua
.
UaStatusCodeError
):
await
sub
.
unsubscribe
(
handle1
)
# sub does not exist anymore
...
...
@@ -235,7 +235,7 @@ async def test_subscription_data_change_bool(opc):
node
,
val
,
data
=
await
myhandler
.
result
()
assert
v1
==
node
assert
val
is
False
sub
.
delete
()
# should delete our monitoreditem too
await
sub
.
delete
()
# should delete our monitoreditem too
async
def
test_subscription_data_change_many
(
opc
):
...
...
@@ -270,7 +270,7 @@ async def test_subscription_data_change_many(opc):
assert
val
==
startv2
else
:
raise
RuntimeError
(
"Error node {0} is neither {1} nor {2}"
.
format
(
node
,
v1
,
v2
))
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscribe_server_time
(
opc
):
...
...
@@ -283,7 +283,7 @@ async def test_subscribe_server_time(opc):
delta
=
datetime
.
utcnow
()
-
val
assert
delta
<
timedelta
(
seconds
=
2
)
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_create_delete_subscription
(
opc
):
...
...
@@ -293,7 +293,7 @@ async def test_create_delete_subscription(opc):
handle
=
await
sub
.
subscribe_data_change
(
v
)
await
sleep
(
0.1
)
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscribe_events
(
opc
):
...
...
@@ -301,7 +301,7 @@ async def test_subscribe_events(opc):
handle
=
await
sub
.
subscribe_events
()
await
sleep
(
0.1
)
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_subscribe_events_to_wrong_node
(
opc
):
...
...
@@ -312,7 +312,7 @@ async def test_subscribe_events_to_wrong_node(opc):
v
=
await
o
.
add_variable
(
3
,
'VariableNoEventNofierAttribute'
,
4
)
with
pytest
.
raises
(
ua
.
UaStatusCodeError
):
handle
=
await
sub
.
subscribe_events
(
v
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_get_event_from_type_node_BaseEvent
(
opc
):
...
...
@@ -355,7 +355,7 @@ async def test_events_default(opc):
assert
msg
==
ev
.
Message
.
Text
assert
tid
==
ev
.
Time
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_events_MyObject
(
opc
):
...
...
@@ -377,7 +377,7 @@ async def test_events_MyObject(opc):
assert
msg
==
ev
.
Message
.
Text
assert
tid
==
ev
.
Time
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_events_wrong_source
(
opc
):
...
...
@@ -393,7 +393,7 @@ async def test_events_wrong_source(opc):
with
pytest
.
raises
(
TimeoutError
):
# we should not receive event
ev
=
await
myhandler
.
result
()
await
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_events_CustomEvent
(
opc
):
...
...
@@ -424,7 +424,7 @@ async def test_events_CustomEvent(opc):
assert
propertynum
==
ev
.
PropertyNum
assert
propertystring
==
ev
.
PropertyString
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_events_CustomEvent_MyObject
(
opc
):
...
...
@@ -455,7 +455,7 @@ async def test_events_CustomEvent_MyObject(opc):
assert
propertynum
==
ev
.
PropertyNum
assert
propertystring
==
ev
.
PropertyString
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_several_different_events
(
opc
):
...
...
@@ -498,7 +498,7 @@ async def test_several_different_events(opc):
assert
4
==
len
(
ev2s
)
assert
7
==
len
(
ev1s
)
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
async
def
test_several_different_events_2
(
opc
):
...
...
@@ -553,4 +553,4 @@ async def test_several_different_events_2(opc):
assert
9999
==
ev3s
[
-
1
].
PropertyNum3
assert
ev1s
[
0
].
PropertyNum3
is
None
sub
.
unsubscribe
(
handle
)
sub
.
delete
()
await
sub
.
delete
()
tests/util_enum_struct.py
View file @
3505fc6d
import
os
from
opcua
import
ua
from
opcua.ua
import
uatypes
from
enum
import
IntEnum
from
opcua
import
Server
TEST_DIR
=
os
.
path
.
dirname
(
__file__
)
+
os
.
sep
class
ExampleEnum
(
IntEnum
):
EnumVal1
=
0
...
...
@@ -27,15 +30,14 @@ class ExampleStruct(uatypes.FrozenClass):
self
.
_freeze
=
True
def
__str__
(
self
):
return
'ExampleStruct('
+
'IntVal1:'
+
str
(
self
.
IntVal1
)
+
', '
+
\
'EnumVal:'
+
str
(
self
.
EnumVal
)
+
')'
return
f'ExampleStruct(IntVal1:
{
self
.
IntVal1
}
, EnumVal:
{
self
.
EnumVal
}
)'
__repr__
=
__str__
async
def
add_server_custom_enum_struct
(
server
:
Server
):
# import some nodes from xml
await
server
.
import_xml
(
"tests/
enum_struct_test_nodes.xml"
)
await
server
.
import_xml
(
f"
{
TEST_DIR
}
enum_struct_test_nodes.xml"
)
ns
=
await
server
.
get_namespace_index
(
'http://yourorganisation.org/struct_enum_example/'
)
uatypes
.
register_extension_object
(
'ExampleStruct'
,
ua
.
NodeId
(
5001
,
ns
),
ExampleStruct
)
val
=
ua
.
ExampleStruct
()
...
...
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