1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import params
import pytest
"""
Test command "open-project --export-schematics"
"""
@pytest.mark.parametrize("project", [
params.EMPTY_PROJECT_LPP_PARAM,
params.PROJECT_WITH_TWO_BOARDS_LPPZ_PARAM,
])
def test_if_unknown_file_extension_fails(cli, project):
cli.add_project(project.dir, as_lppz=project.is_lppz)
code, stdout, stderr = cli.run('open-project',
'--export-schematics=foo.bar',
project.path)
assert stderr == \
" ERROR: Failed to export image \"{path}\". Check file permissions " \
"and make sure to use a supported image file extension.\n".format(
path=cli.abspath('foo.bar'),
)
assert stdout == \
"Open project '{project.path}'...\n" \
"Export schematics to 'foo.bar'...\n" \
"Finished with errors!\n".format(project=project)
assert code == 1
@pytest.mark.parametrize("project", [
params.EMPTY_PROJECT_LPP_PARAM,
params.PROJECT_WITH_TWO_BOARDS_LPPZ_PARAM,
])
def test_exporting_pdf_with_relative_path(cli, project):
cli.add_project(project.dir, as_lppz=project.is_lppz)
path = cli.abspath('sch.pdf')
assert not os.path.exists(path)
code, stdout, stderr = cli.run('open-project',
'--export-schematics=sch.pdf',
project.path)
assert stderr == ''
assert stdout == \
"Open project '{project.path}'...\n" \
"Export schematics to 'sch.pdf'...\n" \
" => 'sch.pdf'\n" \
"SUCCESS\n".format(project=project)
assert code == 0
assert os.path.exists(path)
@pytest.mark.parametrize("project", [
params.EMPTY_PROJECT_LPP_PARAM,
params.PROJECT_WITH_TWO_BOARDS_LPPZ_PARAM,
])
def test_exporting_pdf_with_absolute_path(cli, project):
"""
Note: Test with passing the argument as "--arg <value>".
"""
cli.add_project(project.dir, as_lppz=project.is_lppz)
path = cli.abspath('schematic with spaces.pdf')
assert not os.path.exists(path)
code, stdout, stderr = cli.run('open-project',
'--export-schematics', path,
project.path)
assert stderr == ''
assert stdout == \
"Open project '{project.path}'...\n" \
"Export schematics to '{path}'...\n" \
" => '{path}'\n" \
"SUCCESS\n".format(project=project, path=path)
assert code == 0
assert os.path.exists(path)
@pytest.mark.parametrize("file_extension", [
'svg',
'png',
])
def test_exporting_images(cli, file_extension):
project = params.PROJECT_WITH_TWO_BOARDS_LPPZ
cli.add_project(project.dir, as_lppz=project.is_lppz)
path = cli.abspath('schematic with spaces.' + file_extension)
assert not os.path.exists(path)
code, stdout, stderr = cli.run('open-project',
'--export-schematics={}'.format(path),
project.path)
assert stderr == ''
assert stdout == \
"Open project '{project.path}'...\n" \
"Export schematics to '{path}'...\n" \
" => '{path}'\n" \
"SUCCESS\n".format(project=project, path=path)
assert code == 0
assert os.path.exists(path)
@pytest.mark.parametrize("project", [
params.EMPTY_PROJECT_LPP_PARAM,
params.PROJECT_WITH_TWO_BOARDS_LPPZ_PARAM,
])
def test_if_output_directories_are_created(cli, project):
cli.add_project(project.dir, as_lppz=project.is_lppz)
dir = cli.abspath('nonexistent directory/nested')
path = os.path.join(dir, 'schematic.pdf')
assert not os.path.exists(dir)
code, stdout, stderr = cli.run('open-project',
'--export-schematics={}'.format(path),
project.path)
assert stderr == ''
assert stdout == \
"Open project '{project.path}'...\n" \
"Export schematics to '{path}'...\n" \
" => '{path}'\n" \
"SUCCESS\n".format(project=project, path=path)
assert code == 0
assert os.path.exists(dir)
assert os.path.exists(path)
|