Projects:ARRA:VTKWidgetsTesting

From NAMIC Wiki
Revision as of 18:45, 29 July 2010 by Naucoin (talk | contribs) (Created page with 'Working from the Slicer3 VTK56 git repository. First goal is to set up a similar infrastructure as used in Slicer3/Libs/MRML testing, which uses a file defining basic testing mac…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home < Projects:ARRA:VTKWidgetsTesting

Working from the Slicer3 VTK56 git repository. First goal is to set up a similar infrastructure as used in Slicer3/Libs/MRML testing, which uses a file defining basic testing macros that exercise calls methods on super classes and chains macros together as you get down to testing subclasses. The file

 VTK/Widgets/Testing/Cxx/WidgetTestingMacros.h

is set up to define:

  EXERCISE_BASIC_OBJECT_METHODS (copied from Slicer, thanks to Luis Ibanez)
  TEST_SET_GET for various variable types (INT, BOOLEAN, STRING, DOUBLE, VECTOR3, CHAR)
  EXERCISE_BASIC_INTERACTOR_OBSERVER_METHODS for the superclass (could be moved/copied to VTK/Rendering/Testing, no tests yet)
  EXERCISE_BASIC_ABSTRACT_METHODS
  EXERCISE_BASIC_BORDER_METHODS to test widgets that inherit from vtkBorderWidget (Text)
  EXERCISE_BASIC_HOVER_METHOD to test widgets that inherit from vtkHoverWidget (Balloon)

Then new testing .cxx files were crafted and added to the CMakeLists.txt to use these basic macros to test every call.

Then extend it to exercise basic prop, widget representation, border representation methods once get to testing the widget representations.

WORK IN PROGRESS

Notes made while writing the Widget tests: (priorities taken from here: Priority Widgets, indentation shows inheritance)

  • vtkInteractorObserver defines the Enabled variable and the On/Off methods. Testing them in isolation shows that there are missing checks for having an interactor defined, as the test crashes consistently even after creating a render window and interactor to pass to the widget
    • vtkAbstractWidget Set/Get Parent doesn't work in stand alone tests
      • vtkAngleWidget
      • vtkBidimensionalWidget
      • vtkImplicitPlaneWidget2
      • vtkLineWidget2
      • vtkSeedWidget
      • vtkSplineWidget2
    • vtkBorderWidget
      • vtkCaptionWidget
      • vtkTextWidget
    • vtkHoverWidget
      • vtkBaloonWidget

Testing the representations:

  • vtkProp
    • vtkWidgetRepresentation
      • vtkAngleRepresentation
      • vtkBalloonRepresentation - no HoverRepresentation?
      • vtkBiDimensionalRepresentation2D - missing 3D?
      • vtkBorderRepresentation
        • vtkCaptionRepresentation
        • vtkTextRepresentation
      • vtkImplicitPlaneRepresentation - matches to vtkImplicitPlaneWidget2?
      • vtkLineRepresentation - matches to LineWidget2?
      • vtkSeedRepresentation
      • vtkSplineRepresentation