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
|
/*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* 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 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 "grtpp.h"
#include "grtdb/editor_table.h"
#include "grtdb/db_object_helpers.h"
#include "wb_helpers.h"
using namespace grt;
using namespace bec;
using namespace std;
BEGIN_TEST_DATA_CLASS(grtdb_tests)
public:
WBTester tester;
GRTManager *grtm;
TEST_DATA_CONSTRUCTOR(grtdb_tests)
{
grtm = tester.wb->get_grt_manager();
populate_grt(tester.grt, tester);
}
END_TEST_DATA_CLASS
TEST_MODULE(grtdb_tests, "DB stuff tests");
TEST_FUNCTION(2)
{
tester.create_new_document();
}
TEST_FUNCTION(5)
{
// test primary key
db_mysql_TableRef table(grtm->get_grt());
table->name("tbl");
db_mysql_ColumnRef column(grtm->get_grt());
column->name("col");
column->owner(table);
table->columns().ginsert(column);
table->addPrimaryKeyColumn(column);
ensure("PK created", table->primaryKey().is_valid());
ensure_equals("PK index created", table->indices().count(), 1U);
ensure_equals("PK correct", table->primaryKey()->columns().count(), 1U);
ensure("PK correct", table->primaryKey()->columns().get(0)->referencedColumn() == column);
table->removePrimaryKeyColumn(column);
ensure("PK removed", !table->primaryKey().is_valid());
ensure_equals("PK index removed", table->indices().count(), 0U);
}
TEST_FUNCTION(10)
{
db_mysql_TableRef table(grtm->get_grt());
ensure_equals("index content type", table->indices().content_class_name(), "db.mysql.Index");
}
// Helper macros for column base types parser tests.
#define ensure_parse_ok(str) ensure(str, column->setParseType(str, tester.get_rdbms()->simpleDatatypes()) != 0);
#define ensure_parse_fail(str) ensure(str, !column->setParseType(str, tester.get_rdbms()->simpleDatatypes()));
TEST_FUNCTION(15)
{
// Test some generally wrong cases. ml: testing invalid cases is just nonsense. Should be removed.
db_ColumnRef column(grtm->get_grt());
ensure_parse_fail("");
ensure_parse_fail("()");
ensure_parse_fail("(0)");
ensure_parse_fail("INT(");
ensure_parse_fail("INT)");
ensure_parse_fail("INT()");
ensure_parse_fail("INT(()");
ensure_parse_fail("INT())");
ensure_parse_fail("INT(xyz)");
ensure_parse_fail("junk");
ensure_parse_fail("junk(0)");
ensure_parse_fail("junk(0,0)");
ensure_parse_fail("junk('a','b', 'c')");
}
/**
* Checks the values for precision and scale, as well as character and octet length against the given
* values depending on the actual type.
*/
void check_type_cardinalities(db_SimpleDatatypeRef type, db_ColumnRef column, int precision, int scale)
{
if (type->numericPrecision() != EMPTY_TYPE_PRECISION)
{
// Precision is optional, so both values must be equal: either both are set to EMTPY_TYPE_PRECISION
// or both have the same precision value.
ensure_equals("Comparing precisions", *column->precision(), precision);
// Scale can only be given if we also have a precision.
if (type->numericScale() != EMPTY_TYPE_SCALE)
// Scale is optional, so both values must be equal: either both are set to EMTPY_TYPE_SCALE
// or both have the same scale value.
ensure_equals("Comparing scales", *column->scale(), scale);
else
ensure("Unexpected scale parameter found", *column->scale() == EMPTY_COLUMN_SCALE);
}
else
{
// If there's no numeric precision then check for character or octet cardinalities.
if (type->characterMaximumLength() != EMPTY_TYPE_MAXIMUM_LENGTH
|| type->characterOctetLength() != EMPTY_TYPE_OCTET_LENGTH)
ensure_equals("Comparing char or octet length", *column->length(), precision);
else
ensure("Unexpected precision parameter found", *column->length() == EMPTY_COLUMN_LENGTH);
}
}
TEST_FUNCTION(20)
{
// Go through all our defined datatypes and construct a column definition.
// Then see if they all parse successfully.
db_SchemaRef schema(grtm->get_grt());
db_CatalogRef catalog = tester.get_catalog();
schema->owner(catalog);
db_mysql_TableRef table(grtm->get_grt());
table->owner(schema);
table->name("table");
db_mysql_ColumnRef column(grtm->get_grt());
column->owner(table);
column->name("testee");
table->columns().insert(column);
ListRef<db_SimpleDatatype> types= tester.get_rdbms()->simpleDatatypes();
for (size_t i= 0; i < tester.get_rdbms()->simpleDatatypes().count(); i++)
{
// Try all parameter combinations.
string no_params= types[i]->name();
string single_num_param= no_params + "(777)";
string double_num_params= no_params + "(111, 5)";
string enum_parameters= "('blah', 'foo', 'bar', 'gah')";
string param_list= no_params + enum_parameters;
string invalid_list= no_params + "(1, a, 'bb')";
// Depending on the server version a data type is defined for we need to set the
// correct version or parsing will fail where it should succeed.
GrtVersionRef version(grtm->get_grt());
version->majorNumber(5);
std::string validity = types[i]->validity();
if (validity == "<5.6")
version->minorNumber(5);
else
if (validity == ">=5.6")
version->minorNumber(6);
else
version->minorNumber(7);
version->releaseNumber(-1);
version->buildNumber(-1);
catalog->version(version);
// The parameter format type tells us which combination is valid.
switch (types[i]->parameterFormatType())
{
case 0: // no params
ensure_parse_ok(no_params);
check_type_cardinalities(types[i], column, EMPTY_COLUMN_PRECISION, EMPTY_COLUMN_SCALE);
ensure_parse_fail(single_num_param);
ensure_parse_fail(double_num_params);
ensure_parse_fail(param_list);
break;
case 1: // (n)
ensure_parse_fail(no_params);
ensure_parse_ok(single_num_param);
check_type_cardinalities(types[i], column, 777, EMPTY_COLUMN_SCALE);
ensure_parse_fail(double_num_params);
ensure_parse_fail(param_list);
break;
case 2: // [(n)]
ensure_parse_ok(no_params);
check_type_cardinalities(types[i], column, EMPTY_COLUMN_PRECISION, EMPTY_COLUMN_SCALE);
ensure_parse_ok(single_num_param);
check_type_cardinalities(types[i], column, 777, EMPTY_COLUMN_SCALE);
ensure_parse_fail(double_num_params);
ensure_parse_fail(param_list);
break;
case 3: // (m, n)
ensure_parse_fail(no_params);
ensure_parse_fail(single_num_param);
ensure_parse_ok(double_num_params);
check_type_cardinalities(types[i], column, 111, 5);
ensure_parse_fail(param_list);
break;
case 4: // (m[,n])
ensure_parse_fail(no_params);
ensure_parse_ok(single_num_param);
check_type_cardinalities(types[i], column, 777, EMPTY_COLUMN_SCALE);
ensure_parse_ok(double_num_params);
check_type_cardinalities(types[i], column, 111, 5);
ensure_parse_fail(param_list);
break;
case 5: // [(m,n)]
ensure_parse_ok(no_params);
check_type_cardinalities(types[i], column, EMPTY_COLUMN_PRECISION, EMPTY_COLUMN_SCALE);
ensure_parse_fail(single_num_param);
ensure_parse_ok(double_num_params);
check_type_cardinalities(types[i], column, 111, 5);
ensure_parse_fail(param_list);
break;
case 6: // [(m[,n])]
ensure_parse_ok(no_params);
check_type_cardinalities(types[i], column, EMPTY_COLUMN_PRECISION, EMPTY_COLUMN_SCALE);
ensure_parse_ok(single_num_param);
check_type_cardinalities(types[i], column, 777, EMPTY_COLUMN_SCALE);
ensure_parse_ok(double_num_params);
check_type_cardinalities(types[i], column, 111, 5);
ensure_parse_fail(param_list);
break;
case 10: // ('a','b','c' ...)
ensure_parse_fail(no_params);
column->setParseType(param_list, tester.get_rdbms()->simpleDatatypes());
// The following tests just check if the parameter list is properly stored.
// No type checking takes place for now.
grt::StringRef explicitParam= column->datatypeExplicitParams();
ensure_equals("Parameter list not properly stored", *explicitParam, enum_parameters);
break;
}
// This always must fail regardless of the actual type.
// As currently no enum and set parsing is done we don't check invalid parameter lists for them.
// TODO: Remove test for a specific parameter format once this has changed.
if (types[i]->parameterFormatType() != 10)
ensure_parse_fail(invalid_list);
}
}
TEST_FUNCTION(25)
{
// bug: make sure that mysql tables with a composite key have the auto_increment column
// 1st in the index
db_mysql_TableRef table(grtm->get_grt());
db_mysql_ColumnRef col1(grtm->get_grt());
db_mysql_ColumnRef col2(grtm->get_grt());
table->name("table");
col1->owner(table);
col1->name("col1");
table->columns().insert(col1);
col2->owner(table);
col2->name("col2");
col2->autoIncrement(1);
table->columns().insert(col2);
table->addPrimaryKeyColumn(col1);
table->addPrimaryKeyColumn(col2);
ensure_equals("1st col in index is col2", *table->primaryKey()->columns().get(0)->referencedColumn()->name(), "col2");
}
// test comment splitter functions
TEST_FUNCTION(26)
{
ensure_equals("split trunc part",
bec::TableHelper::get_sync_comment("hello world", 5), "hello");
ensure_equals("split notrunc part",
bec::TableHelper::get_sync_comment("hello world", 15), "hello world");
ensure("split trunc part",
bec::TableHelper::get_sync_comment("hell\xE2\x82\xAC world", 5).size() <= 5);
ensure_equals("hell\xE2\x82\xAC world",
bec::TableHelper::get_sync_comment("hell\xE2\x82\xAC world", 5), "hell");
ensure_equals("split trunc part",
bec::TableHelper::get_sync_comment("hello\n\nworld", 15), "hello\n\nworld");
ensure_equals("split trunc part, paragraph break",
bec::TableHelper::get_sync_comment("hello\n\nworld long text", 15), "hello");
}
// test full comment text generation (with quoting etc)
TEST_FUNCTION(27)
{
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hello world", 5),
"'hello' /* comment truncated */ /* world*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hello world", 15),
"'hello world'");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hello\nworld", 12),
"'hello\\nworld'");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hello\n\nworld", 10),
"'hello' /* comment truncated */ /*\nworld*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hello wo'rld", 5),
"'hello' /* comment truncated */ /* wo'rld*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("hell' world", 5),
"'hell\\'' /* comment truncated */ /* world*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("h'llo world", 5),
"'h\\'llo' /* comment truncated */ /* world*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("h'llo /* a */", 5),
"'h\\'llo' /* comment truncated */ /* /* a *\\/*/");
ensure_equals("comment",
bec::TableHelper::generate_comment_text("h'llo/* a */", 5),
"'h\\'llo' /* comment truncated */ /*/* a *\\/*/");
}
TEST_FUNCTION(30)
{
// test version checking utils
ensure("5.5.0 supported", bec::is_supported_mysql_version("5.5.0"));
ensure("5.6.5 supported", bec::is_supported_mysql_version("5.6.5"));
ensure("3.14.15 not supported", !bec::is_supported_mysql_version("3.14.15"));
ensure("5.5 supported", bec::is_supported_mysql_version("5.5"));
ensure("6.6.6 not supported", !bec::is_supported_mysql_version("6.6.6"));
ensure("5.5.5 vs 5.7.4", bec::is_supported_mysql_version_at_least(5, 7, 4, 5, 5, 5));
ensure("5.10.5 vs 5.7.4", !bec::is_supported_mysql_version_at_least(5, 7, 4, 5, 10, 5));
ensure("5.5.5 vs 5.5.4", !bec::is_supported_mysql_version_at_least(5, 5, 4, 5, 5, 5));
ensure("5.5.5 vs 6.6.6", !bec::is_supported_mysql_version_at_least(5, 5, 5, 6, 6, 6));
}
END_TESTS
|