-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Routing] apply deprecation triggers and fix tests #13361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
16 changes: 16 additions & 0 deletions
16
src/Symfony/Component/Routing/Tests/Fixtures/legacy_validpattern.xml
This file contains hidden or 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,16 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
|
||
<routes xmlns="http://symfony.com/schema/routing" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> | ||
|
||
<route id="blog_show_legacy" pattern="/blog/{slug}" host="{locale}.example.com"> | ||
<default key="_controller">MyBundle:Blog:show</default> | ||
<default key="slug" xsi:nil="true" /> | ||
<requirement key="_method">GET|POST|put|OpTiOnS</requirement> | ||
<requirement key="_scheme">hTTps</requirement> | ||
<requirement key="locale">\w+</requirement> | ||
<option key="compiler_class">RouteCompiler</option> | ||
<condition>context.getMethod() == "GET"</condition> | ||
</route> | ||
</routes> |
8 changes: 8 additions & 0 deletions
8
src/Symfony/Component/Routing/Tests/Fixtures/legacy_validpattern.yml
This file contains hidden or 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,8 @@ | ||
blog_show_legacy: | ||
pattern: /blog/{slug} | ||
defaults: { _controller: "MyBundle:Blog:show" } | ||
host: "{locale}.example.com" | ||
requirements: { '_method': 'GET|POST|put|OpTiOnS', _scheme: https, 'locale': '\w+' } | ||
condition: 'context.getMethod() == "GET"' | ||
options: | ||
compiler_class: RouteCompiler |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -118,33 +118,24 @@ public function testDumpForRouteWithDefaults() | |
public function testDumpWithSchemeRequirement() | ||
{ | ||
$this->routeCollection->add('Test1', new Route('/testing', array(), array(), array(), '', array('ftp', 'https'))); | ||
$this->routeCollection->add('Test2', new Route('/testing_bc', array(), array('_scheme' => 'https'))); // BC | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All of these tests are useless because we already tested that logic inside the |
||
file_put_contents($this->testTmpFilepath, $this->generatorDumper->dump(array('class' => 'SchemeUrlGenerator'))); | ||
include $this->testTmpFilepath; | ||
|
||
$projectUrlGenerator = new \SchemeUrlGenerator(new RequestContext('/app.php')); | ||
|
||
$absoluteUrl = $projectUrlGenerator->generate('Test1', array(), true); | ||
$absoluteUrlBC = $projectUrlGenerator->generate('Test2', array(), true); | ||
$relativeUrl = $projectUrlGenerator->generate('Test1', array(), false); | ||
$relativeUrlBC = $projectUrlGenerator->generate('Test2', array(), false); | ||
|
||
$this->assertEquals($absoluteUrl, 'ftp://localhost/app.php/testing'); | ||
$this->assertEquals($absoluteUrlBC, 'https://localhost/app.php/testing_bc'); | ||
$this->assertEquals($relativeUrl, 'ftp://localhost/app.php/testing'); | ||
$this->assertEquals($relativeUrlBC, 'https://localhost/app.php/testing_bc'); | ||
|
||
$projectUrlGenerator = new \SchemeUrlGenerator(new RequestContext('/app.php', 'GET', 'localhost', 'https')); | ||
|
||
$absoluteUrl = $projectUrlGenerator->generate('Test1', array(), true); | ||
$absoluteUrlBC = $projectUrlGenerator->generate('Test2', array(), true); | ||
$relativeUrl = $projectUrlGenerator->generate('Test1', array(), false); | ||
$relativeUrlBC = $projectUrlGenerator->generate('Test2', array(), false); | ||
|
||
$this->assertEquals($absoluteUrl, 'https://localhost/app.php/testing'); | ||
$this->assertEquals($absoluteUrlBC, 'https://localhost/app.php/testing_bc'); | ||
$this->assertEquals($relativeUrl, '/app.php/testing'); | ||
$this->assertEquals($relativeUrlBC, '/app.php/testing_bc'); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be better to prefix the test method's name with
testLegacy
instead of removing it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, the test doesnt provide any value as I explained above