summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc')
-rw-r--r--toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc170
1 files changed, 170 insertions, 0 deletions
diff --git a/toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc b/toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc
new file mode 100644
index 0000000000..3d6612e821
--- /dev/null
+++ b/toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader_test.cc
@@ -0,0 +1,170 @@
+// Copyright (c) 2009, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// Unit test for crash dump uploader.
+
+#include <string>
+
+#include "common/linux/google_crashdump_uploader.h"
+#include "breakpad_googletest_includes.h"
+#include "common/using_std_string.h"
+
+namespace google_breakpad {
+
+using ::testing::Return;
+using ::testing::_;
+
+class MockLibcurlWrapper : public LibcurlWrapper {
+ public:
+ MOCK_METHOD0(Init, bool());
+ MOCK_METHOD2(SetProxy, bool(const string& proxy_host,
+ const string& proxy_userpwd));
+ MOCK_METHOD2(AddFile, bool(const string& upload_file_path,
+ const string& basename));
+ MOCK_METHOD5(SendRequest,
+ bool(const string& url,
+ const std::map<string, string>& parameters,
+ long* http_status_code,
+ string* http_header_data,
+ string* http_response_data));
+};
+
+class GoogleCrashdumpUploaderTest : public ::testing::Test {
+};
+
+TEST_F(GoogleCrashdumpUploaderTest, InitFailsCausesUploadFailure) {
+ MockLibcurlWrapper m;
+ EXPECT_CALL(m, Init()).Times(1).WillOnce(Return(false));
+ GoogleCrashdumpUploader *uploader = new GoogleCrashdumpUploader("foobar",
+ "1.0",
+ "AAA-BBB",
+ "",
+ "",
+ "test@test.com",
+ "none",
+ "/tmp/foo.dmp",
+ "http://foo.com",
+ "",
+ "",
+ &m);
+ ASSERT_FALSE(uploader->Upload(NULL, NULL, NULL));
+}
+
+TEST_F(GoogleCrashdumpUploaderTest, TestSendRequestHappensWithValidParameters) {
+ // Create a temp file
+ char tempfn[80] = "/tmp/googletest-upload-XXXXXX";
+ int fd = mkstemp(tempfn);
+ ASSERT_NE(fd, -1);
+ close(fd);
+
+ MockLibcurlWrapper m;
+ EXPECT_CALL(m, Init()).Times(1).WillOnce(Return(true));
+ EXPECT_CALL(m, AddFile(tempfn, _)).WillOnce(Return(true));
+ EXPECT_CALL(m,
+ SendRequest("http://foo.com",_,_,_,_)).Times(1).WillOnce(Return(true));
+ GoogleCrashdumpUploader *uploader = new GoogleCrashdumpUploader("foobar",
+ "1.0",
+ "AAA-BBB",
+ "",
+ "",
+ "test@test.com",
+ "none",
+ tempfn,
+ "http://foo.com",
+ "",
+ "",
+ &m);
+ ASSERT_TRUE(uploader->Upload(NULL, NULL, NULL));
+}
+
+
+TEST_F(GoogleCrashdumpUploaderTest, InvalidPathname) {
+ MockLibcurlWrapper m;
+ EXPECT_CALL(m, Init()).Times(1).WillOnce(Return(true));
+ EXPECT_CALL(m, SendRequest(_,_,_,_,_)).Times(0);
+ GoogleCrashdumpUploader *uploader = new GoogleCrashdumpUploader("foobar",
+ "1.0",
+ "AAA-BBB",
+ "",
+ "",
+ "test@test.com",
+ "none",
+ "/tmp/foo.dmp",
+ "http://foo.com",
+ "",
+ "",
+ &m);
+ ASSERT_FALSE(uploader->Upload(NULL, NULL, NULL));
+}
+
+TEST_F(GoogleCrashdumpUploaderTest, TestRequiredParametersMustBePresent) {
+ // Test with empty product name.
+ GoogleCrashdumpUploader uploader("",
+ "1.0",
+ "AAA-BBB",
+ "",
+ "",
+ "test@test.com",
+ "none",
+ "/tmp/foo.dmp",
+ "http://foo.com",
+ "",
+ "");
+ ASSERT_FALSE(uploader.Upload(NULL, NULL, NULL));
+
+ // Test with empty product version.
+ GoogleCrashdumpUploader uploader1("product",
+ "",
+ "AAA-BBB",
+ "",
+ "",
+ "",
+ "",
+ "/tmp/foo.dmp",
+ "",
+ "",
+ "");
+
+ ASSERT_FALSE(uploader1.Upload(NULL, NULL, NULL));
+
+ // Test with empty client GUID.
+ GoogleCrashdumpUploader uploader2("product",
+ "1.0",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "/tmp/foo.dmp",
+ "",
+ "",
+ "");
+ ASSERT_FALSE(uploader2.Upload(NULL, NULL, NULL));
+}
+}