-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathtest_domain.py
More file actions
43 lines (36 loc) · 1.06 KB
/
test_domain.py
File metadata and controls
43 lines (36 loc) · 1.06 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
from __future__ import annotations
import datetime
from datetime import timezone
import pytest
from hcloud.certificates import (
Certificate,
ManagedCertificateError,
ManagedCertificateStatus,
)
@pytest.mark.parametrize(
"value",
[
(Certificate(id=1),),
(ManagedCertificateError()),
(ManagedCertificateStatus()),
],
)
def test_eq(value):
assert value.__eq__(value)
class TestCertificate:
def test_created_is_datetime(self):
certificate = Certificate(
id=1,
created="2016-01-30T23:50+00:00",
not_valid_after="2016-01-30T23:50+00:00",
not_valid_before="2016-01-30T23:50+00:00",
)
assert certificate.created == datetime.datetime(
2016, 1, 30, 23, 50, tzinfo=timezone.utc
)
assert certificate.not_valid_after == datetime.datetime(
2016, 1, 30, 23, 50, tzinfo=timezone.utc
)
assert certificate.not_valid_before == datetime.datetime(
2016, 1, 30, 23, 50, tzinfo=timezone.utc
)