fix(router): make remove trailing slash consistent with URL params
closes #16069
This commit is contained in:

committed by
Victor Berchet

parent
1408357198
commit
c20f60b144
42
packages/common/test/location/location_spec.ts
Normal file
42
packages/common/test/location/location_spec.ts
Normal file
@ -0,0 +1,42 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {Location} from '../../src/location/location';
|
||||
|
||||
export function main() {
|
||||
const baseUrl = '/base';
|
||||
|
||||
describe('Location Class', () => {
|
||||
describe('stripTrailingSlash', () => {
|
||||
it('should strip single character slash', () => {
|
||||
const input = '/';
|
||||
expect(Location.stripTrailingSlash(input)).toBe('');
|
||||
});
|
||||
|
||||
it('should normalize strip a trailing slash', () => {
|
||||
const input = baseUrl + '/';
|
||||
expect(Location.stripTrailingSlash(input)).toBe(baseUrl);
|
||||
});
|
||||
|
||||
it('should ignore query params when stripping a slash', () => {
|
||||
const input = baseUrl + '/?param=1';
|
||||
expect(Location.stripTrailingSlash(input)).toBe(baseUrl + '?param=1');
|
||||
});
|
||||
|
||||
it('should not remove slashes inside query params', () => {
|
||||
const input = baseUrl + '?test/?=3';
|
||||
expect(Location.stripTrailingSlash(input)).toBe(input);
|
||||
});
|
||||
|
||||
it('should not remove slashes after a pound sign', () => {
|
||||
const input = baseUrl + '#test/?=3';
|
||||
expect(Location.stripTrailingSlash(input)).toBe(input);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user