示例#1
0
def test_gotocenter_01():
    p = instantiate_virtual_plotter()
    p.goto_center()
    assert p._serial_port._received_commands_string == 'IN;PA5160.00,3960.00;'
    assert p._serial_port.get_received_commands() == [
        IN(), PA([(5160.0, 3960.0)])
    ]
示例#2
0
def test_set_plot_window_01():
    '''Arguments as tuples.'''
    p = instantiate_virtual_plotter()
    p.set_plot_window((0, 0), (1, 2))
示例#3
0
def test_plotter_write_01( ):
    '''write( ) can take a string of raw HPGL commands.'''
    p = instantiate_virtual_plotter( )
    commands = 'SP1;PA0,0;PD;PU;'
    p.write(commands)
    assert p.format == 'IN;' + commands
示例#4
0
def test_plotter_write_03( ):
    '''write( ) can take list/tuple of string HPGL commands.'''
    p = instantiate_virtual_plotter( )
    commands = ['SP2;', 'PA0,0;', 'PD;', 'PU;']
    p.write(commands)
    assert p.format == 'IN;' + ''.join(commands)
示例#5
0
def test_marginsoft_01( ):
    '''plotter.margins.soft is an instance of MarginsSoft.'''
    p = instantiate_virtual_plotter( )
    m = p.margins.soft
    assert isinstance(m, MarginsSoft)
示例#6
0
def test_plotter_write_03():
    '''write( ) can take list/tuple of string HPGL commands.'''
    p = instantiate_virtual_plotter()
    commands = ['SP2;', 'PA0,0;', 'PD;', 'PU;']
    p.write(commands)
    assert p.format == 'IN;' + ''.join(commands)
示例#7
0
def test_set_origin_center():
    p = instantiate_virtual_plotter()
    p.set_origin_center()
示例#8
0
def test_nudge():
    p = instantiate_virtual_plotter()
    p.nudge(1, 2)
def test_set_origin_bottom_left():
    p = instantiate_virtual_plotter( )
    p.set_origin_bottom_left()
示例#10
0
def test_nudge():
    p = instantiate_virtual_plotter( )
    p.nudge(1, 2)
示例#11
0
def test_goto_top_right():
    p = instantiate_virtual_plotter( )
    p.goto_top_right()
示例#12
0
def test_goto_origin():
    p = instantiate_virtual_plotter( )
    p.goto_origin()
示例#13
0
def test_goto_bottom_left():
    p = instantiate_virtual_plotter( )
    p.goto_bottom_left()
示例#14
0
def test_gotocenter_01():
    p = instantiate_virtual_plotter( )
    p.goto_center()
    assert p._serial_port._received_commands_string == 'IN;PA5160.00,3960.00;'
    assert p._serial_port.get_received_commands() == [IN(), PA([(5160.0,3960.0)])]
示例#15
0
def test_plotter_write_01():
    '''write( ) can take a string of raw HPGL commands.'''
    p = instantiate_virtual_plotter()
    commands = 'SP1;PA0,0;PD;PU;'
    p.write(commands)
    assert p.format == 'IN;' + commands
示例#16
0
def test_set_origin_top_right():
    p = instantiate_virtual_plotter( )
    p.set_origin_top_right()
示例#17
0
def test_goto_origin():
    p = instantiate_virtual_plotter()
    p.goto_origin()
示例#18
0
def test_set_origin_center():
    p = instantiate_virtual_plotter( )
    p.set_origin_center()
示例#19
0
def test_set_origin_top_right():
    p = instantiate_virtual_plotter()
    p.set_origin_top_right()
示例#20
0
def test_set_origin_current_location():
    p = instantiate_virtual_plotter()
    p.set_origin_current_location()
示例#21
0
def test_set_origin_to_point():
    p = instantiate_virtual_plotter()
    p.set_origin_to_point(Coordinate(1, 2))
示例#22
0
def test_goto_01():
    p = instantiate_virtual_plotter( )
    p.goto(10, 10)
    assert p._serial_port.get_received_commands() == [IN(), PA([(10, 10)])]
示例#23
0
def test_marginsoft_03( ):
    '''MarginsSoft.top_right returns a Coordinate.'''
    p = instantiate_virtual_plotter( )
    m = p.margins.soft.top_right
    assert isinstance(m, Coordinate)
示例#24
0
def test_set_origin_to_point():
    p = instantiate_virtual_plotter()
    p.set_origin_to_point(Coordinate(1, 2))
示例#25
0
def test_plotter_write_02( ):
    '''write( ) can take a Chiplotle HPGL command.'''
    p = instantiate_virtual_plotter( )
    command = CI(1000)
    p.write(command)
    assert p.format == 'IN;' + command.format
示例#26
0
def test_rotate():
    p = instantiate_virtual_plotter()
    p.rotate(90)
示例#27
0
def test_plotter_write_04( ):
    '''write( ) can take list/tuple of Chiplotle HPGL commands.'''
    p = instantiate_virtual_plotter( )
    commands = [PA([(1000, 0)]), CI(500)]
    p.write(commands)
    assert p.format == 'IN;' + ''.join([c.format for c in commands])
示例#28
0
def test_scale():
    p = instantiate_virtual_plotter()
    p.scale(0, 0, 2, 2)
示例#29
0
def test_scale():
    p = instantiate_virtual_plotter()
    p.scale(0, 0, 2, 2)
示例#30
0
def test_set_plot_window_01():
    '''Arguments as tuples.'''
    p = instantiate_virtual_plotter()
    p.set_plot_window((0, 0), (1, 2))
示例#31
0
def test_set_plot_window_02():
    '''Arguments as coordinates.'''
    p = instantiate_virtual_plotter()
    p.set_plot_window(Coordinate(0, 0), Coordinate(1, 2))
示例#32
0
def test_set_plot_window_02():
    '''Arguments as coordinates.'''
    p = instantiate_virtual_plotter()
    p.set_plot_window(Coordinate(0, 0), Coordinate(1, 2))
示例#33
0
def test_goto_bottom_left():
    p = instantiate_virtual_plotter()
    p.goto_bottom_left()
示例#34
0
def test_plotter_write_01():
    """write( ) can take a string of raw HPGL commands."""
    p = instantiate_virtual_plotter()
    commands = b"SP1;PA0,0;PD;PU;"
    p.write(commands)
    assert p.format == b"IN;" + commands
示例#35
0
def test_goto_top_right():
    p = instantiate_virtual_plotter()
    p.goto_top_right()
示例#36
0
def test_plotter_write_02():
    """write( ) can take a Chiplotle HPGL command."""
    p = instantiate_virtual_plotter()
    command = CI(1000)
    p.write(command)
    assert p.format == b"IN;" + command.format
示例#37
0
def test_set_origin_bottom_left():
    p = instantiate_virtual_plotter()
    p.set_origin_bottom_left()
示例#38
0
def test_plotter_write_03():
    """write( ) can take list/tuple of string HPGL commands."""
    p = instantiate_virtual_plotter()
    commands = [b"SP2;", b"PA0,0;", b"PD;", b"PU;"]
    p.write(commands)
    assert p.format == b"IN;" + b"".join(commands)
示例#39
0
def test_goto_01():
    p = instantiate_virtual_plotter()
    p.goto(10, 10)
    assert p._serial_port.get_received_commands() == [IN(), PA([(10, 10)])]
示例#40
0
def test_plotter_write_04():
    """write( ) can take list/tuple of Chiplotle HPGL commands."""
    p = instantiate_virtual_plotter()
    commands = [PA([(1000, 0)]), CI(500)]
    p.write(commands)
    assert p.format == b"IN;" + b"".join([c.format for c in commands])
示例#41
0
def test_set_origin_current_location():
    p = instantiate_virtual_plotter()
    p.set_origin_current_location()
示例#42
0
def test_marginsoft_02( ):
    '''MarginsSoft.bottom_left returns a Coordinate.'''
    p = instantiate_virtual_plotter( )
    m = p.margins.soft.bottom_left
    assert isinstance(m, Coordinate)
示例#43
0
def test_rotate():
    p = instantiate_virtual_plotter()
    p.rotate(90)
示例#44
0
def test_plotter_write_02():
    '''write( ) can take a Chiplotle HPGL command.'''
    p = instantiate_virtual_plotter()
    command = CI(1000)
    p.write(command)
    assert p.format == 'IN;' + command.format