-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummy_data.py
318 lines (313 loc) · 9.52 KB
/
dummy_data.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
"""Dummy Data to Feed Database Tables for Testing Purposes."""
projects_list_full = [
{
'project_name': 'Wind Factory Project',
'project_aim': 'To create Wind Factory for energy self sufficiency',
'project_budget': 500000,
'manager': {
'firstname': 'Bernard',
'lastname': 'Shaw',
'salary': 111000,
'email': '[email protected]'
},
'tasks': [
{
'task_name': 'Organize Tech World',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres',
'assignees': [
{
'firstname': 'Alice',
'lastname': 'Brown',
'salary': 56000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Make Fashion Fiesta',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Bob',
'lastname': 'Smith',
'salary': 63000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Participate in the Fashion Fiesta',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Charlie',
'lastname': 'Davis',
'salary': 58000,
'email': '[email protected]'
},
]
},
]
},
{
'project_name': 'Sun Energy Project',
'project_aim': 'To create Sun Energy Factory for energy self sufficiency',
'project_budget': 600900,
'manager': {
'firstname': 'Warren',
'lastname': 'Buffett',
'salary': 121000,
'email': '[email protected]'
},
'tasks': [
{
'task_name': 'Create Grocery Hub',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres',
'assignees': [
{
'firstname': 'Alice',
'lastname': 'Brown',
'salary': 56000,
'email': '[email protected]'
},
{
'firstname': 'Charlie',
'lastname': 'Davis',
'salary': 58000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Visit Grocery Hub',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Julia',
'lastname': 'Roberts',
'salary': 73000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Raise Morning Sun',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Bob',
'lastname': 'Smith',
'salary': 63000,
'email': '[email protected]'
},
]
},
]
},
{
'project_name': 'Moon Surface Project',
'project_aim': 'To send Dream Team to the Moon for minerals',
'project_budget': 450000,
'manager': {
'firstname': 'Johnny',
'lastname': 'Depp',
'salary': 81000,
'email': '[email protected]'
},
'tasks': [
{
'task_name': 'Make a Moon Rocket',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres',
'assignees': [
{
'firstname': 'Julia',
'lastname': 'Roberts',
'salary': 73000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Start Journey to the Moon',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Alice',
'lastname': 'Brown',
'salary': 56000,
'email': '[email protected]'
}, {
'firstname': 'Bob',
'lastname': 'Smith',
'salary': 63000,
'email': '[email protected]'
},
]
},
{
'task_name': 'Bring Some Minerals',
'start_date': '2024-05-01',
'due_date': '2024-06-01',
'status': 'not_started',
'assignees': [
{
'firstname': 'Bob',
'lastname': 'Smith',
'salary': 63000,
'email': '[email protected]'
}, {
'firstname': 'Julia',
'lastname': 'Roberts',
'salary': 73000,
'email': '[email protected]'
},
]
}
]
}
]
persons_list = [
{
'firstname': 'Alice',
'lastname': 'Brown',
'salary': 56000,
'email': '[email protected]'
},
{
'firstname': 'Bob',
'lastname': 'Smith',
'salary': 63000,
'email': '[email protected]'
},
{
'firstname': 'Charlie',
'lastname': 'Davis',
'salary': 58000,
'email': '[email protected]'
},
{
'firstname': 'Julia',
'lastname': 'Roberts',
'salary': 73000,
'email': '[email protected]'
},
{
'firstname': 'Johnny',
'lastname': 'Depp',
'salary': 81000,
'email': '[email protected]'
},
{
'firstname': 'Warren',
'lastname': 'Buffett',
'salary': 121000,
'email': '[email protected]'
},
{
'firstname': 'Bernard',
'lastname': 'Shaw',
'salary': 111000,
'email': '[email protected]'
}
]
projects_list = [
{
'project_name': 'Wind Factory Project',
'project_aim': 'To create Wind Factory for energy self sufficiency',
'project_budget': 500000
},
{
'project_name': 'Sun Energy Project',
'project_aim': 'To create Sun Energy Factory for energy self sufficiency',
'project_budget': 600900
},
{
'project_name': 'Moon Surface Project',
'project_aim': 'To send Dream Team to the Moon for minerals',
'project_budget': 450000
}
]
tasks_list = [
{
'task_name': 'Organize Tech World',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres'
},
{
'task_name': 'Make Fashion Fiesta',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'not_started'
},
{
'task_name': 'Participate in the Fashion Fiesta',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started'
},
{
'task_name': 'Create Grocery Hub',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres'
},
{
'task_name': 'Visit Grocery Hub',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started'
},
{
'task_name': 'Raise Morning Sun',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'not_started'
},
{
'task_name': 'Make Rocket for the Journey to the Moon',
'start_date': '2024-01-01',
'due_date': '2024-03-01',
'status': 'in_progres'
},
{
'task_name': 'Start Journey to the Moon',
'start_date': '2024-03-01',
'due_date': '2024-05-01',
'status': 'not_started'
},
{
'task_name': 'Bring Some Minerals',
'start_date': '2024-05-01',
'due_date': '2024-06-01',
'status': 'not_started'
}
]
person_tasks_list = [
{'person_id': 1, 'task_id': 1},
{'person_id': 2, 'task_id': 2},
{'person_id': 3, 'task_id': 3},
{'person_id': 1, 'task_id': 4},
{'person_id': 4, 'task_id': 5},
{'person_id': 1, 'task_id': 6},
{'person_id': 4, 'task_id': 6},
{'person_id': 5, 'task_id': 7},
{'person_id': 5, 'task_id': 8},
{'person_id': 2, 'task_id': 9}
]