@@ -233,10 +233,8 @@ class AssetInterfaceDescriptionUtilTest {
233
233
expect ( tdObj . properties . device_name . forms [ 0 ] )
234
234
. to . have . property ( "href" )
235
235
. to . eql ( "modbus+tcp://192.168.178.146:502/1/40020?quantity=16" ) ;
236
- expect ( tdObj . properties . device_name . forms [ 0 ] )
237
- . to . have . property ( "modbus:function" )
238
- . to . eql ( "readHoldingRegisters" ) ;
239
- expect ( tdObj . properties . device_name . forms [ 0 ] ) . to . have . property ( "modbus:type" ) . to . eql ( "string" ) ;
236
+ expect ( tdObj . properties . device_name . forms [ 0 ] ) . to . have . property ( "modv:function" ) . to . eql ( "readHoldingRegisters" ) ;
237
+ expect ( tdObj . properties . device_name . forms [ 0 ] ) . to . have . property ( "modv:type" ) . to . eql ( "string" ) ;
240
238
expect ( tdObj . properties . device_name . forms [ 0 ] )
241
239
. to . have . property ( "contentType" )
242
240
. to . eql ( "application/octet-stream" ) ;
@@ -270,8 +268,8 @@ class AssetInterfaceDescriptionUtilTest {
270
268
expect ( tdObj . properties . soc . forms [ 0 ] )
271
269
. to . have . property ( "href" )
272
270
. to . eql ( "modbus+tcp://192.168.178.146:502/40361?quantity=1" ) ;
273
- expect ( tdObj . properties . soc . forms [ 0 ] ) . to . have . property ( "modbus :function" ) . to . eql ( "readHoldingRegisters" ) ;
274
- expect ( tdObj . properties . soc . forms [ 0 ] ) . to . have . property ( "modbus :type" ) . to . eql ( "uint16be" ) ;
271
+ expect ( tdObj . properties . soc . forms [ 0 ] ) . to . have . property ( "modv :function" ) . to . eql ( "readHoldingRegisters" ) ;
272
+ expect ( tdObj . properties . soc . forms [ 0 ] ) . to . have . property ( "modv :type" ) . to . eql ( "uint16be" ) ;
275
273
expect ( tdObj . properties . soc . forms [ 0 ] ) . to . have . property ( "contentType" ) . to . eql ( "application/octet-stream" ) ;
276
274
expect ( tdObj . properties . device_name . forms [ 0 ] ) . not . to . have . property ( "security" ) ;
277
275
}
@@ -352,11 +350,11 @@ class AssetInterfaceDescriptionUtilTest {
352
350
expect ( hasThingTitle , "No thing title" ) . to . equal ( true ) ;
353
351
expect ( hasEndpointMetadata , "No EndpointMetadata" ) . to . equal ( true ) ;
354
352
355
- // InterfaceMetadata with properties etc
356
- let hasInterfaceMetadata = false ;
353
+ // InteractionMetadata with properties etc
354
+ let hasInteractionMetadata = false ;
357
355
for ( const smValue of smInterface . value ) {
358
- if ( smValue . idShort === "InterfaceMetadata " ) {
359
- hasInterfaceMetadata = true ;
356
+ if ( smValue . idShort === "InteractionMetadata " ) {
357
+ hasInteractionMetadata = true ;
360
358
expect ( smValue ) . to . have . property ( "value" ) . to . be . an ( "array" ) . to . have . lengthOf . greaterThan ( 0 ) ;
361
359
let hasProperties = false ;
362
360
for ( const interactionValues of smValue . value ) {
@@ -410,12 +408,12 @@ class AssetInterfaceDescriptionUtilTest {
410
408
} else if ( formEntry . idShort === "contentType" ) {
411
409
hasContentType = true ;
412
410
expect ( formEntry . value ) . to . equal ( "application/octet-stream" ) ;
413
- } else if ( formEntry . idShort === "modbus_function " ) {
414
- // vs. "modbus :function"
411
+ } else if ( formEntry . idShort === "modv_function " ) {
412
+ // vs. "modv :function"
415
413
hasModbusFunction = true ;
416
414
expect ( formEntry . value ) . to . equal ( "readHoldingRegisters" ) ;
417
- } else if ( formEntry . idShort === "modbus_type " ) {
418
- // vs. "modbus :type"
415
+ } else if ( formEntry . idShort === "modv_type " ) {
416
+ // vs. "modv :type"
419
417
hasModbusType = true ;
420
418
expect ( formEntry . value ) . to . equal ( "string" ) ;
421
419
}
@@ -476,12 +474,12 @@ class AssetInterfaceDescriptionUtilTest {
476
474
} else if ( formEntry . idShort === "contentType" ) {
477
475
hasContentType = true ;
478
476
expect ( formEntry . value ) . to . equal ( "application/octet-stream" ) ;
479
- } else if ( formEntry . idShort === "modbus_function " ) {
480
- // vs. "modbus :function"
477
+ } else if ( formEntry . idShort === "modv_function " ) {
478
+ // vs. "modv :function"
481
479
hasModbusFunction = true ;
482
480
expect ( formEntry . value ) . to . equal ( "readHoldingRegisters" ) ;
483
- } else if ( formEntry . idShort === "modbus_type " ) {
484
- // vs. "modbus :type"
481
+ } else if ( formEntry . idShort === "modv_type " ) {
482
+ // vs. "modv :type"
485
483
hasModbusType = true ;
486
484
expect ( formEntry . value ) . to . equal ( "uint16be" ) ;
487
485
}
@@ -506,7 +504,7 @@ class AssetInterfaceDescriptionUtilTest {
506
504
expect ( hasProperties ) . to . equal ( true ) ;
507
505
}
508
506
}
509
- expect ( hasInterfaceMetadata , "No InterfaceMetadata " ) . to . equal ( true ) ;
507
+ expect ( hasInteractionMetadata , "No InteractionMetadata " ) . to . equal ( true ) ;
510
508
}
511
509
512
510
td1Base = "https://www.example.com/" ;
@@ -671,11 +669,11 @@ class AssetInterfaceDescriptionUtilTest {
671
669
expect ( hasThingTitle , "No thing title" ) . to . equal ( true ) ;
672
670
expect ( hasEndpointMetadata , "No EndpointMetadata" ) . to . equal ( true ) ;
673
671
674
- // InterfaceMetadata with properties etc
675
- let hasInterfaceMetadata = false ;
672
+ // InteractionMetadata with properties etc
673
+ let hasInteractionMetadata = false ;
676
674
for ( const smValue of smInterface . value ) {
677
- if ( smValue . idShort === "InterfaceMetadata " ) {
678
- hasInterfaceMetadata = true ;
675
+ if ( smValue . idShort === "InteractionMetadata " ) {
676
+ hasInteractionMetadata = true ;
679
677
expect ( smValue ) . to . have . property ( "value" ) . to . be . an ( "array" ) . to . have . lengthOf . greaterThan ( 0 ) ;
680
678
let hasProperties = false ;
681
679
for ( const interactionValues of smValue . value ) {
@@ -806,7 +804,7 @@ class AssetInterfaceDescriptionUtilTest {
806
804
expect ( hasProperties ) . to . equal ( true ) ;
807
805
}
808
806
}
809
- expect ( hasInterfaceMetadata , "No InterfaceMetadata " ) . to . equal ( true ) ;
807
+ expect ( hasInteractionMetadata , "No InteractionMetadata " ) . to . equal ( true ) ;
810
808
811
809
// Test to use all possible prefixes -> in this case it is only https
812
810
// Note: id is autogenerated (if not present) -> needs to be exluded/removed/set in TD
@@ -825,11 +823,11 @@ class AssetInterfaceDescriptionUtilTest {
825
823
const smInterface = smObj . submodelElements [ 0 ] ;
826
824
expect ( smInterface ) . to . have . property ( "value" ) . to . be . an ( "array" ) . to . have . lengthOf . greaterThan ( 0 ) ;
827
825
828
- // InterfaceMetadata with *no* properties for this protocol
829
- let hasInterfaceMetadata = false ;
826
+ // InteractionMetadata with *no* properties for this protocol
827
+ let hasInteractionMetadata = false ;
830
828
for ( const smValue of smInterface . value ) {
831
- if ( smValue . idShort === "InterfaceMetadata " ) {
832
- hasInterfaceMetadata = true ;
829
+ if ( smValue . idShort === "InteractionMetadata " ) {
830
+ hasInteractionMetadata = true ;
833
831
expect ( smValue ) . to . have . property ( "value" ) . to . be . an ( "array" ) . to . have . lengthOf . greaterThan ( 0 ) ;
834
832
for ( const interactionValues of smValue . value ) {
835
833
if ( interactionValues . idShort === "properties" ) {
@@ -838,7 +836,7 @@ class AssetInterfaceDescriptionUtilTest {
838
836
}
839
837
}
840
838
}
841
- expect ( hasInterfaceMetadata , "No InterfaceMetadata " ) . to . equal ( true ) ;
839
+ expect ( hasInteractionMetadata , "No InteractionMetadata " ) . to . equal ( true ) ;
842
840
}
843
841
844
842
@test async "should correctly transform sample TD1 into JSON AAS" ( ) {
@@ -866,8 +864,8 @@ class AssetInterfaceDescriptionUtilTest {
866
864
{
867
865
href : "modbus+tcp://127.0.0.1:60000/1" ,
868
866
op : "readproperty" ,
869
- "modbus :function" : "readCoil" ,
870
- "modbus :pollingTime" : 1 ,
867
+ "modv :function" : "readCoil" ,
868
+ "modv :pollingTime" : 1 ,
871
869
} ,
872
870
] ,
873
871
} ,
@@ -941,11 +939,11 @@ class AssetInterfaceDescriptionUtilTest {
941
939
expect ( hasThingTitle , "No thing title" ) . to . equal ( true ) ;
942
940
expect ( hasEndpointMetadata , "No EndpointMetadata" ) . to . equal ( true ) ;
943
941
944
- // InterfaceMetadata with properties etc
945
- let hasInterfaceMetadata = false ;
942
+ // InteractionMetadata with properties etc
943
+ let hasInteractionMetadata = false ;
946
944
for ( const smValue of smInterface . value ) {
947
- if ( smValue . idShort === "InterfaceMetadata " ) {
948
- hasInterfaceMetadata = true ;
945
+ if ( smValue . idShort === "InteractionMetadata " ) {
946
+ hasInteractionMetadata = true ;
949
947
expect ( smValue ) . to . have . property ( "value" ) . to . be . an ( "array" ) . to . have . lengthOf . greaterThan ( 0 ) ;
950
948
let hasProperties = false ;
951
949
for ( const interactionValues of smValue . value ) {
@@ -995,10 +993,10 @@ class AssetInterfaceDescriptionUtilTest {
995
993
hasOp = true ;
996
994
// Note: AID does not know "op"
997
995
// expect(formEntry.value).to.equal("readproperty");
998
- } else if ( formEntry . idShort === "modbus_function " ) {
996
+ } else if ( formEntry . idShort === "modv_function " ) {
999
997
hasModbusFunction = true ;
1000
998
expect ( formEntry . value ) . to . equal ( "readCoil" ) ;
1001
- } else if ( formEntry . idShort === "modbus_pollingTime " ) {
999
+ } else if ( formEntry . idShort === "modv_pollingTime " ) {
1002
1000
hasModbusAddress = true ;
1003
1001
expect ( formEntry . value ) . to . equal ( "1" ) ;
1004
1002
expect ( formEntry . valueType ) . to . equal ( "xs:int" ) ;
@@ -1023,7 +1021,7 @@ class AssetInterfaceDescriptionUtilTest {
1023
1021
expect ( hasProperties ) . to . equal ( true ) ;
1024
1022
}
1025
1023
}
1026
- expect ( hasInterfaceMetadata , "No InterfaceMetadata " ) . to . equal ( true ) ;
1024
+ expect ( hasInteractionMetadata , "No InteractionMetadata " ) . to . equal ( true ) ;
1027
1025
}
1028
1026
1029
1027
@test . skip async "should correctly transform counter TD into JSON AAS" ( ) {
0 commit comments