Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: tests/SkBase64Test.cpp

Issue 132233060: Port SkBase64 test to our test driver. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: mtklein review Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/utils/SkBase64.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/SkBase64Test.cpp
diff --git a/tests/SkBase64Test.cpp b/tests/SkBase64Test.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..aba96911067b5e1cb2732f2be41b2d72f08806e7
--- /dev/null
+++ b/tests/SkBase64Test.cpp
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkBase64.h"
+
+#include "Test.h"
+
+DEF_TEST(SkBase64Test, reporter) {
+ char all[256];
+ for (int index = 0; index < 256; index++) {
+ all[index] = (signed char) (index + 1);
+ }
+
+ for (int offset = 0; offset < 6; offset++) {
+ size_t length = 256 - offset;
+ size_t encodeLength = SkBase64::Encode(all + offset, length, NULL);
+ SkAutoTMalloc<char> src(encodeLength + 1);
+ SkBase64::Encode(all + offset, length, src.get());
+ SkBase64 tryMe;
+ tryMe.decode(src.get(), encodeLength);
+ REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
+ delete[] tryMe.getData();
+ }
+}
« no previous file with comments | « src/utils/SkBase64.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698