Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python3 ArmarX
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
Python3 ArmarX
Commits
3ce38922
Commit
3ce38922
authored
2 months ago
by
Joana Plewnia
Browse files
Options
Downloads
Patches
Plain Diff
added Test for saving a full memory using python
parent
b32277cd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!79
adding aron and armem functionalities from research repo
Pipeline
#22262
passed
2 months ago
Stage: setup-venv
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/armarx/armarx_memory/ltm/test_storing.py
+88
-1
88 additions, 1 deletion
tests/armarx/armarx_memory/ltm/test_storing.py
with
88 additions
and
1 deletion
tests/armarx/armarx_memory/ltm/test_storing.py
+
88
−
1
View file @
3ce38922
...
...
@@ -71,7 +71,8 @@ def test_access_data_from_instance(create_test_memory):
data
=
entity_instance
.
data
assert
isinstance
(
data
,
AronDict
)
aron_dict
=
data
assert
aron_dict
==
AronDict
(
elements
=
[
"
testData
"
,
AronInt
([
"
TestInteger
"
],
42
)],
path
=
[
"
t
"
])
assert
isinstance
(
aron_dict
.
elements
[
"
testData
"
],
AronInt
)
assert
aron_dict
.
elements
[
"
testData
"
].
value
==
42
assert
aron_dict
.
path
==
[
"
t
"
]
def
test_data_conversion_primitive
(
create_test_memory
):
...
...
@@ -167,6 +168,92 @@ def test_store_snapshot(create_test_memory):
assert
True
def
test_store_full_memory
(
create_test_memory
):
memory
:
Memory
=
create_test_memory
for
coreSegment
in
memory
.
coreSegments
.
values
():
for
providerSegment
in
coreSegment
.
providerSegments
.
values
():
for
entity
in
providerSegment
.
entities
.
values
():
entity
.
store
()
test_dir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
intended_path_dir
=
os
.
path
.
join
(
test_dir
,
"
testData/2024_07_16
"
,
"
LTM
"
,
"
TestWritingMemory
"
,
"
TestCoreSegment
"
,
"
TestProviderSegment
"
,
"
TestEntity
"
,
"
100
"
,
"
0
"
)
assert
os
.
path
.
isdir
(
intended_path_dir
)
intended_data_path
=
os
.
path
.
join
(
intended_path_dir
,
"
data.aron.json
"
)
intended_metadata_path
=
os
.
path
.
join
(
intended_path_dir
,
"
metadata.aron.json
"
)
assert
os
.
path
.
isfile
(
intended_data_path
)
assert
os
.
path
.
isfile
(
intended_metadata_path
)
correct_info_path_dir
=
os
.
path
.
join
(
test_dir
,
"
testData/2024_07_16
"
,
"
LTM
"
,
"
TestWritingMemoryIntended
"
,
"
TestCoreSegment
"
,
"
TestProviderSegment
"
,
"
TestEntity
"
,
"
100
"
,
"
0
"
)
correct_data_path
=
os
.
path
.
join
(
correct_info_path_dir
,
"
data.aron.json
"
)
correct_metadata_path
=
os
.
path
.
join
(
correct_info_path_dir
,
"
metadata.aron.json
"
)
# assert that the files also contain the correct information:
correct_data_string
=
""
try
:
with
open
(
correct_data_path
,
'
r
'
)
as
json_file_intended_data
:
# Load the JSON data and dump it as a normalized string
data
=
json
.
load
(
json_file_intended_data
)
correct_data_string
=
json
.
dumps
(
data
,
sort_keys
=
True
)
# Sort keys for consistent comparison
except
FileNotFoundError
:
print
(
f
"
File not found:
{
correct_data_path
}
"
)
assert
False
,
"
File not found
"
except
json
.
JSONDecodeError
as
e
:
print
(
f
"
Error decoding JSON in file
{
correct_data_path
}
:
{
e
}
"
)
assert
False
,
"
Error decoding JSON
"
written_data_string
=
""
try
:
with
open
(
intended_data_path
,
'
r
'
)
as
json_file_intended_data
:
# Load the JSON data and dump it as a normalized string
data
=
json
.
load
(
json_file_intended_data
)
written_data_string
=
json
.
dumps
(
data
,
sort_keys
=
True
)
# Sort keys for consistent comparison
except
FileNotFoundError
:
print
(
f
"
File not found:
{
intended_data_path
}
"
)
assert
False
,
"
File not found
"
except
json
.
JSONDecodeError
as
e
:
print
(
f
"
Error decoding JSON in file
{
intended_data_path
}
:
{
e
}
"
)
assert
False
,
"
Error decoding JSON
"
if
correct_data_string
is
not
None
and
written_data_string
is
not
None
:
if
correct_data_string
==
written_data_string
:
print
(
"
The content of both JSON files is the same for data.aron.json.
"
)
else
:
assert
False
,
"
The content of the JSON files is different.
"
# assert that the files also contain the correct information:
correct_metadata_string
=
""
try
:
with
open
(
correct_metadata_path
,
'
r
'
)
as
json_file_intended_data
:
# Load the JSON data and dump it as a normalized string
data
=
json
.
load
(
json_file_intended_data
)
correct_metadata_string
=
json
.
dumps
(
data
,
sort_keys
=
True
)
# Sort keys for consistent comparison
except
FileNotFoundError
:
print
(
f
"
File not found:
{
correct_metadata_path
}
"
)
assert
False
,
"
File not found
"
except
json
.
JSONDecodeError
as
e
:
print
(
f
"
Error decoding JSON in file
{
correct_metadata_path
}
:
{
e
}
"
)
assert
False
,
"
Error decoding JSON
"
written_metadata_string
=
""
try
:
with
open
(
intended_metadata_path
,
'
r
'
)
as
json_file_intended_data
:
# Load the JSON data and dump it as a normalized string
data
=
json
.
load
(
json_file_intended_data
)
written_metadata_string
=
json
.
dumps
(
data
,
sort_keys
=
True
)
# Sort keys for consistent comparison
except
FileNotFoundError
:
print
(
f
"
File not found:
{
intended_metadata_path
}
"
)
assert
False
,
"
File not found
"
except
json
.
JSONDecodeError
as
e
:
print
(
f
"
Error decoding JSON in file
{
intended_metadata_path
}
:
{
e
}
"
)
assert
False
,
"
Error decoding JSON
"
if
correct_metadata_string
is
not
None
and
written_metadata_string
is
not
None
:
if
correct_metadata_string
==
written_metadata_string
:
print
(
"
The content of both JSON files is the same for metadata.aron.json.
"
)
else
:
assert
False
,
"
The content of the JSON files is different.
"
assert
True
if
__name__
==
"
__main__
"
:
pytest
.
main
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment