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

Unified Diff: runtime/vm/report_test.cc

Issue 340203003: Cleanup of error and warning reporting. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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 | « runtime/vm/report.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/report_test.cc
===================================================================
--- runtime/vm/report_test.cc (revision 0)
+++ runtime/vm/report_test.cc (revision 0)
@@ -0,0 +1,70 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#include "platform/assert.h"
+#include "vm/report.h"
+#include "vm/unit_test.h"
+
+namespace dart {
+
+TEST_CASE(TraceJSWarning) {
+ Isolate* isolate = Isolate::Current();
+ TraceBuffer::Init(isolate, 3);
+ TraceBuffer* trace_buffer = isolate->trace_buffer();
+ const String& url = String::Handle(isolate, String::New("Plug"));
+ const String& source = String::Handle(isolate, String::New("240 100"));
+ const Script& script = Script::Handle(isolate,
+ Script::New(url, source, RawScript::kScriptTag));
+ script.Tokenize(String::Handle(String::New("")));
+ {
+ const intptr_t token_pos = 0;
+ const char* message = "High Voltage";
+ Report::MessageF(Report::kJSWarning, script, token_pos, "%s", message);
+ {
+ JSONStream js;
+ trace_buffer->PrintToJSONStream(&js);
+ EXPECT_SUBSTRING("{\"type\":\"TraceBuffer\",\"members\":["
+ "{\"type\":\"TraceBufferEntry\",\"time\":",
+ js.ToCString());
+ // Skip time.
+ EXPECT_SUBSTRING("\"message\":{\"type\":\"JSCompatibilityWarning\","
+ "\"script\":{\"type\":\"@Script\",\"id\":"
+ "\"scripts\\/Plug\",\"name\":\"Plug\",\"user_name\":"
+ "\"Plug\",\"kind\":\"script\"},\"tokenPos\":0,"
+ "\"message\":{\"type\":\"@String\"",
+ js.ToCString());
+ // Skip private _OneByteString.
+ EXPECT_SUBSTRING("\"valueAsString\":\"\\\"High Voltage\\\"\"}}",
+ js.ToCString());
+ }
+ }
+ {
+ const intptr_t token_pos = 1;
+ const char* message = "Low Voltage";
+ Report::MessageF(Report::kJSWarning, script, token_pos, "%s", message);
+ }
+ EXPECT_EQ(2, trace_buffer->Length());
+ EXPECT_SUBSTRING("{\"type\":\"JSCompatibilityWarning\",\"script\":{\"type\":"
+ "\"@Script\",\"id\":\"scripts\\/Plug\",\"name\":\"Plug\","
+ "\"user_name\":\"Plug\",\"kind\":\"script\"},\"tokenPos\":0,"
+ "\"message\":{\"type\":\"@String\"",
+ trace_buffer->At(0)->message);
+ // Skip private _OneByteString.
+ EXPECT_SUBSTRING("\"valueAsString\":\"\\\"High Voltage\\\"\"}}",
+ trace_buffer->At(0)->message);
+
+ EXPECT_SUBSTRING("{\"type\":\"JSCompatibilityWarning\",\"script\":{\"type\":"
+ "\"@Script\",\"id\":\"scripts\\/Plug\",\"name\":\"Plug\","
+ "\"user_name\":\"Plug\",\"kind\":\"script\"},\"tokenPos\":1,"
+ "\"message\":{\"type\":\"@String\"",
+ trace_buffer->At(1)->message);
+ // Skip private _OneByteString.
+ EXPECT_SUBSTRING("\"valueAsString\":\"\\\"Low Voltage\\\"\"}}",
+ trace_buffer->At(1)->message);
+
+ delete trace_buffer;
+}
+
+} // namespace dart
+
« no previous file with comments | « runtime/vm/report.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698