blob: 5122485ef015e26aa2ff300b4c74a5060bf16441 [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 resolveUri(Uri reference)
* Resolve reference as an URI relative to this.
*
* Returns the resolved URI.
*
* The algorithm "Transform Reference" for resolving a reference is described in
* RFC-3986 Section 5.
*
* Updated to handle the case where the base URI is just a relative path - that
* is: when it has no scheme or authority and the path does not start with a
* slash. In that case, the paths are combined without removing leading "..",
* and an empty path is not converted to "/".
* @description Checks that this method works correctly if schema, authority
* and path are not provided
* (see https://tools.ietf.org/html/rfc3986#section-5.2.2)
* @author sgrekhov@unipro.ru
*/
import "../../../Utils/expect.dart";
main() {
var x = Uri.parse('http://login:pass@host:8080/a/b?x=1#frag');
Expect.equals(Uri.parse('http://login:pass@host:8080/a/b?x=1'),
x.resolveUri(new Uri()));
Expect.equals(Uri.parse('http://login:pass@host:8080/a/b?x=1#f'),
x.resolveUri(new Uri(fragment: 'f')));
Expect.equals(Uri.parse('http://login:pass@host:8080/a/b?q=0#f'),
x.resolveUri(new Uri(query: 'q=0', fragment: 'f')));
}