Skip to content

Commit fa252ae

Browse files
authoredJul 9, 2024··
test: run integration tests that rely on Linux (#188)
1 parent 836b2a3 commit fa252ae

26 files changed

+137
-134
lines changed
 

‎.github/workflows/dockerized.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ on:
55
push:
66
branches:
77
- main
8-
# pull_request:
9-
# branches:
10-
# - '*'
11-
# paths-ignore:
12-
# - '**/*.md'
13-
# - '**/*.jpg'
14-
# - '**/README.txt'
15-
# - '**/LICENSE.txt'
16-
# - 'docs/**'
17-
# - 'ISSUE_TEMPLATE/**'
18-
# - '**/remove-old-artifacts.yml'
8+
pull_request:
9+
branches:
10+
- '*'
11+
paths-ignore:
12+
- '**/*.md'
13+
- '**/*.jpg'
14+
- '**/README.txt'
15+
- '**/LICENSE.txt'
16+
- 'docs/**'
17+
- 'ISSUE_TEMPLATE/**'
18+
- '**/remove-old-artifacts.yml'
1919

2020
env:
2121
BUILD_TYPE: Release

‎.github/workflows/failover.yml

-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ jobs:
173173
# -DCONNECTOR_PLATFORM=linux
174174
# -DMYSQL_DIR=./mysql-${{ vars.MYSQL_VERSION }}-linux-glibc2.28-x86_64/
175175
# -DENABLE_UNIT_TESTS=TRUE
176-
# -DENABLE_INTEGRATION_TESTS=FALSE
177176
#
178177
# - name: copy AWS SDK libraries to driver library
179178
# run: |

‎.github/workflows/integration.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: Integration Tests
22

33
on:
44
workflow_dispatch:
5-
# push:
6-
# branches:
7-
# - main
8-
# pull_request:
9-
# branches:
10-
# - '*'
11-
# paths-ignore:
12-
# - '**/*.md'
13-
# - '**/*.jpg'
14-
# - '**/README.txt'
15-
# - '**/LICENSE.txt'
16-
# - 'docs/**'
17-
# - 'ISSUE_TEMPLATE/**'
18-
# - '**/remove-old-artifacts.yml'
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
branches:
10+
- '*'
11+
paths-ignore:
12+
- '**/*.md'
13+
- '**/*.jpg'
14+
- '**/README.txt'
15+
- '**/LICENSE.txt'
16+
- 'docs/**'
17+
- 'ISSUE_TEMPLATE/**'
18+
- '**/remove-old-artifacts.yml'
1919

2020
env:
2121
BUILD_TYPE: Release
@@ -28,7 +28,7 @@ jobs:
2828
integration-tests:
2929
strategy:
3030
matrix:
31-
engine_version: ["latest", "lts"]
31+
engine_version: ["lts", "latest"]
3232
name: Integration Tests
3333
runs-on: ubuntu-latest
3434
env:

‎driver/catalog.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -542,10 +542,10 @@ int add_name_condition_pv_id(HSTMT hstmt, std::string &query, SQLCHAR * name,
542542
return an error if they were.
543543
*/
544544
#define CHECK_CATALOG_SCHEMA(ST, CN, CL, SN, SL) \
545-
if (ST->dbc->ds.opt_NO_CATALOG && CN && *CN && CL) \
545+
if (ST->dbc->ds->opt_NO_CATALOG && CN && *CN && CL) \
546546
return ST->set_error("HY000", "Support for catalogs is disabled by " \
547547
"NO_CATALOG option, but non-empty catalog is specified.", 0); \
548-
if (ST->dbc->ds.opt_NO_SCHEMA && SN && *SN && SL) \
548+
if (ST->dbc->ds->opt_NO_SCHEMA && SN && *SN && SL) \
549549
return ST->set_error("HY000", "Support for schemas is disabled by " \
550550
"NO_SCHEMA option, but non-empty schema is specified.", 0); \
551551
if (CN && *CN && CL && SN && *SN && SL) \

‎driver/catalog_no_i_s.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@ std::string get_database_name(STMT *stmt,
5050
bool try_reget)
5151
{
5252
std::string db;
53-
if (!stmt->dbc->ds.opt_NO_CATALOG && catalog && catalog_len)
53+
if (!stmt->dbc->ds->opt_NO_CATALOG && catalog && catalog_len)
5454
{
5555
// Catalog parameter can be used
5656
db = (catalog_len != SQL_NTS ? std::string((char *)catalog, catalog_len) :
5757
std::string((char *)catalog));
5858
}
59-
else if(!stmt->dbc->ds.opt_NO_SCHEMA && schema && schema_len)
59+
else if(!stmt->dbc->ds->opt_NO_SCHEMA && schema && schema_len)
6060
{
6161
// Schema parameter can be used
6262
db = (schema_len != SQL_NTS ? std::string((char*)schema, schema_len) :
6363
std::string((char *)schema));
6464
}
65-
else if (!stmt->dbc->ds.opt_NO_CATALOG || !stmt->dbc->ds.opt_NO_SCHEMA)
65+
else if (!stmt->dbc->ds->opt_NO_CATALOG || !stmt->dbc->ds->opt_NO_SCHEMA)
6666
{
6767
if (!try_reget)
6868
return db;

‎driver/connect.cc

+11-11
Original file line numberDiff line numberDiff line change
@@ -1022,12 +1022,12 @@ SQLRETURN DBC::connect(DataSource *dsrc, bool failover_enabled, bool is_monitor_
10221022
return SQL_ERROR;
10231023
}
10241024

1025-
ds = *dsrc;
1025+
ds = dsrc;
10261026
/* init all needed UTF-8 strings */
1027-
const char *opt_db = ds.opt_DATABASE;
1027+
const char *opt_db = ds->opt_DATABASE;
10281028
database = opt_db ? opt_db : "";
10291029

1030-
if (ds.opt_LOG_QUERY && !log_file)
1030+
if (ds->opt_LOG_QUERY && !log_file)
10311031
log_file = init_log_file();
10321032

10331033
/* Set the statement error prefix based on the server version. */
@@ -1042,7 +1042,7 @@ SQLRETURN DBC::connect(DataSource *dsrc, bool failover_enabled, bool is_monitor_
10421042
int set_reconnect_result = 0;
10431043
#if MYSQL_VERSION_ID < 80300
10441044
/* This needs to be set after connection, or it doesn't stick. */
1045-
if (ds.opt_AUTO_RECONNECT)
1045+
if (ds->opt_AUTO_RECONNECT)
10461046
{
10471047
connection_proxy->options(MYSQL_OPT_RECONNECT, (char *)&on);
10481048
}
@@ -1054,7 +1054,7 @@ SQLRETURN DBC::connect(DataSource *dsrc, bool failover_enabled, bool is_monitor_
10541054
/* Make sure autocommit is set as configured. */
10551055
if (commit_flag == CHECK_AUTOCOMMIT_OFF)
10561056
{
1057-
if (!transactions_supported() || ds.opt_NO_TRANSACTIONS)
1057+
if (!transactions_supported() || ds->opt_NO_TRANSACTIONS)
10581058
{
10591059
commit_flag = CHECK_AUTOCOMMIT_ON;
10601060
rc = set_error(MYERR_01S02,
@@ -1130,7 +1130,7 @@ SQLRETURN DBC::connect(DataSource *dsrc, bool failover_enabled, bool is_monitor_
11301130
new old new reconnect option ignored with warning
11311131
new new * reconnect option ignored with warning
11321132
*/
1133-
if (ds.opt_AUTO_RECONNECT && set_reconnect_result)
1133+
if (ds->opt_AUTO_RECONNECT && set_reconnect_result)
11341134
{
11351135
set_error("HY000",
11361136
"The option AUTO_RECONNECT is not supported "
@@ -1596,20 +1596,20 @@ void DBC::free_connection_stmts()
15961596
SQLRETURN SQL_API SQLDisconnect(SQLHDBC hdbc)
15971597
{
15981598
DBC *dbc= (DBC *) hdbc;
1599-
DataSource ds = dbc->ds;
1599+
DataSource* ds = dbc->ds;
16001600

1601-
if (ds.opt_GATHER_PERF_METRICS) {
1601+
if (ds->opt_GATHER_PERF_METRICS) {
16021602
std::string cluster_id_str = "";
16031603
if (dbc->fh) {
16041604
cluster_id_str = dbc->fh->cluster_id;
16051605
}
16061606

1607-
if (((cluster_id_str == DEFAULT_CLUSTER_ID) || ds.opt_GATHER_PERF_METRICS_PER_INSTANCE) && dbc->connection_proxy) {
1607+
if (((cluster_id_str == DEFAULT_CLUSTER_ID) || ds->opt_GATHER_PERF_METRICS_PER_INSTANCE) && dbc->connection_proxy) {
16081608
cluster_id_str = dbc->connection_proxy->get_host();
16091609
cluster_id_str.append(":").append(std::to_string(dbc->connection_proxy->get_port()));
16101610
}
16111611

1612-
CLUSTER_AWARE_METRICS_CONTAINER::report_metrics(cluster_id_str, dbc->ds.opt_GATHER_PERF_METRICS_PER_INSTANCE, dbc->log_file, dbc->id);
1612+
CLUSTER_AWARE_METRICS_CONTAINER::report_metrics(cluster_id_str, dbc->ds->opt_GATHER_PERF_METRICS_PER_INSTANCE, dbc->log_file, dbc->id);
16131613
}
16141614

16151615
CHECK_HANDLE(hdbc);
@@ -1618,7 +1618,7 @@ SQLRETURN SQL_API SQLDisconnect(SQLHDBC hdbc)
16181618

16191619
dbc->close();
16201620

1621-
if (ds.opt_LOG_QUERY)
1621+
if (ds->opt_LOG_QUERY)
16221622
end_log_file();
16231623

16241624
/* free allocated packet buffer */

‎driver/connection_handler.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ CONNECTION_PROXY* CONNECTION_HANDLER::connect(std::shared_ptr<HOST_INFO> host_in
6767
}
6868

6969
DataSource* ds_to_use = new DataSource();
70-
ds_to_use->copy(ds ? ds : &dbc->ds);
70+
ds_to_use->copy(ds ? ds : dbc->ds);
7171
const auto new_host = to_sqlwchar_string(host_info->get_host());
7272

7373
DBC* dbc_clone = clone_dbc(dbc, ds_to_use);
@@ -100,7 +100,7 @@ void CONNECTION_HANDLER::update_connection(
100100

101101
// Update original ds to reflect change in host/server.
102102

103-
dbc->ds.opt_SERVER.set_remove_brackets((SQLWCHAR*) new_host_name_wstr.c_str(), new_host_name_wstr.size());
103+
dbc->ds->opt_SERVER.set_remove_brackets((SQLWCHAR*) new_host_name_wstr.c_str(), new_host_name_wstr.size());
104104
}
105105
}
106106

‎driver/driver.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ extern std::mutex global_fido_mutex;
243243
/* data-at-exec handling done for current SQLSetPos() call */
244244
#define DAE_SETPOS_DONE 10
245245

246-
#define DONT_USE_LOCALE_CHECK(STMT) if (!STMT->dbc->ds.opt_NO_LOCALE)
246+
#define DONT_USE_LOCALE_CHECK(STMT) if (!STMT->dbc->ds->opt_NO_LOCALE)
247247

248248
#if defined _WIN32
249249

@@ -614,7 +614,7 @@ struct DBC
614614
*cxn_charset_info = nullptr;
615615
MY_SYNTAX_MARKERS *syntax = nullptr;
616616
// data source used to connect (parsed or stored)
617-
DataSource ds;
617+
DataSource *ds = nullptr;
618618
// value of the sql_select_limit currently set for a session
619619
// (SQLULEN)(-1) if wasn't set
620620
SQLULEN sql_select_limit = -1;
@@ -731,13 +731,13 @@ enum OUT_PARAM_STATE
731731

732732
#define CAT_SCHEMA_SET_FULL(STMT, C, S, V, CZ, SZ, CL, SL) { \
733733
bool cat_is_set = false; \
734-
if (!STMT->dbc->ds.opt_NO_CATALOG && (CL || !SL)) \
734+
if (!STMT->dbc->ds->opt_NO_CATALOG && (CL || !SL)) \
735735
{ \
736736
C = V;\
737737
S = nullptr; \
738738
cat_is_set = true; \
739739
} \
740-
if (!STMT->dbc->ds.opt_NO_SCHEMA && !cat_is_set && SZ) \
740+
if (!STMT->dbc->ds->opt_NO_SCHEMA && !cat_is_set && SZ) \
741741
{ \
742742
S = V; \
743743
C = nullptr; \

‎driver/error.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -544,11 +544,11 @@ MySQLGetDiagField(SQLSMALLINT handle_type, SQLHANDLE handle, SQLSMALLINT record,
544544
return SQL_ERROR;
545545

546546
if (handle_type == SQL_HANDLE_DESC)
547-
ds= &desc->stmt->dbc->ds;
547+
ds= desc->stmt->dbc->ds;
548548
else if (handle_type == SQL_HANDLE_STMT)
549-
ds= &stmt->dbc->ds;
549+
ds= stmt->dbc->ds;
550550
else if (handle_type == SQL_HANDLE_DBC)
551-
ds= &dbc->ds;
551+
ds= dbc->ds;
552552
else
553553
*char_value= (SQLCHAR*)"";
554554

@@ -579,11 +579,11 @@ MySQLGetDiagField(SQLSMALLINT handle_type, SQLHANDLE handle, SQLSMALLINT record,
579579
if (record <= 0)
580580
return SQL_ERROR;
581581
if (handle_type == SQL_HANDLE_DESC)
582-
ds = &desc->stmt->dbc->ds;
582+
ds = desc->stmt->dbc->ds;
583583
else if (handle_type == SQL_HANDLE_STMT)
584-
ds = &stmt->dbc->ds;
584+
ds = stmt->dbc->ds;
585585
else if (handle_type == SQL_HANDLE_DBC)
586-
ds = &dbc->ds;
586+
ds = dbc->ds;
587587
else
588588
*char_value= (SQLCHAR *)"";
589589

‎driver/execute.cc

+9-9
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ SQLRETURN do_query(STMT *stmt, std::string query)
9999
* and when no musltiple statements is allowed - we can't now parse query
100100
* that well to detect multiple queries.
101101
*/
102-
if (stmt->dbc->ds.opt_PREFETCH > 0
103-
&& !stmt->dbc->ds.opt_MULTI_STATEMENTS
102+
if (stmt->dbc->ds->opt_PREFETCH > 0
103+
&& !stmt->dbc->ds->opt_MULTI_STATEMENTS
104104
&& stmt->stmt_options.cursor_type == SQL_CURSOR_FORWARD_ONLY
105105
&& scrollable(stmt, query.c_str(), query.c_str() + query_length)
106106
&& !ssps_used(stmt))
@@ -112,7 +112,7 @@ SQLRETURN do_query(STMT *stmt, std::string query)
112112
stmt->scroller.reset();
113113

114114
stmt->scroller.row_count= calc_prefetch_number(
115-
stmt->dbc->ds.opt_PREFETCH,
115+
stmt->dbc->ds->opt_PREFETCH,
116116
stmt->ard->array_size,
117117
stmt->stmt_options.max_rows);
118118

@@ -664,7 +664,7 @@ SQLRETURN convert_c_type2str(STMT *stmt, SQLSMALLINT ctype, DESCREC *iprec,
664664
case SQL_C_TYPE_DATE:
665665
{
666666
DATE_STRUCT *date= (DATE_STRUCT*) *res;
667-
if (stmt->dbc->ds.opt_MIN_DATE_TO_ZERO && !date->year
667+
if (stmt->dbc->ds->opt_MIN_DATE_TO_ZERO && !date->year
668668
&& (date->month == date->day == 1))
669669
{
670670
*length = myodbc_snprintf(buff, buff_max, "0000-00-00");
@@ -697,7 +697,7 @@ SQLRETURN convert_c_type2str(STMT *stmt, SQLSMALLINT ctype, DESCREC *iprec,
697697
{
698698
TIMESTAMP_STRUCT *time= (TIMESTAMP_STRUCT*) *res;
699699

700-
if (stmt->dbc->ds.opt_MIN_DATE_TO_ZERO &&
700+
if (stmt->dbc->ds->opt_MIN_DATE_TO_ZERO &&
701701
!time->year && (time->month == time->day == 1))
702702
{
703703
*length = myodbc_snprintf(buff, buff_max, "0000-00-00 %02d:%02d:%02d",
@@ -1037,7 +1037,7 @@ SQLRETURN insert_param(STMT *stmt, MYSQL_BIND *bind, DESC* apd,
10371037
Not sure if fraction should be considered as an overflow.
10381038
In fact specs say about "time fields only"
10391039
*/
1040-
if (!stmt->dbc->ds.opt_NO_DATE_OVERFLOW && TIME_FIELDS_NONZERO(ts))
1040+
if (!stmt->dbc->ds->opt_NO_DATE_OVERFLOW && TIME_FIELDS_NONZERO(ts))
10411041
{
10421042
return stmt->set_error("22008", "Date overflow", 0);
10431043
}
@@ -1227,7 +1227,7 @@ SQLRETURN insert_param(STMT *stmt, MYSQL_BIND *bind, DESC* apd,
12271227
size_t local_thousands_sep_length = thousands_sep.length();
12281228
size_t local_decimal_point_length = decimal_point.length();
12291229

1230-
if (!stmt->dbc->ds.opt_NO_LOCALE)
1230+
if (!stmt->dbc->ds->opt_NO_LOCALE)
12311231
{
12321232
/* force use of . as decimal point */
12331233
local_thousands_sep= ",";
@@ -2010,8 +2010,8 @@ SQLRETURN SQL_API SQLCancel(SQLHSTMT hstmt)
20102010
interfere with the existing one. Therefore, locking is not needed in
20112011
the following block.
20122012
*/
2013-
auto host = std::make_shared<HOST_INFO>((const char*)dbc->ds.opt_SERVER, dbc->ds.opt_PORT);
2014-
CONNECTION_PROXY* proxy = dbc->connection_handler->connect(host, &dbc->ds);
2013+
auto host = std::make_shared<HOST_INFO>((const char*)dbc->ds->opt_SERVER, dbc->ds->opt_PORT);
2014+
CONNECTION_PROXY* proxy = dbc->connection_handler->connect(host, dbc->ds);
20152015

20162016
/** @todo need to preserve and use ssl params */
20172017
if (!proxy)

‎driver/handle.cc

+8-8
Original file line numberDiff line numberDiff line change
@@ -350,37 +350,37 @@ int reset_connection(DBC *dbc)
350350

351351
int wakeup_connection(DBC *dbc)
352352
{
353-
DataSource &ds = dbc->ds;
353+
DataSource *ds = dbc->ds;
354354

355355
#if MFA_ENABLED
356-
if(ds.opt_PWD1)
356+
if(ds->opt_PWD1)
357357
{
358358
int fator = 2;
359359
dbc->connection_proxy->options4(MYSQL_OPT_USER_PASSWORD,
360360
&fator,
361-
(const char*)ds.opt_PWD1);
361+
(const char*)ds->opt_PWD1);
362362
}
363363

364-
if (ds.opt_PWD2)
364+
if (ds->opt_PWD2)
365365
{
366366
ds_get_utf8attr(ds->pwd2, &ds->pwd28);
367367
int fator = 2;
368368
dbc->connection_proxy->options4(MYSQL_OPT_USER_PASSWORD,
369369
&fator,
370-
(const char *)ds.opt_PWD2);
370+
(const char *)ds->opt_PWD2);
371371
}
372372

373-
if (ds.opt_PWD3)
373+
if (ds->opt_PWD3)
374374
{
375375
ds_get_utf8attr(ds->pwd3, &ds->pwd38);
376376
int fator = 3;
377377
dbc->connection_proxy->options4(MYSQL_OPT_USER_PASSWORD,
378378
&fator,
379-
(const char *)ds.opt_PWD3);
379+
(const char *)ds->opt_PWD3);
380380
}
381381
#endif
382382

383-
if (dbc->connection_proxy->change_user(ds.opt_UID, ds.opt_PWD, ds.opt_DATABASE))
383+
if (dbc->connection_proxy->change_user(ds->opt_UID, ds->opt_PWD, ds->opt_DATABASE))
384384
{
385385
return 1;
386386
}

0 commit comments

Comments
 (0)
Please sign in to comment.