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

Unified Diff: extensions/renderer/api_invocation_errors_unittest.cc

Issue 2837023003: [Extensions Bindings] Add argument parsing errors (Closed)
Patch Set: rebase Created 3 years, 8 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
Index: extensions/renderer/api_invocation_errors_unittest.cc
diff --git a/extensions/renderer/api_invocation_errors_unittest.cc b/extensions/renderer/api_invocation_errors_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b03e95b389097344b786ec715bf99d6c589b6178
--- /dev/null
+++ b/extensions/renderer/api_invocation_errors_unittest.cc
@@ -0,0 +1,31 @@
+// Copyright 2017 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 "extensions/renderer/api_invocation_errors.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace extensions {
+namespace api_errors {
+
+// Tests chaining errors for more complicated errors. More of a set of example
+// strings than a test of the logic itself (which is pretty simple).
+TEST(APIInvocationErrors, ChainedErrors) {
+ EXPECT_EQ(
+ "Error at index 0: Invalid type: expected string, found integer.",
+ GetIndexError(0, GetError(kInvalidType, kTypeString, kTypeInteger)));
+ EXPECT_EQ(
+ "Error at property 'foo': Invalid type: expected string, found integer.",
+ GetPropertyError("foo",
+ GetError(kInvalidType, kTypeString, kTypeInteger)));
+ EXPECT_EQ(
+ "Error at property 'foo': Error at index 1: "
+ "Invalid type: expected string, found integer.",
+ GetPropertyError(
+ "foo",
+ GetIndexError(1, GetError(kInvalidType, kTypeString, kTypeInteger))));
+}
+
+} // namespace api_errors
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698