Skip to content

Commit 01b0330

Browse files
committed
Merge 'develop' into 'improve/increase-coverage'
2 parents 652c165 + b9ef3a4 commit 01b0330

77 files changed

Lines changed: 4304 additions & 1919 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@ compliance_tool/aas_compliance_tool/version.py
3232
server/app/version.py
3333

3434
# Ignore the content of the server storage
35-
server/input/
36-
server/storage/
35+
server/example_configurations/repository_standalone/input/
36+
server/example_configurations/repository_standalone/storage/
37+
server/example_configurations/registry_standalone/input/
38+
server/example_configurations/registry_standalone/storage/

compliance_tool/aas_compliance_tool/compliance_check_aasx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ def check_aas_example(file_path: str, state_manager: ComplianceToolStateManager,
238238

239239
# Check if file in file object is the same
240240
list_of_id_shorts = ["ExampleSubmodelCollection", "ExampleFile"]
241-
identifiable = example_data.get_item("https://acplt.org/Test_Submodel")
241+
identifiable = example_data.get_item("https://example.org/Test_Submodel")
242242
for id_short in list_of_id_shorts:
243243
identifiable = identifiable.get_referable(id_short)
244-
obj2 = identifiable_store.get_item("https://acplt.org/Test_Submodel")
244+
obj2 = identifiable_store.get_item("https://example.org/Test_Submodel")
245245
for id_short in list_of_id_shorts:
246246
obj2 = obj2.get_referable(id_short)
247247
try:

compliance_tool/test/files/test_demo_full_example.json

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example.xml

Lines changed: 166 additions & 166 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example_json_aasx/aasx/data.json

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example_wrong_attribute.json

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example_wrong_attribute.xml

Lines changed: 166 additions & 166 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example_xml_aasx/aasx/data.xml

Lines changed: 166 additions & 166 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_demo_full_example_xml_wrong_attribute_aasx/aasx/data.xml

Lines changed: 166 additions & 166 deletions
Large diffs are not rendered by default.

compliance_tool/test/files/test_deserializable_aas_warning.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"assetAdministrationShells": [
33
{
4-
"id": "https://acplt.org/Test_AssetAdministrationShell",
4+
"id": "https://example.org/Test_AssetAdministrationShell",
55
"idShort": "TestAssetAdministrationShell",
66
"administration": {
77
"revision": "0"
88
},
99
"modelType": "AssetAdministrationShell",
1010
"assetInformation": {
1111
"assetKind": "Instance",
12-
"globalAssetId": "http://acplt.org/TestAsset/"
12+
"globalAssetId": "http://example.org/TestAsset/"
1313
}
1414
}
1515
]

0 commit comments

Comments
 (0)