forked from PyMySQL/PyMySQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_auth.py
More file actions
63 lines (41 loc) · 1.78 KB
/
test_auth.py
File metadata and controls
63 lines (41 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""Test for auth methods supported by MySQL 8"""
import os
import pymysql
# pymysql.connections.DEBUG = True
# pymysql._auth.DEBUG = True
host = "127.0.0.1"
port = 3306
ca = os.path.expanduser("~/ca.pem")
ssl = {'ca': ca, 'check_hostname': False}
def test_sha256_no_password():
con = pymysql.connect(user="nopass_sha256", host=host, port=port, ssl=None)
con.close()
def test_sha256_no_passowrd_ssl():
con = pymysql.connect(user="nopass_sha256", host=host, port=port, ssl=ssl)
con.close()
def test_sha256_password():
con = pymysql.connect(user="user_sha256", password="pass_sha256", host=host, port=port, ssl=None)
con.close()
def test_sha256_password_ssl():
con = pymysql.connect(user="user_sha256", password="pass_sha256", host=host, port=port, ssl=ssl)
con.close()
def test_caching_sha2_no_password():
con = pymysql.connect(user="nopass_caching_sha2", host=host, port=port, ssl=None)
con.close()
def test_caching_sha2_no_password():
con = pymysql.connect(user="nopass_caching_sha2", host=host, port=port, ssl=ssl)
con.close()
def test_caching_sha2_password():
con = pymysql.connect(user="user_caching_sha2", password="pass_caching_sha2", host=host, port=port, ssl=None)
con.close()
# Fast path of caching sha2
con = pymysql.connect(user="user_caching_sha2", password="pass_caching_sha2", host=host, port=port, ssl=None)
con.query("FLUSH PRIVILEGES")
con.close()
def test_caching_sha2_password_ssl():
con = pymysql.connect(user="user_caching_sha2", password="pass_caching_sha2", host=host, port=port, ssl=ssl)
con.close()
# Fast path of caching sha2
con = pymysql.connect(user="user_caching_sha2", password="pass_caching_sha2", host=host, port=port, ssl=None)
con.query("FLUSH PRIVILEGES")
con.close()