-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanother_ejemplo.py
76 lines (49 loc) · 1.51 KB
/
another_ejemplo.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
import sys
import pytest
from ejemplo import Employee
@pytest.mark.parametrize("e", [pytest.param(Employee(), id="esto testea AAAAA")])
def test_some(e):
print("Ejecuto el test")
@pytest.mark.parametrize("e", [pytest.param(Employee(), id="esto testea BB")])
def test_some_2(e):
print("Ejecuto el test")
{"internal_id": "aaaaaa", "name": "david", "surname": "garcia", "birthdate": 14565783543}
{"name": "David", "surname": "Garcia", "birthdate": "11/05/1993"}
@dataclass
class UserData:
internal_id: str
name: str
surname: str
birthdate: int
def to_api(self) -> UserDataApi:
return UserDataApi(**asdict(self))
def to_ui(self) -> UserDataUI:
return UserDataUI(
name=self.name.capitalize(),
surname=self.surname,
birthdate=from_ts_to_str(self.birthdate),
)
@dataclass
class UserDataApi:
internal_id: str
name: str
surname: str
birthdate: int
@dataclass
class UserDataUI:
name: str
surname: str
birthdate: str
user1 = UserData(internal_id="aaaaaa", name="david", surname="garcia", birthdate=14565783543)
@pytest.mark.parametrize("user_data", [(user1.to_api())])
def test_create_user_api():
pass
@pytest.mark.parametrize("user_data", [(user1.to_ui())])
def test_create_user_ui():
pass
def test_create_api_check_web():
create_user_api(user1.to_api())
user_data = get_user_data_ui()
assert user1.to_ui() == user_data
api_model = {}
cost_model = {"CPU": "Usage", "cost": {"currency": "USD"}}