| 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/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 11 #include "net/base/filter_unittest.h" |
| 11 #include "net/base/gzip_filter.h" | 12 #include "net/base/gzip_filter.h" |
| 12 #include "net/base/filter_unittest.h" | 13 #include "net/base/io_buffer.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "testing/platform_test.h" | 15 #include "testing/platform_test.h" |
| 15 #include "third_party/zlib/zlib.h" | 16 #include "third_party/zlib/zlib.h" |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 const int kDefaultBufferSize = 4096; | 20 const int kDefaultBufferSize = 4096; |
| 20 const int kSmallBufferSize = 128; | 21 const int kSmallBufferSize = 128; |
| 21 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB | 22 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB |
| 22 | 23 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 int corrupt_decode_size = kDefaultBufferSize; | 421 int corrupt_decode_size = kDefaultBufferSize; |
| 421 | 422 |
| 422 int code = DecodeAllWithFilter(filter.get(), corrupt_data, corrupt_data_len, | 423 int code = DecodeAllWithFilter(filter.get(), corrupt_data, corrupt_data_len, |
| 423 corrupt_decode_buffer, &corrupt_decode_size); | 424 corrupt_decode_buffer, &corrupt_decode_size); |
| 424 | 425 |
| 425 // Expect failures | 426 // Expect failures |
| 426 EXPECT_TRUE(code == Filter::FILTER_ERROR); | 427 EXPECT_TRUE(code == Filter::FILTER_ERROR); |
| 427 } | 428 } |
| 428 | 429 |
| 429 } // namespace | 430 } // namespace |
| OLD | NEW |