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

Unified Diff: chrome/test/webdriver/webdriver_util_unittest.cc

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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 | « chrome/test/webdriver/webdriver_util_mac.mm ('k') | third_party/mongoose/LICENSE » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_util_unittest.cc
diff --git a/chrome/test/webdriver/webdriver_util_unittest.cc b/chrome/test/webdriver/webdriver_util_unittest.cc
deleted file mode 100644
index ada282f37e8e1a677f19987b73bd3050f1d0c121..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/webdriver_util_unittest.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// 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.
-
-#include <set>
-#include <string>
-
-#include "base/base64.h"
-#include "base/file_util.h"
-#include "base/files/file_path.h"
-#include "base/files/scoped_temp_dir.h"
-#include "chrome/test/webdriver/webdriver_util.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace webdriver {
-
-TEST(RandomIDTest, CanGenerateSufficientlyRandomIDs) {
- std::set<std::string> generated_ids;
- for (int i = 0; i < 10000; ++i) {
- std::string id = GenerateRandomID();
- ASSERT_EQ(32u, id.length());
- ASSERT_TRUE(generated_ids.end() == generated_ids.find(id))
- << "Generated duplicate ID: " << id
- << " on iteration " << i;
- generated_ids.insert(id);
- }
-}
-
-TEST(ZipFileTest, ZipEntryToZipArchive) {
- base::ScopedTempDir temp_dir;
- ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
- std::string data;
- // A zip entry sent from a Java WebDriver client (v2.20) that contains a
- // file with the contents "COW\n".
- const char* kBase64ZipEntry =
- "UEsDBBQACAAIAJpyXEAAAAAAAAAAAAAAAAAEAAAAdGVzdHP2D+"
- "cCAFBLBwi/wAzGBgAAAAQAAAA=";
- ASSERT_TRUE(base::Base64Decode(kBase64ZipEntry, &data));
- base::FilePath file;
- std::string error_msg;
- ASSERT_TRUE(UnzipSoleFile(temp_dir.path(), data, &file, &error_msg))
- << error_msg;
- std::string contents;
- ASSERT_TRUE(base::ReadFileToString(file, &contents));
- ASSERT_STREQ("COW\n", contents.c_str());
-}
-
-} // namespace webdriver
« no previous file with comments | « chrome/test/webdriver/webdriver_util_mac.mm ('k') | third_party/mongoose/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698