~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/table_identifier.cc

  • Committer: Mark Atwood
  • Date: 2012-01-04 16:59:32 UTC
  • mfrom: (2478.2.3 real-key-use-catalog)
  • Revision ID: me@mark.atwood.name-20120104165932-cm0xqs4by0u3p4cy
mergeĀ lp:~stewart/drizzle/key-use-catalog

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
{
33
33
  identifier::Table identifier("test", "a");
34
34
  BOOST_REQUIRE_EQUAL("test/a", identifier.getPath());
35
 
  std::string path;
36
 
  identifier.getSQLPath(path);
37
 
  BOOST_REQUIRE_EQUAL("test.a", path);
 
35
  BOOST_REQUIRE_EQUAL("test.a", identifier.getSQLPath());
38
36
}
39
37
 
40
38
BOOST_AUTO_TEST_CASE(CreateTemporary)
41
39
{
42
40
  identifier::Table identifier("test", "a", message::Table::TEMPORARY);
43
41
  BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
44
 
  std::string path;
45
 
  identifier.getSQLPath(path);
46
 
  BOOST_REQUIRE_EQUAL("test.#a", path);
 
42
  BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
47
43
}
48
44
 
49
45
BOOST_AUTO_TEST_CASE(CreateInternal)
50
46
{
51
47
  identifier::Table identifier("test", "a", message::Table::TEMPORARY);
52
48
  BOOST_REQUIRE_EQUAL("/#sql", identifier.getPath().substr(0, 5));
53
 
  std::string path;
54
 
  identifier.getSQLPath(path);
55
 
  BOOST_REQUIRE_EQUAL("test.#a", path);
 
49
  BOOST_REQUIRE_EQUAL("test.#a", identifier.getSQLPath());
56
50
}
57
51
 
58
52
BOOST_AUTO_TEST_CASE(StaticTmpTable)
59
53
{
60
 
  std::vector<char> pathname;
61
 
 
62
 
  identifier::Table::build_tmptable_filename(pathname);
 
54
  std::string pathname(identifier::Table::build_tmptable_filename());
63
55
 
64
56
  BOOST_REQUIRE_GT(pathname.size(), 0);
65
57
  BOOST_REQUIRE_GT(strlen(&pathname[0]), 0);
71
63
 
72
64
  const identifier::Table::Key key= identifier.getKey();
73
65
 
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);
 
67
  int i=0;
 
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);
82
81
}
83
82
 
84
83
BOOST_AUTO_TEST_CASE(KeyCompare)