Index: tools/relocation_packer/src/leb128_unittest.cc |
diff --git a/tools/relocation_packer/src/leb128_unittest.cc b/tools/relocation_packer/src/leb128_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd607b717b40e126e7d27db37f7d09899e46dca0 |
--- /dev/null |
+++ b/tools/relocation_packer/src/leb128_unittest.cc |
@@ -0,0 +1,111 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "leb128.h" |
+ |
+#include <vector> |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace relocation_packer { |
+ |
+TEST(Leb128, Encoder) { |
+ std::vector<ELF::Xword> values; |
+ values.push_back(624485); |
+ values.push_back(0); |
+ values.push_back(1); |
+ values.push_back(127); |
+ values.push_back(128); |
+ |
+ Leb128Encoder encoder; |
+ encoder.EnqueueAll(values); |
+ |
+ encoder.Enqueue(4294967295); |
+ encoder.Enqueue(18446744073709551615ul); |
+ |
+ std::vector<uint8_t> encoding; |
+ encoder.GetEncoding(&encoding); |
+ |
+ EXPECT_EQ(23, encoding.size()); |
+ // 624485 |
+ EXPECT_EQ(0xe5, encoding[0]); |
+ EXPECT_EQ(0x8e, encoding[1]); |
+ EXPECT_EQ(0x26, encoding[2]); |
+ // 0 |
+ EXPECT_EQ(0x00, encoding[3]); |
+ // 1 |
+ EXPECT_EQ(0x01, encoding[4]); |
+ // 127 |
+ EXPECT_EQ(0x7f, encoding[5]); |
+ // 128 |
+ EXPECT_EQ(0x80, encoding[6]); |
+ EXPECT_EQ(0x01, encoding[7]); |
+ // 4294967295 |
+ EXPECT_EQ(0xff, encoding[8]); |
+ EXPECT_EQ(0xff, encoding[9]); |
+ EXPECT_EQ(0xff, encoding[10]); |
+ EXPECT_EQ(0xff, encoding[11]); |
+ EXPECT_EQ(0x0f, encoding[12]); |
+ // 18446744073709551615 |
+ EXPECT_EQ(0xff, encoding[13]); |
+ EXPECT_EQ(0xff, encoding[14]); |
+ EXPECT_EQ(0xff, encoding[15]); |
+ EXPECT_EQ(0xff, encoding[16]); |
+ EXPECT_EQ(0xff, encoding[17]); |
+ EXPECT_EQ(0xff, encoding[18]); |
+ EXPECT_EQ(0xff, encoding[19]); |
+ EXPECT_EQ(0xff, encoding[20]); |
+ EXPECT_EQ(0xff, encoding[21]); |
+ EXPECT_EQ(0x01, encoding[22]); |
+} |
+ |
+TEST(Leb128, Decoder) { |
+ std::vector<uint8_t> encoding; |
+ // 624485 |
+ encoding.push_back(0xe5); |
+ encoding.push_back(0x8e); |
+ encoding.push_back(0x26); |
+ // 0 |
+ encoding.push_back(0x00); |
+ // 1 |
+ encoding.push_back(0x01); |
+ // 127 |
+ encoding.push_back(0x7f); |
+ // 128 |
+ encoding.push_back(0x80); |
+ encoding.push_back(0x01); |
+ // 4294967295 |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0x0f); |
+ // 18446744073709551615 |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0xff); |
+ encoding.push_back(0x01); |
+ |
+ Leb128Decoder decoder(encoding); |
+ |
+ EXPECT_EQ(624485, decoder.Dequeue()); |
+ |
+ std::vector<ELF::Xword> dequeued; |
+ decoder.DequeueAll(&dequeued); |
+ |
+ EXPECT_EQ(6, dequeued.size()); |
+ EXPECT_EQ(0, dequeued[0]); |
+ EXPECT_EQ(1, dequeued[1]); |
+ EXPECT_EQ(127, dequeued[2]); |
+ EXPECT_EQ(128, dequeued[3]); |
+ EXPECT_EQ(4294967295, dequeued[4]); |
+ EXPECT_EQ(18446744073709551615ul, dequeued[5]); |
+} |
+ |
+} // namespace relocation_packer |