mirror of https://gitlab.com/bashrc2/epicyon
Test for incorrect caldav login
parent
7ec097cade
commit
f54591b2c9
12
tests.py
12
tests.py
|
@ -3177,6 +3177,7 @@ def test_client_to_server(base_dir: str):
|
||||||
if os.path.isfile(os.path.join(alice_inbox_path, name))]) == 0
|
if os.path.isfile(os.path.join(alice_inbox_path, name))]) == 0
|
||||||
|
|
||||||
print('\n\nEVENT: Bob checks his calendar via caldav')
|
print('\n\nEVENT: Bob checks his calendar via caldav')
|
||||||
|
# test caldav result for a month
|
||||||
result = \
|
result = \
|
||||||
dav_month_via_server(session_bob, http_prefix,
|
dav_month_via_server(session_bob, http_prefix,
|
||||||
'bob', bob_domain, bob_port, True,
|
'bob', bob_domain, bob_port, True,
|
||||||
|
@ -3185,6 +3186,7 @@ def test_client_to_server(base_dir: str):
|
||||||
print('response: ' + str(result))
|
print('response: ' + str(result))
|
||||||
assert 'VCALENDAR' in str(result)
|
assert 'VCALENDAR' in str(result)
|
||||||
assert 'VEVENT' in str(result)
|
assert 'VEVENT' in str(result)
|
||||||
|
# test caldav result for a day
|
||||||
result = \
|
result = \
|
||||||
dav_day_via_server(session_bob, http_prefix,
|
dav_day_via_server(session_bob, http_prefix,
|
||||||
'bob', bob_domain, bob_port, True,
|
'bob', bob_domain, bob_port, True,
|
||||||
|
@ -3193,7 +3195,15 @@ def test_client_to_server(base_dir: str):
|
||||||
print('response: ' + str(result))
|
print('response: ' + str(result))
|
||||||
assert 'VCALENDAR' in str(result)
|
assert 'VCALENDAR' in str(result)
|
||||||
assert 'VEVENT' in str(result)
|
assert 'VEVENT' in str(result)
|
||||||
|
# test for incorrect caldav login
|
||||||
|
result = \
|
||||||
|
dav_day_via_server(session_bob, http_prefix,
|
||||||
|
'bob', bob_domain, bob_port, True,
|
||||||
|
test_date.year, test_date.month,
|
||||||
|
test_date.day, 'wrongpass')
|
||||||
|
assert 'VCALENDAR' not in str(result)
|
||||||
|
assert 'VEVENT' not in str(result)
|
||||||
|
|
||||||
print('\n\nEVENT: Bob likes the post')
|
print('\n\nEVENT: Bob likes the post')
|
||||||
send_like_via_server(bob_dir, session_bob,
|
send_like_via_server(bob_dir, session_bob,
|
||||||
'bob', 'bobpass',
|
'bob', 'bobpass',
|
||||||
|
|
Loading…
Reference in New Issue