1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
tma ac293bde7f 0030957: Data Exchange - Assembly item Id should not start with '/' symbol
Fix test case: added parsing of the output of the dump note command
2019-09-11 18:48:14 +03:00

26 lines
635 B
Plaintext

# create comment note
set comment [XNoteCreateComment D "Hello, World!" --user "The user" --time [clock format [clock seconds] -format "%Y-%m-%dT%H:%M:%S"]]
XNoteDump D ${comment}
# annotate box_1
set assemblyItemId [XNoteRefDump D [XNoteAdd D ${comment} ${box_1}]]
# annotate box_2
XNoteRefDump D [XNoteAdd D ${comment} ${box_2}]
# list annotations
XNoteAnnotations D
# expected results
set nb_annotations_result 2
set nb_notes_result 1
set nb_orphan_result 0
# check the assembly item id
if {[regexp "Item : ${box_1}" ${assemblyItemId}]} {
puts "OK : assembly item id"
} else {
puts "Error : wrong assembly item id"
}