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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/* Copyright (c) 2012, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <gtest/gtest.h>
#include "sql/field.h"
#include "unittest/gunit/fake_table.h"
#include "unittest/gunit/field_temporal_utils.h"
#include "unittest/gunit/test_utils.h"
namespace field_datetime_unittests {
using my_testing::Mock_error_handler;
using my_testing::Server_initializer;
class FieldDatetimeTest : public ::testing::Test {
protected:
void SetUp() override { initializer.SetUp(); }
void TearDown() override { initializer.TearDown(); }
THD *thd() { return initializer.thd(); }
Server_initializer initializer;
Field_set *create_field_set(TYPELIB *tl);
};
class Mock_field_datetime : public Field_datetime {
public:
Mock_field_datetime()
: Field_datetime(nullptr, // ptr_arg
&Field::dummy_null_buffer, // null_ptr_arg
1, // null_bit_arg
Field::NONE, // auto_flags_arg
"field_name") // field_name_arg
{}
void make_writable() { bitmap_set_bit(table->write_set, field_index()); }
void make_readable() { bitmap_set_bit(table->read_set, field_index()); }
};
class Mock_field_datetimef : public Field_datetimef {
public:
explicit Mock_field_datetimef(uint scale)
: Field_datetimef(nullptr, // ptr_arg
&Field::dummy_null_buffer, // null_ptr_arg
1, // null_bit_arg
Field::NONE, // unireg_check_arg
"field_name", // field_name_arg
scale) {}
void make_writable() { bitmap_set_bit(table->write_set, field_index()); }
void make_readable() { bitmap_set_bit(table->read_set, field_index()); }
};
TEST_F(FieldDatetimeTest, StoreLegalStringValues) {
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
String unused;
Mock_field_datetime field_dt;
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 00:00:01"), 0,
"2001-01-01 00:00:01", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("0000-00-00 00:00:00"), 0,
"0000-00-00 00:00:00", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("0001-00-00 00:00:00"), 0,
"0001-00-00 00:00:00", 0, TYPE_OK);
}
}
// Test for MODE_TIME_TRUNCATE_FRACTIONAL.
TEST_F(FieldDatetimeTest, TestTruncFrational) {
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
String unused;
// fsp=6
Mock_field_datetimef field_dt(6);
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
// fsp=0
Mock_field_datetimef field_dt0(0);
Fake_TABLE table0(&field_dt0);
table0.in_use = thd();
field_dt0.make_writable();
field_dt0.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 00:00:01.9999999"),
MODE_TIME_TRUNCATE_FRACTIONAL,
"2001-01-01 00:00:01.999999", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 00:00:01.999995"),
MODE_TIME_TRUNCATE_FRACTIONAL,
"2001-01-01 00:00:01.999995", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("0001-00-00 00:00:00"),
MODE_TIME_TRUNCATE_FRACTIONAL,
"0001-00-00 00:00:00.000000", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(
&field_dt0, STRING_WITH_LEN("2001-01-01 00:00:01.9999999"),
MODE_TIME_TRUNCATE_FRACTIONAL, "2001-01-01 00:00:01", 0, TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt0, STRING_WITH_LEN("2001-01-01 00:00:01.9"),
MODE_TIME_TRUNCATE_FRACTIONAL, "2001-01-01 00:00:01", 0,
TYPE_OK);
}
{
SCOPED_TRACE("");
test_store_string(&field_dt0, STRING_WITH_LEN("0001-00-00 00:00:00.99"),
MODE_TIME_TRUNCATE_FRACTIONAL, "0001-00-00 00:00:00", 0,
TYPE_OK);
}
}
TEST_F(FieldDatetimeTest, StoreIllegalStringValues) {
Mock_field_datetime field_dt;
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
// Bad year
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("99999-01-01 00:00:01"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Bad month
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-13-01 00:00:01"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Bad day
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-32 00:00:01"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Bad hour
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 72:00:01"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Bad minute
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 00:72:01"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Bad second
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("2001-01-01 00:00:72"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
// Not a day
{
SCOPED_TRACE("");
test_store_string(&field_dt, STRING_WITH_LEN("foo"), 0,
"0000-00-00 00:00:00", WARN_DATA_TRUNCATED,
TYPE_ERR_BAD_VALUE);
}
}
// Store zero date using different combinations of SQL modes
static const int no_modes = 3;
static const sql_mode_t strict_modes[no_modes] = {
MODE_STRICT_TRANS_TABLES, MODE_STRICT_ALL_TABLES,
MODE_STRICT_TRANS_TABLES | MODE_STRICT_ALL_TABLES};
/**
Strictness mode test 1:
Try storing dates with zeroes when no zero-restrictions apply
(neither NO_ZERO_DATE or NO_ZERO_IN_DATE are set). There should be
no errors, warnings or notes.
*/
TEST_F(FieldDatetimeTest, StoreZeroDateSqlModeNoZeroRestrictions) {
Mock_field_datetime field_dt;
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-00-00 00:00:00"),
"0000-00-00 00:00:00", TYPE_OK, strict_modes[i], 0);
}
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-01-01 00:00:00"),
"0000-01-01 00:00:00", TYPE_OK, strict_modes[i], 0);
}
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-00-01 00:00:00"),
"2001-00-01 00:00:00", TYPE_OK, strict_modes[i], 0);
}
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-01-00 00:00:00"),
"2001-01-00 00:00:00", TYPE_OK, strict_modes[i], 0);
}
}
static const type_conversion_status nozero_expected_status[] = {
TYPE_ERR_BAD_VALUE, TYPE_ERR_BAD_VALUE, TYPE_ERR_BAD_VALUE};
/**
Strictness mode test 2:
Try storing dates with zeroes when NO_ZERO_DATE flag is set. There
should be no errors, warnings or notes unless the entire date is
zero: "0000-00-00"
*/
TEST_F(FieldDatetimeTest, StoreZeroDateSqlModeNoZeroDate) {
Mock_field_datetime field_dt;
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
// With "MODE_NO_ZERO_DATE" set - Errors if date is all null
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-00-00 00:00:00"),
"0000-00-00 00:00:00", nozero_expected_status[i],
MODE_NO_ZERO_DATE | strict_modes[i],
ER_TRUNCATED_WRONG_VALUE);
}
// Zero year, month or day is fine
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-01-01 00:00:00"),
"0000-01-01 00:00:00", TYPE_OK,
MODE_NO_ZERO_DATE | strict_modes[i], 0);
}
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-00-01 00:00:00"),
"2001-00-01 00:00:00", TYPE_OK,
MODE_NO_ZERO_DATE | strict_modes[i], 0);
}
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-01-00 00:00:00"),
"2001-01-00 00:00:00", TYPE_OK,
MODE_NO_ZERO_DATE | strict_modes[i], 0);
}
}
/**
Strictness mode test 3:
Try storing dates with zeroes when NO_ZERO_IN_DATE flag is set. There
should be no errors unless either month or day is zero.
*/
TEST_F(FieldDatetimeTest, StoreZeroDateSqlModeNoZeroInDate) {
Mock_field_datetime field_dt;
Fake_TABLE table(&field_dt);
table.in_use = thd();
field_dt.make_writable();
field_dt.make_readable();
thd()->check_for_truncated_fields = CHECK_FIELD_WARN;
// With "MODE_NO_ZERO_IN_DATE" set - Entire date zero is ok
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-00-00 00:00:00"),
"0000-00-00 00:00:00", TYPE_OK,
MODE_NO_ZERO_IN_DATE | strict_modes[i], 0);
}
// Year 0 is valid in strict mode too
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("0000-01-01 00:00:00"),
"0000-01-01 00:00:00", TYPE_OK,
MODE_NO_ZERO_IN_DATE | strict_modes[i], 0);
}
// Month 0 is NOT valid in strict mode, stores all-zero date
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-00-01 00:00:00"),
"0000-00-00 00:00:00", nozero_expected_status[i],
MODE_NO_ZERO_IN_DATE | strict_modes[i],
ER_TRUNCATED_WRONG_VALUE);
}
// Day 0 is NOT valid in strict mode, stores all-zero date
for (int i = 0; i < no_modes; i++) {
SCOPED_TRACE("");
store_zero_in_sql_mode(&field_dt, STRING_WITH_LEN("2001-01-00 00:00:00"),
"0000-00-00 00:00:00", nozero_expected_status[i],
MODE_NO_ZERO_IN_DATE | strict_modes[i],
ER_TRUNCATED_WRONG_VALUE);
}
}
} // namespace field_datetime_unittests
|