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

Unified Diff: tests/lib/convert/html_escape_test.dart

Issue 23492002: adding HtmlEscape to dart:convert (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: element mode, removed print in test Created 7 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
Index: tests/lib/convert/html_escape_test.dart
diff --git a/tests/lib/convert/html_escape_test.dart b/tests/lib/convert/html_escape_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5f5f20c1a3e2db55990e1b2f86b334bb1516fe28
--- /dev/null
+++ b/tests/lib/convert/html_escape_test.dart
@@ -0,0 +1,60 @@
+// Copyright (c) 2013, 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.
+
+import "package:expect/expect.dart";
+import 'dart:async';
+import 'dart:convert';
+
+const _TEST_INPUT = 'A <test> of \u00A0 "double" & \'single\' values';
+
+const _OUTPUT_UNKNOWN = 'A &lt;test&gt; of &nbsp; &quot;double&quot; &amp; '
+ '&apos;single&apos; values';
+
+const _OUTPUT_ATTRIBUTE = "A <test> of &nbsp; &quot;double&quot; &amp; \'single\' values";
floitsch 2013/08/30 15:52:00 80 chars.
kevmoo-old 2013/09/05 19:14:20 Done.
+
+const _OUTPUT_ELEMENT = 'A &lt;test&gt; of &nbsp; "double" &amp; \'single\' values';
floitsch 2013/08/30 15:52:00 80 chars.
kevmoo-old 2013/09/05 19:14:20 Done.
+
+void main() {
floitsch 2013/08/30 15:52:00 move main to the bottom of the file.
kevmoo-old 2013/09/05 19:14:20 Done.
+ testMode(HTML_ESCAPE, _OUTPUT_UNKNOWN);
+ testMode(const HtmlEscape(), _OUTPUT_UNKNOWN);
+ testMode(const HtmlEscape(HtmlEscapeMode.UNKNOWN), _OUTPUT_UNKNOWN);
+ testMode(const HtmlEscape(HtmlEscapeMode.ATTRIBUTE), _OUTPUT_ATTRIBUTE);
+ testMode(const HtmlEscape(HtmlEscapeMode.ELEMENT), _OUTPUT_ELEMENT);
+}
+
+void testMode(HtmlEscape escape, String expected) {
+ var output = escape.convert(_TEST_INPUT);
+ Expect.equals(expected, output);
+
+ var controller = new StreamController(sync: true);
+
+ var stream = controller.stream
+ .transform(escape);
+
+ var done = false;
+ int count = 0;
+
+ void stringData(value) {
+ Expect.equals(expected, value);
+ count++;
+ }
+
+ void streamClosed() {
+ done = true;
+ }
+
+ stream.listen(
+ stringData,
+ onDone: streamClosed);
+
+
+ for(var i = 0; i < _COUNT; i++) {
+ controller.add(_TEST_INPUT);
+ }
+ controller.close();
+ Expect.isTrue(done);
+ Expect.equals(_COUNT, count);
+}
+
+const _COUNT = 3;

Powered by Google App Engine
This is Rietveld 408576698