| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |