mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030957: Data Exchange - Assembly item Id should not start with '/' symbol
Fix test case: added parsing of the output of the dump note command
This commit is contained in:
parent
a53d3975c9
commit
ac293bde7f
@ -119,5 +119,6 @@ XCAFDoc_AssemblyItemId::ToString() const
|
|||||||
aStr += '/';
|
aStr += '/';
|
||||||
aStr += anIt.Value();
|
aStr += anIt.Value();
|
||||||
}
|
}
|
||||||
|
aStr.Remove(1, 1);
|
||||||
return aStr;
|
return aStr;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ set comment [XNoteCreateComment D "Hello, World!" --user "The user" --time [cloc
|
|||||||
XNoteDump D ${comment}
|
XNoteDump D ${comment}
|
||||||
|
|
||||||
# annotate box_1
|
# annotate box_1
|
||||||
XNoteRefDump D [XNoteAdd D ${comment} ${box_1}]
|
set assemblyItemId [XNoteRefDump D [XNoteAdd D ${comment} ${box_1}]]
|
||||||
|
|
||||||
# annotate box_2
|
# annotate box_2
|
||||||
XNoteRefDump D [XNoteAdd D ${comment} ${box_2}]
|
XNoteRefDump D [XNoteAdd D ${comment} ${box_2}]
|
||||||
@ -16,3 +16,10 @@ XNoteAnnotations D
|
|||||||
set nb_annotations_result 2
|
set nb_annotations_result 2
|
||||||
set nb_notes_result 1
|
set nb_notes_result 1
|
||||||
set nb_orphan_result 0
|
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"
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user