-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_integration.py
187 lines (164 loc) · 4.87 KB
/
test_integration.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import unittest
from create_menu import (
select_recipes_brute_force,
Recipe,
DietaryPreferenceDTO,
CreateMenuUseCase,
GetMenuUseCase,
)
from create_recipes import (
GetRecipeUseCase,
CreateRecipeUseCase,
RecipeDTO,
RecipeId,
MacroNutrients,
Ingredient,
IngredientId,
)
from preferences import RestrictIngredient, MacroPreferences, KilocaloriesPreferences
from repositories import (
InMemoryIngredientRepository,
InMemoryRecipeRepository,
InMemoryMenuRepository,
)
bread = Ingredient(
id="bread",
macronutrients=MacroNutrients(
carbohydrates=200,
proteins=100,
fats=50,
),
kilocalories=100,
)
chicken = Ingredient(
id="chicken",
macronutrients=MacroNutrients(
carbohydrates=0,
proteins=100,
fats=10,
),
kilocalories=150,
)
lettuce = Ingredient(
id="lettuce",
macronutrients=MacroNutrients(
carbohydrates=10,
proteins=20,
fats=0,
),
kilocalories=10,
)
ground_beef = Ingredient(
id="ground_beef",
macronutrients=MacroNutrients(
carbohydrates=0,
proteins=100,
fats=100,
),
kilocalories=300,
)
salad_recipe = Recipe(
id=RecipeId("12345678123456781234567812345678"),
name="Chicken salad",
ingredients=[
(100, lettuce),
(10, bread),
(20, chicken),
],
yield_=2,
)
chicken_sandwich_recipe = Recipe(
id=RecipeId("23456781234567812345678123456781"),
name="Chicken sandwich",
ingredients=[
(30, lettuce),
(70, bread),
(150, chicken),
],
yield_=1,
)
hamburger_recipe = Recipe(
id=RecipeId("34567812345678123456781234567812"),
name="Burger",
ingredients=[
(30, lettuce),
(100, bread),
(150, ground_beef),
],
yield_=1,
)
class TestCreateMenuIntegration(unittest.TestCase):
def test_create_menu_no_preferences(self):
select_recipes_brute_force(
[salad_recipe, chicken_sandwich_recipe, hamburger_recipe], 7
)
def test_create_menu_with_alergen(self):
preference = RestrictIngredient(IngredientId("ground_beef"))
menu = select_recipes_brute_force(
[hamburger_recipe, chicken_sandwich_recipe, salad_recipe], 7, preference
)
self.assertNotIn(hamburger_recipe, menu)
def test_create_menu_diet(self):
preference = KilocaloriesPreferences(100)
menu = select_recipes_brute_force(
[hamburger_recipe, chicken_sandwich_recipe, salad_recipe], 1, preference
)
self.assertEqual(salad_recipe, menu[0])
def test_create_menu_fit(self):
preference = MacroPreferences(
carbohydrates=1000,
proteins=2000,
fats=100,
)
menu = select_recipes_brute_force(
[hamburger_recipe, salad_recipe, chicken_sandwich_recipe], 7, preference
)
self.assertIn(chicken_sandwich_recipe, menu)
self.assertNotIn(hamburger_recipe, menu)
class TestGetRecipeUseCaseE2E(unittest.TestCase):
def setUp(self):
self.get_recipe = GetRecipeUseCase(
InMemoryRecipeRepository.from_file("data/recipes.json")
)
def test_user_journey(self):
recipe = self.get_recipe(RecipeId("430e1479-8ba7-44cd-86b6-f77ed081de09"))
self.assertEqual(recipe.name, "tepid salad")
class TestCreateRecipeUseCaseE2E(unittest.TestCase):
def setUp(self):
repo = InMemoryRecipeRepository.from_file("data/recipes.json")
self.get_recipe = GetRecipeUseCase(repo)
self.create_recipe = CreateRecipeUseCase(
repo, InMemoryIngredientRepository.from_file("data/ingredients.json")
)
def test_user_journey(self):
recipe = self.create_recipe(
RecipeDTO(
name="Salad",
ingredients=[
(500, "Tomatoes, grape, raw"),
(500, "Lettuce, cos or romaine, raw"),
],
yield_=4,
)
)
created_recipe = self.get_recipe(recipe.id)
self.assertEqual(created_recipe.name, "Salad")
class TestCreateMenuUseCaseE2E(unittest.TestCase):
def setUp(self):
recipe_repo = InMemoryRecipeRepository.from_file("data/recipes.json")
menu_repo = InMemoryMenuRepository()
self.create_menu = CreateMenuUseCase(recipe_repo, menu_repo)
self.get_menu = GetMenuUseCase(menu_repo)
def test_user_journey(self):
preferences = [
DietaryPreferenceDTO(
type_="restrict-ingredient",
parameters={
"ingredient_id": IngredientId(0),
},
)
]
menu = self.create_menu(2, preferences)
created_menu = self.get_menu(menu.id)
self.assertEqual(len(menu.meals), 2)
self.assertEqual(created_menu.id, menu.id)