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

Side by Side Diff: tests/FrontBufferedStreamTest.cpp

Issue 25581002: Hide implementation details: SkFrontBufferedStream (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Add a note to handle failed alloc better. Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/utils/SkFrontBufferedStream.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkFrontBufferedStream.h" 8 #include "SkFrontBufferedStream.h"
9 #include "SkRefCnt.h" 9 #include "SkRefCnt.h"
10 #include "SkStream.h"
10 #include "SkTypes.h" 11 #include "SkTypes.h"
11 #include "Test.h" 12 #include "Test.h"
12 13
13 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream, 14 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream,
14 const void* expectations, size_t bytesToRead) { 15 const void* expectations, size_t bytesToRead) {
15 // output for reading bufferedStream. 16 // output for reading bufferedStream.
16 SkAutoMalloc storage(bytesToRead); 17 SkAutoMalloc storage(bytesToRead);
17 18
18 size_t bytesRead = bufferedStream->read(storage.get(), bytesToRead); 19 size_t bytesRead = bufferedStream->read(storage.get(), bytesToRead);
19 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEn d()); 20 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEn d());
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 152
152 static void TestStreams(skiatest::Reporter* reporter) { 153 static void TestStreams(skiatest::Reporter* reporter) {
153 // Test 6 and 64, which are used by Android, as well as another arbitrary le ngth. 154 // Test 6 and 64, which are used by Android, as well as another arbitrary le ngth.
154 test_buffers(reporter, 6); 155 test_buffers(reporter, 6);
155 test_buffers(reporter, 15); 156 test_buffers(reporter, 15);
156 test_buffers(reporter, 64); 157 test_buffers(reporter, 64);
157 } 158 }
158 159
159 #include "TestClassDef.h" 160 #include "TestClassDef.h"
160 DEFINE_TESTCLASS("FrontBufferedStream", FrontBufferedStreamTestClass, TestStream s) 161 DEFINE_TESTCLASS("FrontBufferedStream", FrontBufferedStreamTestClass, TestStream s)
OLDNEW
« no previous file with comments | « src/utils/SkFrontBufferedStream.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698