blob: 9064e3d85eb35f32d20ef4c7456b0866d525aee8 [file] [log] [blame]
jorlow@chromium.org179be582011-03-18 22:37:00 +00001// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
jorlow@chromium.orgfbd97aa2011-03-30 18:35:40 +00005#include "leveldb/db.h"
jorlow@chromium.org179be582011-03-18 22:37:00 +00006
7#include "db/memtable.h"
8#include "db/write_batch_internal.h"
jorlow@chromium.orgfbd97aa2011-03-30 18:35:40 +00009#include "leveldb/env.h"
jorlow@chromium.org179be582011-03-18 22:37:00 +000010#include "util/logging.h"
11#include "util/testharness.h"
12
13namespace leveldb {
14
15static std::string PrintContents(WriteBatch* b) {
16 InternalKeyComparator cmp(BytewiseComparator());
dgrogan@chromium.orga5b41292011-05-21 02:17:43 +000017 MemTable* mem = new MemTable(cmp);
18 mem->Ref();
jorlow@chromium.org179be582011-03-18 22:37:00 +000019 std::string state;
dgrogan@chromium.orga5b41292011-05-21 02:17:43 +000020 Status s = WriteBatchInternal::InsertInto(b, mem);
sanjay@google.com13daa9f2012-03-09 00:27:49 +000021 int count = 0;
dgrogan@chromium.orga5b41292011-05-21 02:17:43 +000022 Iterator* iter = mem->NewIterator();
jorlow@chromium.org179be582011-03-18 22:37:00 +000023 for (iter->SeekToFirst(); iter->Valid(); iter->Next()) {
24 ParsedInternalKey ikey;
25 ASSERT_TRUE(ParseInternalKey(iter->key(), &ikey));
26 switch (ikey.type) {
27 case kTypeValue:
28 state.append("Put(");
29 state.append(ikey.user_key.ToString());
30 state.append(", ");
31 state.append(iter->value().ToString());
32 state.append(")");
sanjay@google.com13daa9f2012-03-09 00:27:49 +000033 count++;
jorlow@chromium.org179be582011-03-18 22:37:00 +000034 break;
jorlow@chromium.org179be582011-03-18 22:37:00 +000035 case kTypeDeletion:
36 state.append("Delete(");
37 state.append(ikey.user_key.ToString());
38 state.append(")");
sanjay@google.com13daa9f2012-03-09 00:27:49 +000039 count++;
jorlow@chromium.org179be582011-03-18 22:37:00 +000040 break;
41 }
42 state.append("@");
43 state.append(NumberToString(ikey.sequence));
44 }
45 delete iter;
46 if (!s.ok()) {
47 state.append("ParseError()");
sanjay@google.com13daa9f2012-03-09 00:27:49 +000048 } else if (count != WriteBatchInternal::Count(b)) {
49 state.append("CountMismatch()");
jorlow@chromium.org179be582011-03-18 22:37:00 +000050 }
dgrogan@chromium.orga5b41292011-05-21 02:17:43 +000051 mem->Unref();
jorlow@chromium.org179be582011-03-18 22:37:00 +000052 return state;
53}
54
55class WriteBatchTest { };
56
57TEST(WriteBatchTest, Empty) {
58 WriteBatch batch;
59 ASSERT_EQ("", PrintContents(&batch));
60 ASSERT_EQ(0, WriteBatchInternal::Count(&batch));
61}
62
63TEST(WriteBatchTest, Multiple) {
64 WriteBatch batch;
65 batch.Put(Slice("foo"), Slice("bar"));
66 batch.Delete(Slice("box"));
67 batch.Put(Slice("baz"), Slice("boo"));
68 WriteBatchInternal::SetSequence(&batch, 100);
69 ASSERT_EQ(100, WriteBatchInternal::Sequence(&batch));
70 ASSERT_EQ(3, WriteBatchInternal::Count(&batch));
71 ASSERT_EQ("Put(baz, boo)@102"
72 "Delete(box)@101"
73 "Put(foo, bar)@100",
74 PrintContents(&batch));
75}
76
jorlow@chromium.org179be582011-03-18 22:37:00 +000077TEST(WriteBatchTest, Corruption) {
78 WriteBatch batch;
79 batch.Put(Slice("foo"), Slice("bar"));
80 batch.Delete(Slice("box"));
81 WriteBatchInternal::SetSequence(&batch, 200);
82 Slice contents = WriteBatchInternal::Contents(&batch);
83 WriteBatchInternal::SetContents(&batch,
84 Slice(contents.data(),contents.size()-1));
85 ASSERT_EQ("Put(foo, bar)@200"
86 "ParseError()",
87 PrintContents(&batch));
88}
89
sanjay@google.com13daa9f2012-03-09 00:27:49 +000090TEST(WriteBatchTest, Append) {
91 WriteBatch b1, b2;
92 WriteBatchInternal::SetSequence(&b1, 200);
93 WriteBatchInternal::SetSequence(&b2, 300);
94 WriteBatchInternal::Append(&b1, &b2);
95 ASSERT_EQ("",
96 PrintContents(&b1));
97 b2.Put("a", "va");
98 WriteBatchInternal::Append(&b1, &b2);
99 ASSERT_EQ("Put(a, va)@200",
100 PrintContents(&b1));
101 b2.Clear();
102 b2.Put("b", "vb");
103 WriteBatchInternal::Append(&b1, &b2);
104 ASSERT_EQ("Put(a, va)@200"
105 "Put(b, vb)@201",
106 PrintContents(&b1));
107 b2.Delete("foo");
108 WriteBatchInternal::Append(&b1, &b2);
109 ASSERT_EQ("Put(a, va)@200"
110 "Put(b, vb)@202"
111 "Put(b, vb)@201"
112 "Delete(foo)@203",
113 PrintContents(&b1));
114}
115
hans@chromium.org45b99402011-10-31 17:34:55 +0000116} // namespace leveldb
jorlow@chromium.org179be582011-03-18 22:37:00 +0000117
118int main(int argc, char** argv) {
119 return leveldb::test::RunAllTests();
120}