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

Unified Diff: chrome/test/ui/javascript_test_util.cc

Issue 42628: - Add UI test for the V8 Benchmark Suite.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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/ui/javascript_test_util.h ('k') | chrome/test/ui/sunspider_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui/javascript_test_util.cc
===================================================================
--- chrome/test/ui/javascript_test_util.cc (revision 0)
+++ chrome/test/ui/javascript_test_util.cc (revision 0)
@@ -0,0 +1,55 @@
+// Copyright (c) 2009 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/ui/javascript_test_util.h"
+
+#include "base/logging.h"
+#include "base/scoped_ptr.h"
+#include "base/string_util.h"
+#include "base/values.h"
+#include "chrome/common/json_value_serializer.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+bool JsonDictionaryToMap(const std::string& json,
+ std::map<std::string, std::string>* results) {
+ DCHECK(results != NULL);
+ JSONStringValueSerializer deserializer(json);
+ scoped_ptr<Value> root(deserializer.Deserialize(NULL));
+
+ // Note that we don't use ASSERT_TRUE here (and in some other places) as it
+ // doesn't work inside a function with a return type other than void.
+ EXPECT_TRUE(root.get());
+ if (!root.get())
+ return false;
+
+ EXPECT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
+ if (!root->IsType(Value::TYPE_DICTIONARY))
+ return false;
+
+ DictionaryValue* dict = static_cast<DictionaryValue*>(root.get());
+
+ DictionaryValue::key_iterator it = dict->begin_keys();
+ for (; it != dict->end_keys(); ++it) {
+ Value* value = NULL;
+ bool succeeded = dict->Get(*it, &value);
+
+ EXPECT_TRUE(succeeded);
+ if (!succeeded)
+ continue;
+
+ EXPECT_TRUE(value->IsType(Value::TYPE_STRING));
+ if (value->IsType(Value::TYPE_STRING)) {
+ std::string key = WideToUTF8(*it);
+
+ std::string result;
+ succeeded = value->GetAsString(&result);
+ EXPECT_TRUE(succeeded);
+
+ if (succeeded)
+ results->insert(std::make_pair(key, result));
+ }
+ }
+
+ return true;
+}
Property changes on: chrome\test\ui\javascript_test_util.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/ui/javascript_test_util.h ('k') | chrome/test/ui/sunspider_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698