-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13520 from jasonmit/location-none-fail-tests
[Bugfix] fixes bugs around baseURL and rootURL in HistoryLocation and introduces rootURL to NoneLocation
- Loading branch information
Showing
5 changed files
with
146 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
packages/ember-routing/tests/location/none_location_test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import { set } from 'ember-metal/property_set'; | ||
import run from 'ember-metal/run_loop'; | ||
import NoneLocation from 'ember-routing/location/none_location'; | ||
|
||
var NoneTestLocation, location; | ||
|
||
function createLocation(options) { | ||
if (!options) { options = {}; } | ||
location = NoneTestLocation.create(options); | ||
} | ||
|
||
QUnit.module('Ember.NoneLocation', { | ||
setup() { | ||
NoneTestLocation = NoneLocation.extend({}); | ||
}, | ||
|
||
teardown() { | ||
run(function() { | ||
if (location) { location.destroy(); } | ||
}); | ||
} | ||
}); | ||
|
||
QUnit.test('NoneLocation.formatURL() returns the current url always appending rootURL', function() { | ||
expect(1); | ||
|
||
NoneTestLocation.reopen({ | ||
init() { | ||
this._super(...arguments); | ||
set(this, 'rootURL', '/en/'); | ||
} | ||
}); | ||
|
||
createLocation(); | ||
|
||
equal(location.formatURL('/foo/bar'), '/en/foo/bar'); | ||
}); | ||
|
||
QUnit.test('NoneLocation.getURL() returns the current path minus rootURL', function() { | ||
expect(1); | ||
|
||
NoneTestLocation.reopen({ | ||
init() { | ||
this._super(...arguments); | ||
set(this, 'rootURL', '/foo/'); | ||
set(this, 'path', '/foo/bar'); | ||
} | ||
}); | ||
|
||
createLocation(); | ||
|
||
equal(location.getURL(), '/bar'); | ||
}); | ||
|
||
QUnit.test('NonoLocation.getURL() will remove the rootURL only from the beginning of a url', function() { | ||
expect(1); | ||
|
||
NoneTestLocation.reopen({ | ||
init() { | ||
this._super(...arguments); | ||
set(this, 'rootURL', '/bar/'); | ||
set(this, 'path', '/foo/bar/baz'); | ||
} | ||
}); | ||
|
||
createLocation(); | ||
|
||
equal(location.getURL(), '/foo/bar/baz'); | ||
}); |