1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/tools/huffman_trie/bit_writer.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net::huffman_trie {
namespace {
// Test that single bits are written to the buffer correctly.
TEST(BitWriterTest, WriteBit) {
BitWriter writer;
EXPECT_EQ(0U, writer.position());
EXPECT_EQ(0U, writer.bytes().size());
writer.WriteBit(0);
EXPECT_EQ(1U, writer.position());
writer.WriteBit(1);
writer.WriteBit(0);
writer.WriteBit(1);
writer.WriteBit(0);
writer.WriteBit(1);
writer.WriteBit(0);
writer.WriteBit(1);
EXPECT_EQ(8U, writer.position());
writer.WriteBit(0);
EXPECT_EQ(9U, writer.position());
writer.WriteBit(1);
writer.WriteBit(0);
EXPECT_EQ(11U, writer.position());
// Flush should pad the current byte with zero's until it's full.
writer.Flush();
// The writer should have 2 bytes now even though we only wrote 11 bits.
EXPECT_EQ(16U, writer.position());
// 0 + 1 + 0 + 1 + 0 + 1 + 0 + 1 + 0 + 1 + 0 + 00000 (padding) = 0x5540.
EXPECT_THAT(writer.bytes(), testing::ElementsAre(0x55, 0x40));
}
// Test that when multiple bits are written to the buffer, they are appended
// correctly.
TEST(BitWriterTest, WriteBits) {
BitWriter writer;
// 0xAA is 10101010 in binary. WritBits will write the n least significant
// bits where n is given as the second parameter.
writer.WriteBits(0xAA, 1);
EXPECT_EQ(1U, writer.position());
writer.WriteBits(0xAA, 2);
EXPECT_EQ(3U, writer.position());
writer.WriteBits(0xAA, 3);
EXPECT_EQ(6U, writer.position());
writer.WriteBits(0xAA, 2);
EXPECT_EQ(8U, writer.position());
writer.WriteBits(0xAA, 2);
EXPECT_EQ(10U, writer.position());
// Flush should pad the current byte with zero's until it's full.
writer.Flush();
// The writer should have 2 bytes now even though we only wrote 10 bits.
EXPECT_EQ(16U, writer.position());
// 0 + 10 + 010 + 10 + 10 + 000000 (padding) = 0x4A80
EXPECT_THAT(writer.bytes(), testing::ElementsAre(0x4A, 0x80));
}
// Test that buffering works correct when the methods are mixed.
TEST(BitWriterTest, WriteBoth) {
BitWriter writer;
// 0xAA is 10101010 in binary. WritBits will write the n least significant
// bits where n is given as the second parameter.
writer.WriteBits(0xAA, 1);
EXPECT_EQ(1U, writer.position());
writer.WriteBit(1);
writer.WriteBits(0xAA, 2);
EXPECT_EQ(4U, writer.position());
writer.WriteBits(0xAA, 3);
EXPECT_EQ(7U, writer.position());
writer.WriteBit(1);
EXPECT_EQ(8U, writer.position());
writer.WriteBits(0xAA, 2);
writer.WriteBit(0);
EXPECT_EQ(11U, writer.position());
// Flush should pad the current byte with zero's until it's full.
writer.Flush();
// The writer should have 2 bytes now even though we only wrote 10 bits.
EXPECT_EQ(16U, writer.position());
// 0 + 1 + 10 + 010 + 1 + 10 + 0 + 00000 (padding) = 0x6580
EXPECT_THAT(writer.bytes(), testing::ElementsAre(0x65, 0x80));
}
} // namespace
} // namespace net::huffman_trie
|