forked from WhyNotHugo/python-barcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_init.py
More file actions
44 lines (30 loc) · 1.38 KB
/
test_init.py
File metadata and controls
44 lines (30 loc) · 1.38 KB
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
from __future__ import annotations
import os
from io import BytesIO
import pytest
import barcode
from barcode.writer import SVGWriter
PATH = os.path.dirname(os.path.abspath(__file__))
TESTPATH = os.path.join(PATH, "test_outputs")
def test_generate_without_output() -> None:
with pytest.raises(TypeError, match="'output' cannot be None"):
barcode.generate("ean13", "123455559121112")
def test_generate_with_file() -> None:
with open(os.path.join(TESTPATH, "generate_with_file.jpeg"), "wb") as f:
barcode.generate("ean13", "123455559121112", output=f)
def test_generate_with_filepath() -> None:
# FIXME: extension is added to the filepath even if you include it.
rv = barcode.generate(
"ean13",
"123455559121112",
output=os.path.join(TESTPATH, "generate_with_filepath"),
)
assert rv == os.path.abspath(os.path.join(TESTPATH, "generate_with_filepath.svg"))
def test_generate_with_file_and_writer() -> None:
with open(os.path.join(TESTPATH, "generate_with_file_and_writer.jpeg"), "wb") as f:
barcode.generate("ean13", "123455559121112", output=f, writer=SVGWriter())
def test_generate_with_bytesio() -> None:
bio = BytesIO()
barcode.generate("ean13", "123455559121112", output=bio)
# XXX: File is not 100% deterministic; needs to be addressed at some point.
# assert len(bio.getvalue()) == 6127 # noqa: ERA001