blob: 9bc2ddd13130352e0d8e3fd80d522aff0f017379 [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: ""));
}