blob: d7956f26d6474f4fc290dedd8ed6975de33da312 [file] [log] [blame]
// Copyright 2018 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.
#ifndef PDF_PDFIUM_PDFIUM_TEST_BASE_H_
#define PDF_PDFIUM_PDFIUM_TEST_BASE_H_
#include <memory>
#include "base/files/file_path.h"
#include "base/macros.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chrome_pdf {
class PDFiumEngine;
class TestClient;
class PDFiumTestBase : public testing::Test {
public:
PDFiumTestBase();
~PDFiumTestBase() override;
protected:
// testing::Test:
void SetUp() override;
void TearDown() override;
// Initializes a PDFiumEngine for use in testing with |client|. Loads a PDF
// named |pdf_name|.See TestDocumentLoader for more info about |pdf_name|.
std::unique_ptr<PDFiumEngine> InitializeEngine(
TestClient* client,
const base::FilePath::CharType* pdf_name);
private:
// Sets the PDF to load for a test. This must be called for tests that use
// TestDocumentLoader. See TestDocumentLoader for more info.
void SetDocumentForTest(const base::FilePath::CharType* pdf_name);
void InitializePDFium();
DISALLOW_COPY_AND_ASSIGN(PDFiumTestBase);
};
} // namespace chrome_pdf
#endif // PDF_PDFIUM_PDFIUM_TEST_BASE_H_