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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
// Copyright 2015 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.
#include "components/certificate_transparency/log_proof_fetcher.h"
#include <string>
#include "base/macros.h"
#include "base/strings/stringprintf.h"
#include "components/safe_json/testing_json_parser.h"
#include "net/base/net_errors.h"
#include "net/base/network_delegate.h"
#include "net/cert/signed_tree_head.h"
#include "net/http/http_status_code.h"
#include "net/test/ct_test_util.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_filter.h"
#include "net/url_request/url_request_interceptor.h"
#include "net/url_request/url_request_job.h"
#include "net/url_request/url_request_test_job.h"
#include "net/url_request/url_request_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace certificate_transparency {
namespace {
const char kGetSTHHeaders[] =
"HTTP/1.1 200 OK\n"
"Content-Type: application/json; charset=ISO-8859-1\n";
const char kGetSTHNotFoundHeaders[] =
"HTTP/1.1 404 Not Found\n"
"Content-Type: text/html; charset=iso-8859-1\n";
const char kLogSchema[] = "https";
const char kLogHost[] = "ct.log.example.com";
const char kLogPathPrefix[] = "somelog";
const char kLogID[] = "some_id";
class FetchSTHTestJob : public net::URLRequestTestJob {
public:
FetchSTHTestJob(const std::string& get_sth_data,
const std::string& get_sth_headers,
net::URLRequest* request,
net::NetworkDelegate* network_delegate)
: URLRequestTestJob(request,
network_delegate,
get_sth_headers,
get_sth_data,
true),
async_io_(false) {}
void set_async_io(bool async_io) { async_io_ = async_io; }
private:
~FetchSTHTestJob() override {}
bool NextReadAsync() override {
// Response with indication of async IO only once, otherwise the final
// Read would (incorrectly) be classified as async, causing the
// URLRequestJob to try reading another time and failing on a CHECK
// that the raw_read_buffer_ is not null.
// According to mmenke@, this is a bug in the URLRequestTestJob code.
// TODO(eranm): Once said bug is fixed, switch most tests to using async
// IO.
if (async_io_) {
async_io_ = false;
return true;
}
return false;
}
bool async_io_;
DISALLOW_COPY_AND_ASSIGN(FetchSTHTestJob);
};
class GetSTHResponseHandler : public net::URLRequestInterceptor {
public:
GetSTHResponseHandler()
: async_io_(false),
response_body_(""),
response_headers_(
std::string(kGetSTHHeaders, arraysize(kGetSTHHeaders))) {}
~GetSTHResponseHandler() override {}
// URLRequestInterceptor implementation:
net::URLRequestJob* MaybeInterceptRequest(
net::URLRequest* request,
net::NetworkDelegate* network_delegate) const override {
std::string expected_url = base::StringPrintf(
"%s://%s/%s/ct/v1/get-sth", kLogSchema, kLogHost, kLogPathPrefix);
EXPECT_EQ(GURL(expected_url), request->url());
FetchSTHTestJob* job = new FetchSTHTestJob(
response_body_, response_headers_, request, network_delegate);
job->set_async_io(async_io_);
return job;
}
void set_response_body(const std::string& response_body) {
response_body_ = response_body;
}
void set_response_headers(const std::string& response_headers) {
response_headers_ = response_headers;
}
void set_async_io(bool async_io) { async_io_ = async_io; }
private:
bool async_io_;
std::string response_body_;
std::string response_headers_;
DISALLOW_COPY_AND_ASSIGN(GetSTHResponseHandler);
};
class RecordFetchCallbackInvocations {
public:
RecordFetchCallbackInvocations(bool expect_success)
: expect_success_(expect_success),
invoked_(false),
net_error_(net::OK),
http_response_code_(-1) {}
void STHFetched(const std::string& log_id,
const net::ct::SignedTreeHead& sth) {
ASSERT_TRUE(expect_success_);
ASSERT_FALSE(invoked_);
invoked_ = true;
// If expected to succeed, expecting the known_good STH.
net::ct::SignedTreeHead expected_sth;
net::ct::GetSampleSignedTreeHead(&expected_sth);
EXPECT_EQ(kLogID, log_id);
EXPECT_EQ(expected_sth.version, sth.version);
EXPECT_EQ(expected_sth.timestamp, sth.timestamp);
EXPECT_EQ(expected_sth.tree_size, sth.tree_size);
EXPECT_STREQ(expected_sth.sha256_root_hash, sth.sha256_root_hash);
EXPECT_EQ(expected_sth.signature.hash_algorithm,
sth.signature.hash_algorithm);
EXPECT_EQ(expected_sth.signature.signature_algorithm,
sth.signature.signature_algorithm);
EXPECT_EQ(expected_sth.signature.signature_data,
sth.signature.signature_data);
}
void FetchingFailed(const std::string& log_id,
int net_error,
int http_response_code) {
ASSERT_FALSE(expect_success_);
ASSERT_FALSE(invoked_);
invoked_ = true;
net_error_ = net_error;
http_response_code_ = http_response_code;
if (net_error_ == net::OK) {
EXPECT_NE(net::HTTP_OK, http_response_code_);
}
}
bool invoked() const { return invoked_; }
int net_error() const { return net_error_; }
int http_response_code() const { return http_response_code_; }
private:
const bool expect_success_;
bool invoked_;
int net_error_;
int http_response_code_;
};
class LogProofFetcherTest : public ::testing::Test {
public:
LogProofFetcherTest()
: log_url_(base::StringPrintf("%s://%s/%s/",
kLogSchema,
kLogHost,
kLogPathPrefix)) {
scoped_ptr<GetSTHResponseHandler> handler(new GetSTHResponseHandler());
handler_ = handler.get();
net::URLRequestFilter::GetInstance()->AddHostnameInterceptor(
kLogSchema, kLogHost, handler.Pass());
fetcher_.reset(new LogProofFetcher(&context_));
}
~LogProofFetcherTest() override {
net::URLRequestFilter::GetInstance()->RemoveHostnameHandler(kLogSchema,
kLogHost);
}
protected:
void SetValidSTHJSONResponse() {
std::string sth_json_reply_data = net::ct::GetSampleSTHAsJson();
handler_->set_response_body(sth_json_reply_data);
}
void RunFetcherWithCallback(RecordFetchCallbackInvocations* callback) {
fetcher_->FetchSignedTreeHead(
log_url_, kLogID,
base::Bind(&RecordFetchCallbackInvocations::STHFetched,
base::Unretained(callback)),
base::Bind(&RecordFetchCallbackInvocations::FetchingFailed,
base::Unretained(callback)));
message_loop_.RunUntilIdle();
}
base::MessageLoopForIO message_loop_;
net::TestURLRequestContext context_;
safe_json::TestingJsonParser::ScopedFactoryOverride factory_override_;
scoped_ptr<LogProofFetcher> fetcher_;
const GURL log_url_;
GetSTHResponseHandler* handler_;
};
TEST_F(LogProofFetcherTest, TestValidGetReply) {
SetValidSTHJSONResponse();
RecordFetchCallbackInvocations callback(true);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
}
TEST_F(LogProofFetcherTest, TestValidGetReplyAsyncIO) {
SetValidSTHJSONResponse();
handler_->set_async_io(true);
RecordFetchCallbackInvocations callback(true);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
}
TEST_F(LogProofFetcherTest, TestInvalidGetReplyIncompleteJSON) {
std::string sth_json_reply_data = net::ct::CreateSignedTreeHeadJsonString(
21 /* tree_size */, 123456u /* timestamp */, std::string(),
std::string());
handler_->set_response_body(sth_json_reply_data);
RecordFetchCallbackInvocations callback(false);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
EXPECT_EQ(net::ERR_CT_STH_INCOMPLETE, callback.net_error());
}
TEST_F(LogProofFetcherTest, TestInvalidGetReplyInvalidJSON) {
std::string sth_json_reply_data = "{\"tree_size\":21,\"timestamp\":}";
handler_->set_response_body(sth_json_reply_data);
RecordFetchCallbackInvocations callback(false);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
EXPECT_EQ(net::ERR_CT_STH_PARSING_FAILED, callback.net_error());
}
TEST_F(LogProofFetcherTest, TestLogReplyIsTooLong) {
std::string sth_json_reply_data = net::ct::GetSampleSTHAsJson();
// Add kMaxLogResponseSizeInBytes to make sure the response is too big.
sth_json_reply_data.append(
std::string(LogProofFetcher::kMaxLogResponseSizeInBytes, ' '));
handler_->set_response_body(sth_json_reply_data);
RecordFetchCallbackInvocations callback(false);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
EXPECT_EQ(net::ERR_FILE_TOO_BIG, callback.net_error());
EXPECT_EQ(net::HTTP_OK, callback.http_response_code());
}
TEST_F(LogProofFetcherTest, TestLogReplyIsExactlyMaxSize) {
std::string sth_json_reply_data = net::ct::GetSampleSTHAsJson();
// Extend the reply to be exactly kMaxLogResponseSizeInBytes.
sth_json_reply_data.append(std::string(
LogProofFetcher::kMaxLogResponseSizeInBytes - sth_json_reply_data.size(),
' '));
handler_->set_response_body(sth_json_reply_data);
RecordFetchCallbackInvocations callback(true);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
}
TEST_F(LogProofFetcherTest, TestLogRepliesWithHttpError) {
handler_->set_response_headers(
std::string(kGetSTHNotFoundHeaders, arraysize(kGetSTHNotFoundHeaders)));
RecordFetchCallbackInvocations callback(false);
RunFetcherWithCallback(&callback);
ASSERT_TRUE(callback.invoked());
EXPECT_EQ(net::OK, callback.net_error());
EXPECT_EQ(net::HTTP_NOT_FOUND, callback.http_response_code());
}
} // namespace
} // namespace certificate_transparency
|