mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
135 lines
4.6 KiB
Dart
135 lines
4.6 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
@TestOn('chrome') // Uses web-only Flutter SDK
|
|
library;
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter_web_plugins/url_strategy.dart';
|
|
|
|
import 'common.dart';
|
|
|
|
void main() {
|
|
group('$PathUrlStrategy', () {
|
|
late TestPlatformLocation location;
|
|
|
|
setUp(() {
|
|
location = TestPlatformLocation();
|
|
location.baseHref = '/';
|
|
});
|
|
|
|
test('allows null state', () {
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
expect(() => strategy.pushState(null, '', '/'), returnsNormally);
|
|
expect(() => strategy.replaceState(null, '', '/'), returnsNormally);
|
|
});
|
|
|
|
test('validates base href', () {
|
|
expect(() => PathUrlStrategy(location), returnsNormally);
|
|
|
|
location.baseHref = '/foo/';
|
|
expect(() => PathUrlStrategy(location), returnsNormally);
|
|
|
|
location.baseHref = '';
|
|
expect(() => PathUrlStrategy(location), throwsException);
|
|
|
|
location.baseHref = 'foo';
|
|
expect(() => PathUrlStrategy(location), throwsException);
|
|
|
|
location.baseHref = '/foo';
|
|
expect(() => PathUrlStrategy(location), throwsException);
|
|
});
|
|
|
|
test('leading slash is always prepended', () {
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
|
|
location.pathname = '';
|
|
expect(strategy.getPath(), '/');
|
|
|
|
location.pathname = 'foo';
|
|
expect(strategy.getPath(), '/foo');
|
|
});
|
|
|
|
test('gets path correctly in the presence of basePath', () {
|
|
location.baseHref = 'https://example.com/foo/';
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
|
|
location.pathname = '/foo/';
|
|
expect(strategy.getPath(), '/');
|
|
|
|
location.pathname = '/foo';
|
|
expect(strategy.getPath(), '/');
|
|
|
|
location.pathname = '/foo/bar';
|
|
expect(strategy.getPath(), '/bar');
|
|
});
|
|
|
|
test(
|
|
'gets path correctly in the presence of query params and omits fragment if no flag specified',
|
|
() {
|
|
location.baseHref = 'https://example.com/foo/';
|
|
location.pathname = '/foo/bar';
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
|
|
location.search = '?q=1';
|
|
expect(strategy.getPath(), '/bar?q=1');
|
|
|
|
location.search = '?q=1&t=r';
|
|
expect(strategy.getPath(), '/bar?q=1&t=r');
|
|
|
|
location.hash = '#fragment=1';
|
|
expect(strategy.getPath(), '/bar?q=1&t=r');
|
|
},
|
|
);
|
|
|
|
test('gets path correctly in the presence of query params and fragment', () {
|
|
location.baseHref = 'https://example.com/foo/';
|
|
location.pathname = '/foo/bar';
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location, true);
|
|
|
|
location.search = '?q=1';
|
|
expect(strategy.getPath(), '/bar?q=1');
|
|
|
|
location.search = '?q=1&t=r';
|
|
expect(strategy.getPath(), '/bar?q=1&t=r');
|
|
|
|
location.hash = '#fragment=1';
|
|
expect(strategy.getPath(), '/bar?q=1&t=r#fragment=1');
|
|
});
|
|
|
|
test('empty route name is ok', () {
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
expect(strategy.prepareExternalUrl(''), '/');
|
|
expect(() => strategy.pushState(null, '', ''), returnsNormally);
|
|
expect(() => strategy.replaceState(null, '', ''), returnsNormally);
|
|
});
|
|
|
|
test('route names must start with /', () {
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
|
|
expect(() => strategy.prepareExternalUrl('foo'), throwsAssertionError);
|
|
expect(() => strategy.prepareExternalUrl('foo/'), throwsAssertionError);
|
|
expect(() => strategy.prepareExternalUrl('foo/bar'), throwsAssertionError);
|
|
|
|
expect(() => strategy.pushState(null, '', 'foo'), throwsAssertionError);
|
|
expect(() => strategy.pushState(null, '', 'foo/'), throwsAssertionError);
|
|
expect(() => strategy.pushState(null, '', 'foo/bar'), throwsAssertionError);
|
|
|
|
expect(() => strategy.replaceState(null, '', 'foo'), throwsAssertionError);
|
|
expect(() => strategy.replaceState(null, '', 'foo/'), throwsAssertionError);
|
|
expect(() => strategy.replaceState(null, '', 'foo/bar'), throwsAssertionError);
|
|
});
|
|
|
|
test('generates external path correctly in the presence of basePath', () {
|
|
location.baseHref = 'https://example.com/foo/';
|
|
final PathUrlStrategy strategy = PathUrlStrategy(location);
|
|
|
|
expect(strategy.prepareExternalUrl(''), '/foo/');
|
|
expect(strategy.prepareExternalUrl('/'), '/foo/');
|
|
expect(strategy.prepareExternalUrl('/bar'), '/foo/bar');
|
|
expect(strategy.prepareExternalUrl('/bar/'), '/foo/bar/');
|
|
});
|
|
});
|
|
}
|