-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathtest_pymysql_connection.py
More file actions
125 lines (105 loc) · 4.05 KB
/
test_pymysql_connection.py
File metadata and controls
125 lines (105 loc) · 4.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
"""
Copyright 2021 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from datetime import datetime
import os
# [START cloud_sql_connector_mysql_pymysql]
import sqlalchemy
from google.cloud.sql.connector import Connector
def create_sqlalchemy_engine(
instance_connection_name: str,
user: str,
password: str,
db: str,
ip_type: str = "public",
refresh_strategy: str = "background",
) -> tuple[sqlalchemy.engine.Engine, Connector]:
"""Creates a connection pool for a Cloud SQL instance and returns the pool
and the connector. Callers are responsible for closing the pool and the
connector.
A sample invocation looks like:
engine, connector = create_sqlalchemy_engine(
inst_conn_name,
user,
password,
db,
)
with engine.connect() as conn:
time = conn.execute(sqlalchemy.text("SELECT NOW()")).fetchone()
conn.commit()
curr_time = time[0]
# do something with query result
connector.close()
Args:
instance_connection_name (str):
The instance connection name specifies the instance relative to the
project and region. For example: "my-project:my-region:my-instance"
user (str):
The database user name, e.g., root
password (str):
The database user's password, e.g., secret-password
db (str):
The name of the database, e.g., mydb
ip_type (str):
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
refresh_strategy (Optional[str]):
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
or "background". For serverless environments use "lazy" to avoid
errors resulting from CPU being throttled.
"""
connector = Connector(refresh_strategy=refresh_strategy)
# create SQLAlchemy connection pool
engine = sqlalchemy.create_engine(
"mysql+pymysql://",
creator=lambda: connector.connect(
instance_connection_name,
"pymysql",
user=user,
password=password,
db=db,
ip_type=ip_type, # can be "public", "private" or "psc"
),
)
return engine, connector
# [END cloud_sql_connector_mysql_pymysql]
def test_pymysql_connection() -> None:
"""Basic test to get time from database."""
inst_conn_name = os.environ["MYSQL_CONNECTION_NAME"]
user = os.environ["MYSQL_USER"]
password = os.environ["MYSQL_PASS"]
db = os.environ["MYSQL_DB"]
ip_type = os.environ.get("IP_TYPE", "public")
engine, connector = create_sqlalchemy_engine(
inst_conn_name, user, password, db, ip_type
)
with engine.connect() as conn:
time = conn.execute(sqlalchemy.text("SELECT NOW()")).fetchone()
conn.commit()
curr_time = time[0]
assert type(curr_time) is datetime
connector.close()
def test_lazy_pymysql_connection() -> None:
"""Basic test to get time from database."""
inst_conn_name = os.environ["MYSQL_CONNECTION_NAME"]
user = os.environ["MYSQL_USER"]
password = os.environ["MYSQL_PASS"]
db = os.environ["MYSQL_DB"]
ip_type = os.environ.get("IP_TYPE", "public")
engine, connector = create_sqlalchemy_engine(
inst_conn_name, user, password, db, ip_type, "lazy"
)
with engine.connect() as conn:
time = conn.execute(sqlalchemy.text("SELECT NOW()")).fetchone()
conn.commit()
curr_time = time[0]
assert type(curr_time) is datetime
connector.close()