| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <fstream> | 5 #include <fstream> |
| 6 #include <iostream> | 6 #include <iostream> |
| 7 | 7 |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/platform_test.h" | |
| 11 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 12 #include "net/base/bzip2_filter.h" | 11 #include "net/base/bzip2_filter.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 #include "testing/platform_test.h" |
| 14 #include "third_party/bzip2/bzlib.h" | 14 #include "third_party/bzip2/bzlib.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 const char* kExtraData = "Test Data, More Test Data, Even More Data of Test"; | 18 const char* kExtraData = "Test Data, More Test Data, Even More Data of Test"; |
| 19 const int kExtraDataBufferSize = 49; | 19 const int kExtraDataBufferSize = 49; |
| 20 const int kDefaultBufferSize = 4096; | 20 const int kDefaultBufferSize = 4096; |
| 21 const int kSmallBufferSize = 128; | 21 const int kSmallBufferSize = 128; |
| 22 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB | 22 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB |
| 23 | 23 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 DecodeAndCompareWithFilter(filter.get(), | 379 DecodeAndCompareWithFilter(filter.get(), |
| 380 source_buffer(), | 380 source_buffer(), |
| 381 source_len() + kExtraDataBufferSize, | 381 source_len() + kExtraDataBufferSize, |
| 382 more_data, | 382 more_data, |
| 383 more_data_len, | 383 more_data_len, |
| 384 kDefaultBufferSize, | 384 kDefaultBufferSize, |
| 385 true); | 385 true); |
| 386 } | 386 } |
| 387 | 387 |
| 388 } // namespace | 388 } // namespace |
| OLD | NEW |