-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_data.py
58 lines (49 loc) · 2.82 KB
/
test_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
EMAIL = 'test.trainlab@gmail.com'
NON_EXISTENT_EMAIL = 'test.trainlab12345@gmail.com'
PASSWORD = 'Qaz12345'
NON_EXISTENT_PASSWORD = 'Qaz123456789'
EMPTY_FIELD = ''
SPACES = ' '
VALID_EMAILS = [
'test.trainlab@gmail.com', 'TEST.TRAINLAB@GMAIL.COM', 'test.trainlab+1234567890@gmail.com',
'test.trainlab@gmail1234567890.com', 'test-trainlab@gmail.com', 'test.trainlab@gmail-mail.com',
'test_trainlab@gmail.com', 'test.trainlab@gmail.com.com',
'test$trainlab@gmail.com', 'test#trainlab@gmail.com', 'test%trainlab@gmail.com',
'test&trainlab@gmail.com', 'test*trainlab@gmail.com', 'test`trainlab@gmail.com',
'test/trainlab@gmail.com', 'test=trainlab@gmail.com', 'test^trainlab@gmail.com',
'test?trainlab@gmail.com', 'test{trainlab}@gmail.com', 'test!trainlab@gmail.com',
'test|trainlab@gmail.com', 'test~trainlab@gmail.com', 'b@gmail.com', 'ab@gmail.com',
'a@ya.ru', 'Test.TraiNlab@gmail.com',
'test.trainlab+Sun_of_the_sleepless_Melancholy_star_Whose_tearful_beam_'
'glows_tremulously_far_That_showst_the_darkness_thou_canst_not_dispel_How'
'_like_art_thou_to_joy_rememberd_well_What_is_this_life_if_ful_of_care_We'
'_have_no_time_to_stand_andstare@gmail.com',
'test.trainlab+Sun_of_the_sleepless_Melancholy_star_Whose_tearful_beam_glows_tremulously'
'_far_That_showst_the_darkness_thou_canst_not_dispel_How_like_art_thou_to_joy_rememberd'
'_well_What_is_this_life_if_ful_of_care_We_have_no_time_to_stand_and_stare@gmail.com']
INVALID_EMAILS = [
'test.trainlabgmail.com', 'test.trainlab@gmailcom', 'тест.траинлаб@gmail.com',
'.test.trainlab@gmail.com', 'test.trainlab@gmail.com.', 'test..trainlab@gmail.com',
'test trainlab@gmail.com', 'test.trainlab@gm ail.com', '@gmailcom',
'test.trainlab+Sun_of_the_sleepless_Melancholy_star_Whose_tearful_beam_glows_tremulously'
'_far_That_showst_the_darkness_thou_canst_not_dispel_How_like_art_thou_to_joy_rememberd'
'_well_What_is_this_life_if_ful_of_care_We_have_no_time_to_stand_and_stare1@gmail.com'
]
VALID_PASSWORD = [
'Qaz1234567890123456789012345678901234567890123456789xexexcefcrgv'
'thc1234567890123556790qertyooasdfghkozxvbnmqeryoadfhjkzxcvbnmasdfgh'
'kqetyuiizsdfghjjkjzxcderfvtgbyhnqazwsx1234567890qwertyuioasdgghjklz'
'xcvbnmmececfvrvtgbhbybcedxwsxwdcefvrgtbrcexwxexrgvtvhbrcfe',
'Qaz12345', '12345azQ', '123Q45we', 'Qaz12345,<.>/?;:~!@#$%^&*()_-+=|`',
' 1234567 Q a '
]
INVALID_PASSWORD = [
'1 ', '12345678', 'QAZ12345',
'qazwsxedc', 'QWERASDFZ', 'Aqazwsxedc', 'Фйц123456',
'Qaz1234', 'Qaz12345678901234567890123456789012345678'
'90123456789xexexcefcrgvthc12345678901235567'
'90qertyooasdfghkozxvbnmqeryoadfhjkzxcvbnmasdfghk'
'qetyuiizsdfghjjkjzxcderfvtgbyhnqazwsx1234567890qw'
'ertyuioasdgghjklzxcvbnmmececfvrvtgbhbybcedxwsxwdce'
'fvrgtbrcexwxexrgvtvhbrcfed'
]