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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/*
* Copyright (c) 2008, 2018, 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, version 2.0, as
* published by the Free Software Foundation.
*
* This program is also distributed 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 included with
* MySQL.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of MySQL Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* http://oss.oracle.com/licenses/universal-foss-exception.
*
* 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 "../unit_fixture.h"
#include <vector>
/**
* Example of a collection of tests
*
*/
namespace testsuite
{
namespace classes
{
class connectionmetadata : public unit_fixture
{
private:
typedef unit_fixture super;
/** Helper function to check a FK definition
*
*/
void checkForeignKey(Connection &con, ResultSet &res);
protected:
public:
EXAMPLE_TEST_FIXTURE(connectionmetadata)
{
TEST_CASE(getSchemata);
TEST_CASE(getSchemaObjects);
TEST_CASE(getAttributes);
TEST_CASE(getBestRowIdentifier);
TEST_CASE(getCatalogs);
TEST_CASE(getCatalogSeparator);
TEST_CASE(getCatalogTerm);
TEST_CASE(getCrossReference);
TEST_CASE(getColumnPrivileges);
TEST_CASE(getColumns);
TEST_CASE(getConnection);
TEST_CASE(getDatabaseVersions);
TEST_CASE(getDriverVersions);
TEST_CASE(getDefaultTransactionIsolation);
TEST_CASE(getExtraNameCharacters);
TEST_CASE(getExportedKeys);
TEST_CASE(getIdentifierQuoteString);
TEST_CASE(getImportedKeys);
TEST_CASE(getIndexInfo);
TEST_CASE(getLimitsAndStuff);
TEST_CASE(getPrimaryKeys);
TEST_CASE(getProcedures);
#ifdef INCLUDE_NOT_IMPLEMENTED_METHODS
TEST_CASE(getProcedureColumns);
#endif
TEST_CASE(getProcedureTerm);
TEST_CASE(getResultSetHoldability);
TEST_CASE(getSchemaTerm);
TEST_CASE(getSearchStringEscape);
TEST_CASE(getSQLKeywords);
TEST_CASE(getSuperTables);
TEST_CASE(getSuperTypes);
/*
TODO - we might in the future follow the JDBC standard word by word.
However, at the moment we do not promise that our class attributes have certain
values. Users shall not rely on certain values, for example those listed in the
JDBC standard!
TEST_CASE(classAttributes);
*/
TEST_CASE(getColumnsTypeConversions);
TEST_CASE(bestIdUniqueNotNull);
TEST_CASE(getSchemaCollation);
TEST_CASE(getSchemaCharset);
TEST_CASE(getTableCollation);
TEST_CASE(getTableCharset);
TEST_CASE(getTables);
}
/**
* Test for DatabaseMetaData:getSchemata()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSchemata();
/**
* Test for DatabaseMetaData:getSchemaObjects*()
*
* TODO - HACK _ FIXME - Focus on code coverage only!
*/
void getSchemaObjects();
/**
* Test for DatabaseMetaData:getAttributes()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getAttributes();
/**
* Test for DatabaseMetaData:getBestRowIdentifier()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getBestRowIdentifier();
/**
* Test for DatabaseMetaData:getCatalogs()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getCatalogs();
/**
* Test for DatabaseMetaData:getCatalogSeparator()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getCatalogSeparator();
/**
* Test for DatabaseMetaData:getCatalogTerm()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getCatalogTerm();
/**
* Test for DatabaseMetaData:getCrossReference()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getCrossReference();
/**
* Test for DatabaseMetaData:getColumns()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getColumns();
/**
* Test for DatabaseMetaData:getColumnPrivileges()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getColumnPrivileges();
/**
* Test for DatabaseMetaData:getConnection
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getConnection();
/**
* Test for DatabaseMetaData:getDatabaseMajorVersion, *MinorVersion, *PatchVersion()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getDatabaseVersions();
/**
* Test for DatabaseMetaData:getDriverMajorVersion, *MinorVersion, *PatchVersion()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getDriverVersions();
/**
* Test for DatabaseMetaData:getDefaultTransactionIsolation()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getDefaultTransactionIsolation();
/**
* Test for DatabaseMetaData:getExtraNameCharacters()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getExtraNameCharacters();
/**
* Test for DatabaseMetaData:getExportedKeys()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getExportedKeys();
/**
* Test for DatabaseMetaData:getIdentifierQuoteString()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getIdentifierQuoteString();
/**
* Test for DatabaseMetaData:getImportedKeys()
*
* Create two tables parent and child and check if the method detects the FK properly.
*/
void getImportedKeys();
/**
* Test for DatabaseMetaData:getIndexInfo()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getIndexInfo();
/**
* Test for DatabaseMetaData:getLimitsAndStuff()
*
* Test for assorted get*Something() methods
*/
void getLimitsAndStuff();
/**
* Test for DatabaseMetaData:getPrimaryKeys()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getPrimaryKeys();
/**
* Test for DatabaseMetaData:getProcedures()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getProcedures();
#ifdef INCLUDE_NOT_IMPLEMENTED_METHODS
/**
* Test for DatabaseMetaData:getProcedureColumns()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getProcedureColumns();
#endif
/**
* Test for DatabaseMetaData:getProcedureTerm()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getProcedureTerm();
/**
* Test for DatabaseMetaData:getResultSetHoldability()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getResultSetHoldability();
/**
* Test for DatabaseMetaData::getSchemaTerm()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSchemaTerm();
/**
* Test for DatabaseMetaData::getSearchStringEscape()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSearchStringEscape();
/**
* Test for DatabaseMetaData::getSQLKeywords()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSQLKeywords();
/**
* Test for DatabaseMetaData::getSuperTables()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSuperTables();
/**
* Test for DatabaseMetaData::getSuperTypes()
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void getSuperTypes();
/**
* Test of DatabaseMetaData class attributes
*
* Focus on code coverage: invalid parameter, invalid resultset
* JDBC compliance tests should take care that it does what its supposed to do
*/
void classAttributes();
/**
* Test of type conversions in MySQL_ArtResultSet
*
*/
void getColumnsTypeConversions();
void bestIdUniqueNotNull();
/**
* Test for DatabaseMetaData::getSchemaCollation()
*/
void getSchemaCollation();
/**
* Test for DatabaseMetaData::getSchemaCharset()
*/
void getSchemaCharset();
/**
* Test for DatabaseMetaData::getTableCollation()
*/
void getTableCollation();
/**
* Test for DatabaseMetaData::getTableCharset()
*/
void getTableCharset();
/**
* Test for DatabaseMetaData::getTables()
*/
void getTables();
};
REGISTER_FIXTURE(connectionmetadata);
} /* namespace classes */
} /* namespace testsuite */
|