blob: 0b3c7d2d4f4cdd7b314300d932b2909464d56621 (
plain)
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
|
// Copyright (c) 2006-2008 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.
#ifndef WEBKIT_GLUE_UNITTEST_TEST_SERVER_H__
#define WEBKIT_GLUE_UNITTEST_TEST_SERVER_H__
#include "webkit/appcache/appcache_interfaces.h"
#include "webkit/glue/resource_loader_bridge.h"
#include "net/base/load_flags.h"
#include "net/url_request/url_request_unittest.h"
using webkit_glue::ResourceLoaderBridge;
// We need to use ResourceLoaderBridge to communicate with the testserver
// instead of using URLRequest directly because URLRequests need to be run on
// the test_shell's IO thread.
class UnittestTestServer : public HTTPTestServer {
protected:
UnittestTestServer() {
}
public:
static UnittestTestServer* CreateServer() {
UnittestTestServer* test_server = new UnittestTestServer();
FilePath no_cert;
FilePath docroot(FILE_PATH_LITERAL("webkit/data"));
if (!test_server->Start(net::TestServerLauncher::ProtoHTTP,
"localhost", 1337, docroot, no_cert, std::wstring())) {
delete test_server;
return NULL;
}
return test_server;
}
virtual bool MakeGETRequest(const std::string& page_name) {
GURL url(TestServerPage(page_name));
webkit_glue::ResourceLoaderBridge::RequestInfo request_info;
request_info.method = "GET";
request_info.url = url;
request_info.first_party_for_cookies = url;
request_info.referrer = GURL(); // No referrer.
request_info.frame_origin = "null";
request_info.main_frame_origin = "null";
request_info.headers = std::string(); // No extra headers.
request_info.load_flags = net::LOAD_NORMAL;
request_info.requestor_pid = 0;
request_info.request_type = ResourceType::SUB_RESOURCE;
request_info.request_context = 0;
request_info.appcache_host_id = appcache::kNoHostId;
request_info.routing_id = 0;
scoped_ptr<ResourceLoaderBridge> loader(
ResourceLoaderBridge::Create(request_info));
EXPECT_TRUE(loader.get());
ResourceLoaderBridge::SyncLoadResponse resp;
loader->SyncLoad(&resp);
return resp.status.is_success();
}
private:
virtual ~UnittestTestServer() {}
};
#endif // WEBKIT_GLUE_UNITTEST_TEST_SERVER_H__
|