c0bd9f9fe5
Current strategy: everything from the top Things to look at first are the manual changes: - added tools/rewrite_includes.py - removed -Idirectives from BUILD.gn - various compile.sh simplifications - tweak tools/embed_resources.py - update gn/find_headers.py to write paths from the top - update gn/gn_to_bp.py SkUserConfig.h layout so that #include "include/config/SkUserConfig.h" always gets the header we want. No-Presubmit: true Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Hal Canary <halcanary@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org>
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#include "include/core/SkData.h"
|
|
#include "include/core/SkStream.h"
|
|
#include "include/docs/SkPDFDocument.h"
|
|
#include "tests/Test.h"
|
|
|
|
DEF_TEST(SkPDF_Metadata, r) {
|
|
REQUIRE_PDF_DOCUMENT(SkPDF_Metadata, r);
|
|
SkTime::DateTime now;
|
|
SkTime::GetDateTime(&now);
|
|
SkPDF::Metadata metadata;
|
|
metadata.fTitle = "A1";
|
|
metadata.fAuthor = "A2";
|
|
metadata.fSubject = "A3";
|
|
metadata.fKeywords = "A4";
|
|
metadata.fCreator = "A5";
|
|
metadata.fCreation = now;
|
|
metadata.fModified = now;
|
|
|
|
SkDynamicMemoryWStream pdf;
|
|
auto doc = SkPDF::MakeDocument(&pdf, metadata);
|
|
doc->beginPage(612.0f, 792.0f);
|
|
doc->close();
|
|
sk_sp<SkData> data = pdf.detachAsData();
|
|
static const char* expectations[] = {
|
|
"/Title (A1)",
|
|
"/Author (A2)",
|
|
"/Subject (A3)",
|
|
"/Keywords (A4)",
|
|
"/Creator (A5)",
|
|
"/Producer (Skia/PDF ",
|
|
"/CreationDate (D:",
|
|
"/ModDate (D:"
|
|
};
|
|
const uint8_t* bytes = data->bytes();
|
|
for (const char* expectation : expectations) {
|
|
size_t len = strlen(expectation);
|
|
bool found = false;
|
|
size_t N = 1 + data->size() - len;
|
|
for (size_t i = 0; i < N; ++i) {
|
|
if (0 == memcmp(bytes + i, expectation, len)) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found) {
|
|
ERRORF(r, "expectation missing: '%s'.", expectation);
|
|
}
|
|
}
|
|
}
|