1
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Brian Aker
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#define BOOST_TEST_DYN_LINK
24
#include <boost/test/unit_test.hpp>
26
#include <drizzled/identifier.h>
28
using namespace drizzled;
30
BOOST_AUTO_TEST_SUITE(TableIdentifierTest)
31
BOOST_AUTO_TEST_CASE(CreateStandard)
33
identifier::Table identifier("test", "a");
34
BOOST_REQUIRE_EQUAL("test/a", identifier.getPath());
35
BOOST_REQUIRE_EQUAL("test.a", identifier.getSQLPath());
38
BOOST_AUTO_TEST_CASE(CreateTemporary)
40
identifier::Table identifier("test", "a", message::Table::TEMPORARY);
41
BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
42
BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
45
BOOST_AUTO_TEST_CASE(CreateInternal)
47
identifier::Table identifier("test", "a", message::Table::TEMPORARY);
48
BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
49
BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
52
BOOST_AUTO_TEST_CASE(StaticTmpTable)
54
std::string pathname(identifier::Table::build_tmptable_filename());
56
BOOST_REQUIRE_GT(pathname.size(), 0);
57
BOOST_REQUIRE_GT(strlen(&pathname[0]), 0);
60
BOOST_AUTO_TEST_CASE(Key)
62
identifier::Table identifier("test", "a");
64
const identifier::Table::Key key= identifier.getKey();
66
BOOST_REQUIRE_EQUAL(key.size(), 7);
67
BOOST_REQUIRE_EQUAL(key.vector()[0], 't');
68
BOOST_REQUIRE_EQUAL(key.vector()[1], 'e');
69
BOOST_REQUIRE_EQUAL(key.vector()[2], 's');
70
BOOST_REQUIRE_EQUAL(key.vector()[3], 't');
71
BOOST_REQUIRE_EQUAL(key.vector()[4], 0);
72
BOOST_REQUIRE_EQUAL(key.vector()[5], 'a');
73
BOOST_REQUIRE_EQUAL(key.vector()[6], 0);
76
BOOST_AUTO_TEST_CASE(KeyCompare)
78
identifier::Table identifier("test", "a");
79
identifier::Table identifier2("test", "a");
81
BOOST_REQUIRE_EQUAL((identifier.getKey() == identifier.getKey()), true);
83
BOOST_AUTO_TEST_SUITE_END()