Home | History | Annotate | Download | only in tests
      1 /*
      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"
      9 #include "SkTo.h"
     10 
     11 #include "Test.h"
     12 
     13 DEF_TEST(SkBase64, reporter) {
     14     char all[256];
     15     for (int index = 0; index < 256; ++index) {
     16         all[index] = (signed char) (index + 1);
     17     }
     18 
     19     for (int offset = 0; offset < 6; ++offset) {
     20         size_t length = 256 - offset;
     21         size_t encodeLength = SkBase64::Encode(all + offset, length, nullptr);
     22         SkAutoTMalloc<char> src(encodeLength + 1);
     23         SkBase64::Encode(all + offset, length, src.get());
     24         src[SkToInt(encodeLength)] = '\0';
     25         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 }
     31