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

media / parsers / vp9_raw_bits_reader_unittest.cc [blame]

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <stdint.h>

#include <tuple>

#include "media/parsers/vp9_raw_bits_reader.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

TEST(Vp9RawBitsReaderTest, ReadBool) {
  uint8_t data[] = {0xf1};
  Vp9RawBitsReader reader;
  reader.Initialize(data, 1);

  EXPECT_TRUE(reader.IsValid());
  EXPECT_EQ(0u, reader.GetBytesRead());
  EXPECT_TRUE(reader.ReadBool());
  EXPECT_EQ(1u, reader.GetBytesRead());
  EXPECT_TRUE(reader.ReadBool());
  EXPECT_TRUE(reader.ReadBool());
  EXPECT_TRUE(reader.ReadBool());
  EXPECT_FALSE(reader.ReadBool());
  EXPECT_FALSE(reader.ReadBool());
  EXPECT_FALSE(reader.ReadBool());
  EXPECT_TRUE(reader.ReadBool());
  EXPECT_TRUE(reader.IsValid());

  // The return value is undefined.
  std::ignore = reader.ReadBool();
  EXPECT_FALSE(reader.IsValid());
  EXPECT_EQ(1u, reader.GetBytesRead());
}

TEST(Vp9RawBitsReader, ReadLiteral) {
  uint8_t data[] = {0x3d, 0x67, 0x9a};
  Vp9RawBitsReader reader;
  reader.Initialize(data, 3);

  EXPECT_TRUE(reader.IsValid());
  EXPECT_EQ(0x03, reader.ReadLiteral(4));
  EXPECT_EQ(0xd679, reader.ReadLiteral(16));
  EXPECT_TRUE(reader.IsValid());

  // The return value is undefined.
  std::ignore = reader.ReadLiteral(8);
  EXPECT_FALSE(reader.IsValid());
  EXPECT_EQ(3u, reader.GetBytesRead());
}

TEST(Vp9RawBitsReader, ReadSignedLiteral) {
  uint8_t data[] = {0x3d, 0x67, 0x9a};
  Vp9RawBitsReader reader;
  reader.Initialize(data, 3);

  EXPECT_TRUE(reader.IsValid());
  EXPECT_EQ(-0x03, reader.ReadSignedLiteral(4));
  EXPECT_EQ(-0x5679, reader.ReadSignedLiteral(15));
  EXPECT_TRUE(reader.IsValid());

  // The return value is undefined.
  std::ignore = reader.ReadSignedLiteral(7);
  EXPECT_FALSE(reader.IsValid());
  EXPECT_EQ(3u, reader.GetBytesRead());
}

}  // namespace media