-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathtest_segment.py
More file actions
64 lines (45 loc) · 1.78 KB
/
test_segment.py
File metadata and controls
64 lines (45 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# pydifact - a python edifact library
# Copyright (C) 2017-2024 Christian González
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import pytest
from pydifact.segments import Segment
elements = ["field1", ["field2", "extra"], "stuff"]
def test_get_segment_code_empty():
# check if pytest output contains warning
with pytest.warns(SyntaxWarning):
Segment("OMD") # noqa
def test_get_segment_code():
segment = Segment("OMD", "")
assert segment.tag == "OMD"
def test_all_elements():
segment = Segment("OMD", *elements)
assert segment.elements == elements
def test_get_single_element():
segment = Segment("OMD", *elements)
assert segment.elements[0] == "field1"
def test_get_list_element():
segment = Segment("OMD", *elements)
assert segment.elements[1] == ["field2", "extra"]
def test_get_non_existing_element():
segment = Segment("OMD", *elements)
with pytest.raises(IndexError):
segment.elements[7] # noqa
def test_has_plugin():
class TestSegment(Segment):
tag = "TES"
__omitted__ = False
def validate(self):
pass
assert TestSegment in Segment.plugins