mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0024755: TDF_Label::AddAttribute() reverses the order of added attributes
Test case and new draw command for issue CR24755 Fix of regression linked with test case bug24047. Fix of bug361 regression on Linux.
This commit is contained in:
parent
65812bd0e4
commit
d01cc61d44
@ -486,7 +486,7 @@ static Standard_Integer OCC361bug (Draw_Interpretor& di, Standard_Integer nb, co
|
||||
TopoDS_Shape aTBox = aBox.Shape();
|
||||
aTBox.Orientation(TopAbs_FORWARD);
|
||||
|
||||
TDF_Label aTestLabel = D->GetData()->Root();
|
||||
TDF_Label aTestLabel = D->Main();
|
||||
|
||||
TNaming_Builder aBuilder(aTestLabel);
|
||||
aBuilder.Generated(aTBox);
|
||||
|
@ -2079,6 +2079,39 @@ static Standard_Integer OCC24565 (Draw_Interpretor& di, Standard_Integer argc, c
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <AppStdL_Application.hxx>
|
||||
#include <TDocStd_Application.hxx>
|
||||
#include <TDataStd_Integer.hxx>
|
||||
#include <TDF_AttributeIterator.hxx>
|
||||
//=======================================================================
|
||||
//function : OCC24755
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
static Standard_Integer OCC24755 (Draw_Interpretor& di, Standard_Integer n, const char** a)
|
||||
{
|
||||
if (n != 1)
|
||||
{
|
||||
std::cout << "Usage : " << a[0] << "\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
Handle(TDocStd_Application) anApp = new AppStdL_Application;
|
||||
Handle(TDocStd_Document) aDoc;
|
||||
anApp->NewDocument ("MDTV-Standard", aDoc);
|
||||
TDF_Label aLab = aDoc->Main();
|
||||
TDataStd_Integer::Set (aLab, 0);
|
||||
TDataStd_Name::Set (aLab, "test");
|
||||
|
||||
TDF_AttributeIterator i (aLab);
|
||||
Handle(TDF_Attribute) anAttr = i.Value();
|
||||
QCOMPARE (anAttr->IsKind (STANDARD_TYPE (TDataStd_Integer)), Standard_True);
|
||||
i.Next();
|
||||
anAttr = i.Value();
|
||||
QCOMPARE (anAttr->IsKind (STANDARD_TYPE (TDataStd_Name)), Standard_True);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void QABugs::Commands_19(Draw_Interpretor& theCommands) {
|
||||
const char *group = "QABugs";
|
||||
|
||||
@ -2118,5 +2151,6 @@ void QABugs::Commands_19(Draw_Interpretor& theCommands) {
|
||||
theCommands.Add ("OCC24622", "OCC24622 texture={1D|2D}\n Tests sourcing of 1D/2D pixmaps for AIS_TexturedShape", __FILE__, OCC24622, group);
|
||||
theCommands.Add ("OCC24667", "OCC24667 result Wire_spine Profile [Mode [Approx]], no args to get help", __FILE__, OCC24667, group);
|
||||
theCommands.Add ("OCC24565", "OCC24565 FileNameIGS FileNameSTOR", __FILE__, OCC24565, group);
|
||||
theCommands.Add ("OCC24755", "OCC24755", __FILE__, OCC24755, group);
|
||||
return;
|
||||
}
|
||||
|
@ -550,7 +550,12 @@ void TDF_Label::AddToNode (const TDF_LabelNodePtr& toNode,
|
||||
|
||||
anAttribute->myTransaction = toNode->Data()->Transaction(); /// myData->Transaction();
|
||||
anAttribute->mySavedTransaction = 0;
|
||||
|
||||
//append to the end of the attribute list
|
||||
dummyAtt.Nullify();
|
||||
for (TDF_AttributeIterator itr (toNode); itr.More(); itr.Next())
|
||||
dummyAtt = itr.Value();
|
||||
|
||||
toNode->AddAttribute(dummyAtt,anAttribute);
|
||||
toNode->AttributesModified(anAttribute->myTransaction != 0);
|
||||
//if (myData->NotUndoMode()) anAttribute->AfterAddition();
|
||||
|
@ -1051,15 +1051,8 @@ static Standard_Integer testDoc (Draw_Interpretor&,
|
||||
|
||||
TPrsStd_AISViewer::Update(aLab);
|
||||
aContext->Display(aTriShape, Standard_True);
|
||||
Handle(TDocStd_Owner) owner;
|
||||
if (aD1->Main().Root().FindAttribute(TDocStd_Owner::GetID(), owner))
|
||||
{
|
||||
Handle_TDocStd_Document empty;
|
||||
owner->SetDocument(empty);
|
||||
}
|
||||
aContext.Nullify();
|
||||
aD1->BeforeClose();
|
||||
aD1->Close();
|
||||
aD1.Nullify();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
7
tests/bugs/caf/bug24755
Executable file
7
tests/bugs/caf/bug24755
Executable file
@ -0,0 +1,7 @@
|
||||
puts "==========="
|
||||
puts "OCC24755"
|
||||
puts "==========="
|
||||
|
||||
pload QAcommands
|
||||
|
||||
OCC24755
|
@ -11,3 +11,5 @@ if { [catch { OCC361 D }] } {
|
||||
puts "OCC361: Error"
|
||||
}
|
||||
|
||||
Close D
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user