blob: 30bfbce28b85b75cfafb857be1a2e9703a914d10 [file] [log] [blame]
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkBase64.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -04009#include "SkTo.h"
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000010
11#include "Test.h"
12
tfarina9ea53f92014-06-24 06:50:39 -070013DEF_TEST(SkBase64, reporter) {
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000014 char all[256];
robertphillips@google.com70172882014-02-01 15:45:23 +000015 for (int index = 0; index < 256; ++index) {
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000016 all[index] = (signed char) (index + 1);
17 }
18
robertphillips@google.com70172882014-02-01 15:45:23 +000019 for (int offset = 0; offset < 6; ++offset) {
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000020 size_t length = 256 - offset;
halcanary96fcdcc2015-08-27 07:41:13 -070021 size_t encodeLength = SkBase64::Encode(all + offset, length, nullptr);
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000022 SkAutoTMalloc<char> src(encodeLength + 1);
23 SkBase64::Encode(all + offset, length, src.get());
bsalomonfbaace02014-12-12 16:41:46 -080024 src[SkToInt(encodeLength)] = '\0';
tfarina@chromium.orgceddfeb2014-01-30 22:51:42 +000025 SkBase64 tryMe;
26 tryMe.decode(src.get(), encodeLength);
27 REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
28 delete[] tryMe.getData();
29 }
30}