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 <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "chrome/common/filter_policy.h" | 10 #include "chrome/common/filter_policy.h" |
11 #include "chrome/common/render_messages.h" | 11 #include "chrome/common/render_messages.h" |
12 #include "chrome/common/resource_dispatcher.h" | 12 #include "chrome/common/resource_dispatcher.h" |
13 | |
14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "webkit/glue/webappcachecontext.h" |
15 | 15 |
16 using webkit_glue::ResourceLoaderBridge; | 16 using webkit_glue::ResourceLoaderBridge; |
17 | 17 |
18 static const char test_page_url[] = "http://www.google.com/"; | 18 static const char test_page_url[] = "http://www.google.com/"; |
19 static const char test_page_headers[] = | 19 static const char test_page_headers[] = |
20 "HTTP/1.1 200 OK\nContent-Type:text/html\n\n"; | 20 "HTTP/1.1 200 OK\nContent-Type:text/html\n\n"; |
21 static const char test_page_mime_type[] = "text/html"; | 21 static const char test_page_mime_type[] = "text/html"; |
22 static const char test_page_charset[] = ""; | 22 static const char test_page_charset[] = ""; |
23 static const char test_page_contents[] = | 23 static const char test_page_contents[] = |
24 "<html><head><title>Google</title></head><body><h1>Google</h1></body></html>"; | 24 "<html><head><title>Google</title></head><body><h1>Google</h1></body></html>"; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 /*static*/ | 150 /*static*/ |
151 scoped_ptr<ResourceDispatcher> ResourceDispatcherTest::dispatcher_; | 151 scoped_ptr<ResourceDispatcher> ResourceDispatcherTest::dispatcher_; |
152 | 152 |
153 // Does a simple request and tests that the correct data is received. | 153 // Does a simple request and tests that the correct data is received. |
154 TEST_F(ResourceDispatcherTest, RoundTrip) { | 154 TEST_F(ResourceDispatcherTest, RoundTrip) { |
155 TestRequestCallback callback; | 155 TestRequestCallback callback; |
156 ResourceLoaderBridge* bridge = | 156 ResourceLoaderBridge* bridge = |
157 dispatcher_->CreateBridge("GET", GURL(test_page_url), GURL(test_page_url), | 157 dispatcher_->CreateBridge("GET", GURL(test_page_url), GURL(test_page_url), |
158 GURL(), "null", "null", std::string(), "", 0, 0, | 158 GURL(), "null", "null", std::string(), "", 0, 0, |
159 ResourceType::SUB_RESOURCE, 0, | 159 ResourceType::SUB_RESOURCE, 0, |
| 160 WebAppCacheContext::kNoAppCacheContextId, |
160 MSG_ROUTING_CONTROL); | 161 MSG_ROUTING_CONTROL); |
161 | 162 |
162 bridge->Start(&callback); | 163 bridge->Start(&callback); |
163 | 164 |
164 ProcessMessages(); | 165 ProcessMessages(); |
165 | 166 |
166 // FIXME(brettw) when the request complete messages are actually handledo | 167 // FIXME(brettw) when the request complete messages are actually handledo |
167 // and dispatched, uncomment this. | 168 // and dispatched, uncomment this. |
168 //EXPECT_TRUE(callback.complete()); | 169 //EXPECT_TRUE(callback.complete()); |
169 //EXPECT_STREQ(test_page_contents, callback.data().c_str()); | 170 //EXPECT_STREQ(test_page_contents, callback.data().c_str()); |
(...skipping 11 matching lines...) Expand all Loading... |
181 // FIXME | 182 // FIXME |
182 } | 183 } |
183 | 184 |
184 TEST_F(ResourceDispatcherTest, Cookies) { | 185 TEST_F(ResourceDispatcherTest, Cookies) { |
185 // FIXME | 186 // FIXME |
186 } | 187 } |
187 | 188 |
188 TEST_F(ResourceDispatcherTest, SerializedPostData) { | 189 TEST_F(ResourceDispatcherTest, SerializedPostData) { |
189 // FIXME | 190 // FIXME |
190 } | 191 } |
OLD | NEW |