-
Notifications
You must be signed in to change notification settings - Fork 60
/
test_manifest.py
134 lines (109 loc) · 3.52 KB
/
test_manifest.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright 2023 Ericsson AB.
# For a full list of individual contributors, please see the commit history.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from generate_manifest import Manifest
@pytest.fixture(scope="session")
def manifest():
return Manifest("event_manifest.yml")
def test_get_edition_tags(manifest):
assert manifest.tags == [
"edition-bordeaux",
"edition-toulouse",
"edition-agen",
"edition-agen-1",
"edition-paris",
"edition-lyon",
"edition-arica",
"edition-orizaba",
]
def test_edition_tag(manifest):
assert manifest.is_edition_tag("edition-bordeaux") is True
def test_not_edition_tag(manifest):
assert manifest.is_edition_tag("edition-foo") is False
def test_event_version(manifest):
assert (
manifest.event_version_by_tag("edition-agen", "EiffelActivityTriggeredEvent")
== "3.0.0"
)
def test_get_previous_edition(manifest):
assert (
manifest.get_previous_edition_by_tag("edition-agen")["tag"]
== "edition-toulouse"
)
def test_get_previous_edition_of_first_edition(manifest):
assert manifest.get_previous_edition_by_tag("edition-bordeaux") is None
def test_is_event_version_part_of_edition(manifest):
"""
EiffelActivityTriggeredEvent:
- Toulouse: 1.1.0
- Agen: 3.0.0
- Agen-1: 4.0.0
"""
assert (
manifest.is_in_edition("edition-agen", "EiffelActivityTriggeredEvent", "1.0.0")
is False
)
assert (
manifest.is_in_edition("edition-agen", "EiffelActivityTriggeredEvent", "2.0.0")
is True
)
assert (
manifest.is_in_edition("edition-agen", "EiffelActivityTriggeredEvent", "3.0.0")
is True
)
assert (
manifest.is_in_edition("edition-agen", "EiffelActivityTriggeredEvent", "4.0.0")
is False
)
def test_is_new_event_version_part_of_edition(manifest):
"""
EiffelIssueDefinedEvent:
- Toulouse: Not existing
- Agen: 3.0.0
"""
assert (
manifest.is_in_edition("edition-agen", "EiffelIssueDefinedEvent", "2.0.0")
is True
)
assert (
manifest.is_in_edition("edition-agen", "EiffelIssueDefinedEvent", "3.0.0")
is True
)
def test_is_event_version_part_of_first_edition(manifest):
"""
EiffelActivityTriggeredEvent
- Bordeaux: 1.0.0
"""
assert (
manifest.is_in_edition(
"edition-bordeaux", "EiffelActivityTriggeredEvent", "0.1.0"
)
is True
)
assert (
manifest.is_in_edition(
"edition-bordeaux", "EiffelActivityTriggeredEvent", "1.0.0"
)
is True
)
assert (
manifest.is_in_edition(
"edition-bordeaux", "EiffelActivityTriggeredEvent", "2.0.0"
)
is False
)
def test_is_event_version_part_of_nonexistent_edition(manifest):
with pytest.raises(ValueError, match=r".*not found amongst.*"):
manifest.is_in_edition("edition-foo", "EiffelActivityTriggeredEvent", "2.0.0")