Esempio n. 1
0
 def temp_get_devices_2(self):
     """ Test set_copies() and set_rotation(90) should stack along x axis."""
     plot = Plot(90*12,90*12*4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(4)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
Esempio n. 2
0
 def temp_get_devices_2(self):
     """ Test set_copies() and set_rotation(90) should stack along x axis."""
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(4)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
Esempio n. 3
0
 def test_align_center_y(self):
     """ Makes sure the graphic is centered correctly in the y direction"""
     plot = Plot(90*12,90*12*4)
     plot.set_rotation(90)
     plot.set_padding(35,0,35,0)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_align_center_y(True)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
     log.debug("Checking position...")
     assert round(plot.get_position()[0],10) == 0, "%s != %s" % (round(plot.get_position()[0],10),0)
     assert round(plot.get_position()[1],10) == round((90*12-70-plot.graphic.get_height())/2,10), "%s != %s" % (round(plot.get_position()[1],10),round((90*12-70-plot.graphic.get_height())/2,10))
Esempio n. 4
0
 def test_set_copies(self):
     """ Test set_copies() and set_rotation(90) should stack along x axis."""
     plot = Plot(90*12,90*12*4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(4)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
     spacing = plot.get_spacing()
     assert len(plot._data) == 4
     assert plot.get_width() == plot.graphic.get_width()
     assert round(plot.get_height(),10) == round(plot.graphic.get_height()*4+spacing[1]*3,10)
Esempio n. 5
0
 def test_set_copies_3(self):
     """ Test set_copies() and get_preview_xml() should stack 7 along  the x axis. """
     plot = Plot(90*12,90*12*4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(7)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
     spacing = plot.get_spacing()
     assert len(plot._data) == 7
     assert plot.get_stack_size_y() == 5, "Stack size: %s" % plot.get_stack_size_y()
     assert round(plot.get_width(),10) == round(plot.graphic.get_width()*2 + spacing[0],10)
     assert round(plot.get_height(),10) == round(plot.graphic.get_height()*5+spacing[1]*4,10)
Esempio n. 6
0
 def test_set_copies(self):
     """ Test set_copies() and set_rotation(90) should stack along x axis."""
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(4)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
     spacing = plot.get_spacing()
     assert len(plot._data) == 4
     assert plot.get_width() == plot.graphic.get_width()
     assert round(plot.get_height(), 10) == round(
         plot.graphic.get_height() * 4 + spacing[1] * 3, 10)
Esempio n. 7
0
 def test_weedline(self):
     """
     Test that a weedline graphic is added to the plot and that 0 padding
     doesn't change the bbox.
     """
     plot = Plot(90*12,90*12*4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_rotation(90)
     plot.set_copies(7)
     bbox = plot.get_bounding_box()
     plot.set_weedline(True)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
     assert len(plot._data) == 8, "len(plot._data) = %s, expect 8" %(len(plot._data))
     assert map(lambda x: round(x,10),plot.get_bounding_box()) == map(lambda x: round(x,10),bbox), "bbox before %s != bbox after weedline %s" % (bbox,plot.get_bounding_box())
Esempio n. 8
0
 def test_weedline_padding(self):
     """
     Test that a weedline graphic is added to the plot and that 35 padding
     only changes the width and height of the bbox by +=2*padding.
     """
     plot = Plot(90*12,90*12*4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_rotation(90)
     plot.set_copies(6)
     bbox = plot.get_bounding_box()
     plot.set_weedline(True)
     pad = 35
     plot.set_weedline_padding(pad)
     f = open("out/plot_%s.svg"%sys._getframe().f_code.co_name,"w")
     f.write(plot.get_preview_xml())
     f.close()
     assert len(plot._data) == 7, "len(plot._data) = %s, expect 7" %(len(plot._data))
     assert map(lambda x: round(x,10),plot.get_bounding_box()) == [0,bbox[1]+2*pad,35,bbox[3]+2*pad], "bbox before %s != bbox after weedline %s" % ([0,bbox[1]+35,35,bbox[3]+35],map(lambda x: round(x,10),plot.get_bounding_box()))
Esempio n. 9
0
 def test_set_copies_3(self):
     """ Test set_copies() and get_preview_xml() should stack 7 along  the x axis. """
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_copies(7)
     plot.set_rotation(90)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
     spacing = plot.get_spacing()
     assert len(plot._data) == 7
     assert plot.get_stack_size_y(
     ) == 5, "Stack size: %s" % plot.get_stack_size_y()
     assert round(plot.get_width(),
                  10) == round(plot.graphic.get_width() * 2 + spacing[0],
                               10)
     assert round(plot.get_height(), 10) == round(
         plot.graphic.get_height() * 5 + spacing[1] * 4, 10)
Esempio n. 10
0
 def test_align_center_y_2(self):
     """ Makes sure the graphic is centered correctly in the y direction"""
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_rotation(90)
     plot.set_padding(35, 0, 35, 0)
     plot.set_copies(7)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     h = plot.graphic.get_height() * 5 + 4 * plot.get_spacing()[1]
     plot.set_align_center_y(True)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
     log.debug("Checking position...")
     assert round(
         plot.get_position()[0],
         10) == 0, "%s != %s" % (round(plot.get_position()[0], 10), 0)
     assert round(plot.get_position()[1], 10) == round(
         (90 * 12 - 70 - h) / 2, 10), "%s != %s" % (round(
             plot.get_position()[1], 10), round((90 * 12 - 70 - h) / 2, 10))
Esempio n. 11
0
 def test_weedline(self):
     """
     Test that a weedline graphic is added to the plot and that 0 padding
     doesn't change the bbox.
     """
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_rotation(90)
     plot.set_copies(7)
     bbox = plot.get_bounding_box()
     plot.set_weedline(True)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
     assert len(plot._data) == 8, "len(plot._data) = %s, expect 8" % (len(
         plot._data))
     assert map(lambda x: round(x, 10), plot.get_bounding_box()) == map(
         lambda x: round(x, 10),
         bbox), "bbox before %s != bbox after weedline %s" % (
             bbox, plot.get_bounding_box())
Esempio n. 12
0
 def test_weedline_padding(self):
     """
     Test that a weedline graphic is added to the plot and that 35 padding
     only changes the width and height of the bbox by +=2*padding.
     """
     plot = Plot(90 * 12, 90 * 12 * 4)
     plot.set_graphic(etree.tostring(etree.parse("arrow.svg")))
     plot.set_rotation(90)
     plot.set_copies(6)
     bbox = plot.get_bounding_box()
     plot.set_weedline(True)
     pad = 35
     plot.set_weedline_padding(pad)
     f = open("out/plot_%s.svg" % sys._getframe().f_code.co_name, "w")
     f.write(plot.get_preview_xml())
     f.close()
     assert len(plot._data) == 7, "len(plot._data) = %s, expect 7" % (len(
         plot._data))
     assert map(lambda x: round(x, 10), plot.get_bounding_box()) == [
         0, bbox[1] + 2 * pad, 35, bbox[3] + 2 * pad
     ], "bbox before %s != bbox after weedline %s" % ([
         0, bbox[1] + 35, 35, bbox[3] + 35
     ], map(lambda x: round(x, 10), plot.get_bounding_box()))