blob: 05a88e7df96319f85d5e253fd5d18df1bff95bfe [file] [log] [blame]
// 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.
/// @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
/// valueSeparator argument
/// @author sgrekhov@unipro.ru
/// @issue 31080
import "dart:io";
import "../../../Utils/expect.dart";
main() {
String toParse = "value1, param1=val1, param2=val2";
HeaderValue parsed = HeaderValue.parse(toParse, valueSeparator: ",");
Expect.equals("value1", parsed.value);
Expect.mapEquals({}, parsed.parameters);
toParse = "value1,param1=val1,param2=val2";
parsed = HeaderValue.parse(toParse);
Expect.equals("value1,param1=val1,param2=val2", parsed.value);
Expect.mapEquals({}, parsed.parameters);
toParse = "value1; param1=val1; param2=val2";
parsed = HeaderValue.parse(toParse, valueSeparator: ";");
Expect.equals("value1", parsed.value);
Expect.mapEquals({}, parsed.parameters);
}