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

Unified Diff: mojo/public/dart/third_party/shelf/test/message_change_test.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/public/dart/third_party/shelf/test/message_change_test.dart
diff --git a/mojo/public/dart/third_party/shelf/test/message_change_test.dart b/mojo/public/dart/third_party/shelf/test/message_change_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ed41de252d0359b7bb82d8837f51a0c56868d244
--- /dev/null
+++ b/mojo/public/dart/third_party/shelf/test/message_change_test.dart
@@ -0,0 +1,99 @@
+// 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.
+
+library shelf.message_change_test;
+
+import 'dart:async';
+import 'dart:convert';
+
+import 'package:test/test.dart';
+
+import 'package:shelf/shelf.dart';
+import 'package:shelf/src/message.dart';
+
+import 'test_util.dart';
+
+void main() {
+ group('Request', () {
+ _testChange(({body, headers, context}) {
+ return new Request('GET', LOCALHOST_URI, body: body,
+ headers: headers, context: context);
+ });
+ });
+
+ group('Response', () {
+ _testChange(({body, headers, context}) {
+ return new Response.ok(body, headers: headers, context: context);
+ });
+ });
+}
+
+/// Shared test method used by [Request] and [Response] tests to validate
+/// the behavior of `change` with different `headers` and `context` values.
+void _testChange(Message factory(
+ {body, Map<String, String> headers, Map<String, Object> context})) {
+ group('body', () {
+ test('with String', () async {
+ var request = factory(body: 'Hello, world');
+ var copy = request.change(body: 'Goodbye, world');
+
+ var newBody = await copy.readAsString();
+
+ expect(newBody, equals('Goodbye, world'));
+ });
+
+ test('with Stream', () async {
+ var request = factory(body: 'Hello, world');
+ var copy = request.change(
+ body: new Stream.fromIterable(['Goodbye, world'])
+ .transform(UTF8.encoder));
+
+ var newBody = await copy.readAsString();
+
+ expect(newBody, equals('Goodbye, world'));
+ });
+ });
+
+ test('with empty headers returns indentical instance', () {
+ var request = factory(headers: {'header1': 'header value 1'});
+ var copy = request.change(headers: {});
+
+ expect(copy.headers, same(request.headers));
+ });
+
+ test('with empty context returns identical instance', () {
+ var request = factory(context: {'context1': 'context value 1'});
+ var copy = request.change(context: {});
+
+ expect(copy.context, same(request.context));
+ });
+
+ test('new header values are added', () {
+ var request = factory(headers: {'test': 'test value'});
+ var copy = request.change(headers: {'test2': 'test2 value'});
+
+ expect(copy.headers, {'test': 'test value', 'test2': 'test2 value'});
+ });
+
+ test('existing header values are overwritten', () {
+ var request = factory(headers: {'test': 'test value'});
+ var copy = request.change(headers: {'test': 'new test value'});
+
+ expect(copy.headers, {'test': 'new test value'});
+ });
+
+ test('new context values are added', () {
+ var request = factory(context: {'test': 'test value'});
+ var copy = request.change(context: {'test2': 'test2 value'});
+
+ expect(copy.context, {'test': 'test value', 'test2': 'test2 value'});
+ });
+
+ test('existing context values are overwritten', () {
+ var request = factory(context: {'test': 'test value'});
+ var copy = request.change(context: {'test': 'new test value'});
+
+ expect(copy.context, {'test': 'new test value'});
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698