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

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

Issue 3064012: Base implementation of WebDriver for Chrome. This checkin includes... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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/utility_functions.h ('k') | chrome/test/webdriver/webdriver_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/utility_functions.cc
===================================================================
--- chrome/test/webdriver/utility_functions.cc (revision 0)
+++ chrome/test/webdriver/utility_functions.cc (revision 0)
@@ -0,0 +1,88 @@
+// Copyright (c) 2010 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 "chrome/test/webdriver/utility_functions.h"
+
+#include <string.h>
+#include <wchar.h>
+#include <algorithm>
+#include <sstream>
+
+#include "base/json/json_reader.h"
+#include "base/logging.h"
+#include "base/scoped_ptr.h"
+
+#include "third_party/webdriver/atoms.h"
+
+namespace webdriver {
+
+std::wstring build_atom(const wchar_t* const atom[], const size_t& size) {
+ const size_t len = size / sizeof(atom[0]);
+ std::wstring ret = L"";
+ for (size_t i = 0; i < len; ++i) {
+ if (atom[i] != NULL) {
+ ret.append(std::wstring(atom[i]));
+ }
+ }
+ return ret;
+}
+
+std::wstring print_valuetype(Value::ValueType e) {
+ switch (e) {
+ case Value::TYPE_NULL:
+ return L"NULL ";
+ case Value::TYPE_BOOLEAN:
+ return L"BOOL";
+ case Value::TYPE_INTEGER:
+ return L"INT";
+ case Value::TYPE_REAL:
+ return L"REAL";
+ case Value::TYPE_STRING:
+ return L"STRING";
+ case Value::TYPE_BINARY:
+ return L"BIN";
+ case Value::TYPE_DICTIONARY:
+ return L"DICT";
+ case Value::TYPE_LIST:
+ return L"LIST";
+ default:
+ return L"ERROR";
+ }
+}
+
+void CheckValueType(const Value::ValueType expected,
+ const Value* const actual) {
+ DCHECK(actual != NULL) << "Expected value to be non-NULL";
+ DCHECK(expected == actual->GetType())
+ << "Expected " << print_valuetype(expected)
+ << ", but was " << print_valuetype(actual->GetType());
+}
+
+bool ParseJSONDictionary(const std::string& json, DictionaryValue** dict,
+ std::string* error) {
+ int error_code = 0;
+ Value* params =
+ base::JSONReader::ReadAndReturnError(json, true, &error_code, error);
+ if (error_code != 0) {
+ LOG(INFO) << "Could not parse JSON object, " << *error << std::endl;
+ if (params) {
+ delete params;
+ }
+ return false;
+ }
+
+ if (!params || params->GetType() != Value::TYPE_DICTIONARY) {
+ *error = "Data passed in URL must be of type dictionary.";
+ LOG(INFO) << "Invalid type to parse" << std::endl;
+ if (params) {
+ delete params;
+ }
+ return false;
+ }
+
+ *dict = static_cast<DictionaryValue*>(params);
+ return true;
+}
+} // namespace webdriver
+
Property changes on: chrome/test/webdriver/utility_functions.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/webdriver/utility_functions.h ('k') | chrome/test/webdriver/webdriver_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698