Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: ppapi/tests/test_url_request.h

Issue 9174020: PPAPI URLRequestInfo test: port NaCl version to ppapi_tests. Fix Var and Resource leaks. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/ppapi_sources.gypi ('k') | ppapi/tests/test_url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_url_request.h
===================================================================
--- ppapi/tests/test_url_request.h (revision 0)
+++ ppapi/tests/test_url_request.h (revision 0)
@@ -0,0 +1,46 @@
+// 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.
+
+#ifndef PAPPI_TESTS_TEST_URL_REQUEST_H_
+#define PAPPI_TESTS_TEST_URL_REQUEST_H_
+
+#include <string>
+
+#include "ppapi/c/ppb_core.h"
+#include "ppapi/c/ppb_url_loader.h"
+#include "ppapi/c/ppb_url_request_info.h"
+#include "ppapi/c/ppb_url_response_info.h"
+#include "ppapi/c/ppb_var.h"
+#include "ppapi/tests/test_case.h"
+
+class TestURLRequest : public TestCase {
+ public:
+ explicit TestURLRequest(TestingInstance* instance);
+ ~TestURLRequest() { ppb_core_interface_->ReleaseResource(url_loader_); }
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTests(const std::string& filter);
+
+ private:
+ std::string TestCreateAndIsURLRequestInfo();
+ std::string TestSetProperty();
+ std::string TestAppendDataToBody();
+ std::string TestStress();
+
+ // Helpers.
+ PP_Var PP_MakeString(const char* s);
+ std::string LoadAndCompareBody(PP_Resource url_request,
+ const std::string& expected_body);
+
+ const PPB_URLRequestInfo* ppb_url_request_interface_;
+ const PPB_URLLoader* ppb_url_loader_interface_;
+ const PPB_URLResponseInfo* ppb_url_response_interface_;
+ const PPB_Core* ppb_core_interface_;
+ const PPB_Var* ppb_var_interface_;
+
+ PP_Resource url_loader_;
+};
+
+#endif // PAPPI_TESTS_TEST_URL_REQUEST_H_
Property changes on: ppapi/tests/test_url_request.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « ppapi/ppapi_sources.gypi ('k') | ppapi/tests/test_url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698