From ac293bde7fe17832b54ebbb8c382db8755003446 Mon Sep 17 00:00:00 2001 From: tma Date: Mon, 9 Sep 2019 14:36:22 +0300 Subject: [PATCH] 0030957: Data Exchange - Assembly item Id should not start with '/' symbol Fix test case: added parsing of the output of the dump note command --- src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx | 1 + tests/gdt/notes/B1 | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx b/src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx index 29984514ca..032ce30e82 100644 --- a/src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx +++ b/src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx @@ -119,5 +119,6 @@ XCAFDoc_AssemblyItemId::ToString() const aStr += '/'; aStr += anIt.Value(); } + aStr.Remove(1, 1); return aStr; } diff --git a/tests/gdt/notes/B1 b/tests/gdt/notes/B1 index c79c0ab2cc..6b2d952beb 100644 --- a/tests/gdt/notes/B1 +++ b/tests/gdt/notes/B1 @@ -4,7 +4,7 @@ set comment [XNoteCreateComment D "Hello, World!" --user "The user" --time [cloc XNoteDump D ${comment} # annotate box_1 -XNoteRefDump D [XNoteAdd D ${comment} ${box_1}] +set assemblyItemId [XNoteRefDump D [XNoteAdd D ${comment} ${box_1}]] # annotate box_2 XNoteRefDump D [XNoteAdd D ${comment} ${box_2}] @@ -16,3 +16,10 @@ XNoteAnnotations D 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" +}