blob: da90b3ae1dc569021348d9e9aac1073a4fcd5dcf [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 userInfo
/// @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://replaced:replaced@host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: "replaced:replaced"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://User:Pass@host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: "User:Pass"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://user@host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: "user"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://:pass@host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: ":pass"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://:@host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: ":"));
url1 = Uri.parse("scheme://user:pass@host/path/?q#fr");
url2 = Uri.parse("scheme://host/path/?q#fr");
Expect.equals(url2, url1.replace(userInfo: ""));
}