blob: d8b1f9891fd97c93888a822e4d07810aa5d699e3 [file] [log] [blame]
// Copyright 2018 PDFium 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 "core/fpdfapi/parser/cpdf_stream_acc.h"
#include "core/fpdfapi/parser/cpdf_dictionary.h"
#include "core/fpdfapi/parser/cpdf_stream.h"
#include "core/fxcrt/fx_stream.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/invalid_seekable_read_stream.h"
TEST(CPDF_StreamAccTest, ReadRawDataFailed) {
CPDF_Stream stream;
stream.InitStreamFromFile(pdfium::MakeRetain<InvalidSeekableReadStream>(1024),
pdfium::MakeUnique<CPDF_Dictionary>());
auto stream_acc = pdfium::MakeRetain<CPDF_StreamAcc>(&stream);
stream_acc->LoadAllDataRaw();
EXPECT_EQ(0u, stream_acc->GetSize());
EXPECT_FALSE(stream_acc->GetData());
}