mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
3f3f45580a
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2021, Simon Woertz <simon@woertz.at>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Forward.h>
|
|
#include <AK/String.h>
|
|
#include <LibCore/MappedFile.h>
|
|
#include <LibPDF/Document.h>
|
|
#include <LibTest/Macros.h>
|
|
#include <LibTest/TestCase.h>
|
|
|
|
TEST_CASE(linearized_pdf)
|
|
{
|
|
auto file = Core::MappedFile::map("linearized.pdf"sv).release_value();
|
|
auto document = PDF::Document::create(file->bytes());
|
|
EXPECT(!document.is_error());
|
|
EXPECT(!document.value()->initialize().is_error());
|
|
EXPECT_EQ(document.value()->get_page_count(), 1U);
|
|
}
|
|
|
|
TEST_CASE(non_linearized_pdf)
|
|
{
|
|
auto file = Core::MappedFile::map("non-linearized.pdf"sv).release_value();
|
|
auto document = PDF::Document::create(file->bytes());
|
|
EXPECT(!document.is_error());
|
|
EXPECT(!document.value()->initialize().is_error());
|
|
EXPECT_EQ(document.value()->get_page_count(), 1U);
|
|
}
|
|
|
|
TEST_CASE(complex_pdf)
|
|
{
|
|
auto file = Core::MappedFile::map("complex.pdf"sv).release_value();
|
|
auto document = PDF::Document::create(file->bytes());
|
|
EXPECT(!document.is_error());
|
|
EXPECT(!document.value()->initialize().is_error());
|
|
EXPECT_EQ(document.value()->get_page_count(), 3U);
|
|
}
|
|
|
|
TEST_CASE(empty_file_issue_10702)
|
|
{
|
|
AK::ReadonlyBytes empty;
|
|
auto document = PDF::Document::create(empty);
|
|
EXPECT(document.is_error());
|
|
}
|
|
|
|
TEST_CASE(truncated_pdf_header_issue_10717)
|
|
{
|
|
AK::String string { "%PDF-2.11%" };
|
|
auto document = PDF::Document::create(string.bytes());
|
|
EXPECT(document.is_error());
|
|
}
|