33
33
identifier::Table identifier("test", "a");
34
34
BOOST_REQUIRE_EQUAL("test/a", identifier.getPath());
36
identifier.getSQLPath(path);
37
BOOST_REQUIRE_EQUAL("test.a", path);
35
BOOST_REQUIRE_EQUAL("test.a", identifier.getSQLPath());
40
38
BOOST_AUTO_TEST_CASE(CreateTemporary)
42
40
identifier::Table identifier("test", "a", message::Table::TEMPORARY);
43
41
BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
45
identifier.getSQLPath(path);
46
BOOST_REQUIRE_EQUAL("test.#a", path);
42
BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
49
45
BOOST_AUTO_TEST_CASE(CreateInternal)
51
47
identifier::Table identifier("test", "a", message::Table::TEMPORARY);
52
48
BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
54
identifier.getSQLPath(path);
55
BOOST_REQUIRE_EQUAL("test.#a", path);
49
BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
58
52
BOOST_AUTO_TEST_CASE(StaticTmpTable)
60
std::vector<char> pathname;
62
identifier::Table::build_tmptable_filename(pathname);
54
std::string pathname(identifier::Table::build_tmptable_filename());
64
56
BOOST_REQUIRE_GT(pathname.size(), 0);
65
57
BOOST_REQUIRE_GT(strlen(&pathname[0]), 0);
72
64
const identifier::Table::Key key= identifier.getKey();
74
BOOST_REQUIRE_EQUAL(key.size(), 7);
75
BOOST_REQUIRE_EQUAL(key.vector()[0], 't');
76
BOOST_REQUIRE_EQUAL(key.vector()[1], 'e');
77
BOOST_REQUIRE_EQUAL(key.vector()[2], 's');
78
BOOST_REQUIRE_EQUAL(key.vector()[3], 't');
79
BOOST_REQUIRE_EQUAL(key.vector()[4], 0);
80
BOOST_REQUIRE_EQUAL(key.vector()[5], 'a');
81
BOOST_REQUIRE_EQUAL(key.vector()[6], 0);
66
BOOST_REQUIRE_EQUAL(key.size(), 13);
68
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'L');
69
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'O');
70
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'C');
71
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'A');
72
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'L');
73
BOOST_REQUIRE_EQUAL(key.vector()[i++], 0);
74
BOOST_REQUIRE_EQUAL(key.vector()[i++], 't');
75
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'e');
76
BOOST_REQUIRE_EQUAL(key.vector()[i++], 's');
77
BOOST_REQUIRE_EQUAL(key.vector()[i++], 't');
78
BOOST_REQUIRE_EQUAL(key.vector()[i++], 0);
79
BOOST_REQUIRE_EQUAL(key.vector()[i++], 'a');
80
BOOST_REQUIRE_EQUAL(key.vector()[i++], 0);
84
83
BOOST_AUTO_TEST_CASE(KeyCompare)