1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file defines MockFileStream, a test class for FileStream.
#ifndef NET_BASE_MOCK_FILE_STREAM_H_
#define NET_BASE_MOCK_FILE_STREAM_H_
#pragma once
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/file_path.h"
#include "net/base/file_stream.h"
#include "net/base/net_errors.h"
namespace net {
class IOBuffer;
namespace testing {
class MockFileStream : public net::FileStream {
public:
MockFileStream(net::NetLog* net_log)
: net::FileStream(net_log), forced_error_(net::OK) {}
MockFileStream(base::PlatformFile file, int flags, net::NetLog* net_log)
: net::FileStream(file, flags, net_log), forced_error_(net::OK) {}
// FileStream methods.
virtual int OpenSync(const FilePath& path, int open_flags) OVERRIDE;
virtual int Seek(net::Whence whence, int64 offset,
const Int64CompletionCallback& callback) OVERRIDE;
virtual int64 SeekSync(net::Whence whence, int64 offset) OVERRIDE;
virtual int64 Available() OVERRIDE;
virtual int Read(IOBuffer* buf,
int buf_len,
const CompletionCallback& callback) OVERRIDE;
virtual int ReadSync(char* buf, int buf_len) OVERRIDE;
virtual int ReadUntilComplete(char *buf, int buf_len) OVERRIDE;
virtual int Write(IOBuffer* buf,
int buf_len,
const CompletionCallback& callback) OVERRIDE;
virtual int WriteSync(const char* buf, int buf_len) OVERRIDE;
virtual int64 Truncate(int64 bytes) OVERRIDE;
virtual int Flush() OVERRIDE;
void set_forced_error(int error) { forced_error_ = error; }
void clear_forced_error() { forced_error_ = net::OK; }
int forced_error() const { return forced_error_; }
const FilePath& get_path() const { return path_; }
private:
int ReturnError(int function_error) {
if (forced_error_ != net::OK) {
int ret = forced_error_;
clear_forced_error();
return ret;
}
return function_error;
}
int64 ReturnError64(int64 function_error) {
if (forced_error_ != net::OK) {
int64 ret = forced_error_;
clear_forced_error();
return ret;
}
return function_error;
}
int forced_error_;
FilePath path_;
};
} // namespace testing
} // namespace net
#endif // NET_BASE_MOCK_FILE_STREAM_H_
|