| // Copyright (c) 2017, 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. |
| |
| // @dart = 2.9 |
| |
| /// @assertion HeaderValue parse( |
| /// String value, { |
| /// String parameterSeparator: ";", |
| /// String valueSeparator: null, |
| /// bool preserveBackslash: false |
| /// }) |
| /// Creates a new header value object from parsing a header value string with |
| /// both value and optional parameters. |
| /// @description Checks that this method parses header value. Test |
| /// preserveBackslash default value |
| /// @author sgrekhov@unipro.ru |
| /// @issue 31081 |
| |
| import "dart:io"; |
| import "../../../Utils/expect.dart"; |
| |
| main() { |
| String toParse = "value1\\value2; param1=val1\\val11; par\\am2=val2"; |
| HeaderValue parsed = HeaderValue.parse(toParse, preserveBackslash: false); |
| Expect.equals("value1\\value2", parsed.value); |
| Expect.mapEquals( |
| {"param1": "val1\\val11", "par\\am2": "val2"}, parsed.parameters); |
| |
| parsed = HeaderValue.parse(toParse, preserveBackslash: true); |
| Expect.equals("value1\\value2", parsed.value); |
| Expect.mapEquals( |
| {"param1": "val1\\val11", "par\\am2": "val2"}, parsed.parameters); |
| } |