-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_sketch_behaviour.py
32 lines (24 loc) · 1.21 KB
/
test_sketch_behaviour.py
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
"""Tests the upstream sketch examples against applicable cli tools."""
import contextlib
import os
from pathlib import Path
import pytest
def test_invalid_sketch_errors(arduino_tool):
"""Checks for a non-zero exit code when run on errored source."""
arduino_tool.paths[0] = str(Path("InvalidSketch/").resolve())
# Suppress the CLI response, is confusing when viewing test results.
with contextlib.redirect_stderr(open(os.devnull, "w", encoding="utf-8")):
with pytest.raises(SystemExit) as exit_case:
arduino_tool.run()
assert exit_case.value.code > 0 # non-zero exit code.
def test_cli_good_code(arduino_tool):
"""Checks for zero exit code when run on valid source."""
arduino_tool.paths[0] = str(Path("ValidSketch/").resolve())
assert arduino_tool.run() is None
def test_lint_no_project_fails(arduino_tool):
"""Checks when a project can't be resolved non-zero exit."""
# Suppress the CLI response, is confusing when viewing test results.
with contextlib.redirect_stderr(open(os.devnull, "w", encoding="utf-8")):
with pytest.raises(SystemExit) as exit_case:
arduino_tool.run()
assert exit_case.value.code > 0 # non-zero exit code.