blob: 51dd282165a237c221f14129f0f47bbe946da31a [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 Uri replace({
/// String scheme,
/// String userInfo,
/// String host,
/// int port,
/// String path,
/// Iterable<String> pathSegments,
/// String query,
/// Map<String, dynamic> queryParameters,
/// String fragment
/// })
/// Returns a new Uri based on this one, but with some parts replaced.
///
/// This method takes the same parameters as the new Uri constructor, and they
/// have the same meaning.
/// ...
/// Each part that is not provided will default to the corresponding value from
/// this Uri instead.
/// ...
/// @description Check that this method returns a new Uri based on this one, but
/// with some parts replaced. Test host
/// @author sgrekhov@unipro.ru
import "../../../Utils/expect.dart";
main() {
var url1 = Uri.parse("http://user:pass@host/path/?q#fr");
var url2 = Uri.parse("http://user:pass@replaced/path/?q#fr");
Expect.equals(url2, url1.replace(host: "replaced"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://user:pass@replaced/path/?q#fr");
Expect.equals(url2, url1.replace(host: "REPLACED"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://user:pass@/path/?q#fr");
Expect.equals(url2, url1.replace(host: ""));
}