mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2023, Tim Ledbetter <timledbetter@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
|
#include <LibGfx/Font/PathFontProvider.h>
|
|
#include <LibGfx/Font/WOFF2/Loader.h>
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#define TEST_INPUT(x) ("test-inputs/" x)
|
|
|
|
namespace {
|
|
|
|
struct Global {
|
|
Global()
|
|
{
|
|
Gfx::FontDatabase::the().install_system_font_provider(make<Gfx::PathFontProvider>());
|
|
}
|
|
} global;
|
|
|
|
}
|
|
|
|
TEST_CASE(tolerate_incorrect_sfnt_size)
|
|
{
|
|
auto file = MUST(Core::MappedFile::map(TEST_INPUT("woff2/incorrect_sfnt_size.woff2"sv)));
|
|
auto font = TRY_OR_FAIL(WOFF2::try_load_from_bytes(file->bytes()));
|
|
EXPECT_EQ(font->family(), "Test"_string);
|
|
EXPECT_EQ(font->glyph_count(), 4u);
|
|
}
|
|
|
|
TEST_CASE(malformed_woff2)
|
|
{
|
|
Array test_inputs = {
|
|
TEST_INPUT("woff2/incorrect_compressed_size.woff2"sv),
|
|
TEST_INPUT("woff2/invalid_numtables.woff2"sv)
|
|
};
|
|
|
|
for (auto test_input : test_inputs) {
|
|
auto file = MUST(Core::MappedFile::map(test_input));
|
|
auto font_or_error = WOFF2::try_load_from_bytes(file->bytes());
|
|
EXPECT(font_or_error.is_error());
|
|
}
|
|
}
|