-
Notifications
You must be signed in to change notification settings - Fork 414
[PHP-wasm] allow requests to follow redirects #2206
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
Closed
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
333bc70
[Playground CLI] Enable JavaScript to run the CLI by calling a runCLI…
bgrgicak 49f1660
[PHP-wasm] allow requests to follow redirects
bgrgicak cb1a113
Fix login test
bgrgicak a806578
Remove unused PHPRequest import from enable-multisite and login tests
bgrgicak 43b5244
Use redirect options similar to JS fetch
bgrgicak 64969cc
Update enable-multisite.spec.ts to include redirect option in request…
bgrgicak b6a58ec
Reject promise instead of throwing
bgrgicak 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import { PHP, PHPRequest } from '@php-wasm/universal'; | ||
| import { PHP } from '@php-wasm/universal'; | ||
| import { RecommendedPHPVersion } from '@wp-playground/common'; | ||
| import { | ||
| getSqliteDatabaseModule, | ||
|
|
@@ -26,29 +26,21 @@ describe('Blueprint step login', () => { | |
| php = await handler.getPrimaryPhp(); | ||
| }); | ||
|
|
||
| const requestFollowRedirects = async (request: PHPRequest) => { | ||
| let response = await handler.request(request); | ||
| while (response.httpStatusCode === 302) { | ||
| response = await handler.request({ | ||
| url: response.headers['location'][0], | ||
| }); | ||
| } | ||
| return response; | ||
| }; | ||
|
|
||
| it('should log the user in', async () => { | ||
| await login(php, {}); | ||
| const response = await requestFollowRedirects({ | ||
| const response = await handler.request({ | ||
| url: '/', | ||
| redirect: 'follow', | ||
| }); | ||
| expect(response.httpStatusCode).toBe(200); | ||
| expect(response.text).toContain('Edit site'); | ||
| expect(response.text).toContain('Edit Site'); | ||
|
Collaborator
Author
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. This label changed in a recent version of WP, and the test stopped working. |
||
| }); | ||
|
|
||
| it('should log the user into wp-admin', async () => { | ||
| await login(php, {}); | ||
| const response = await requestFollowRedirects({ | ||
| const response = await handler.request({ | ||
| url: '/wp-admin/', | ||
| redirect: 'follow', | ||
| }); | ||
| expect(response.httpStatusCode).toBe(200); | ||
| expect(response.text).toContain('Dashboard'); | ||
|
|
@@ -60,8 +52,9 @@ describe('Blueprint step login', () => { | |
| PLAYGROUND_FORCE_AUTO_LOGIN_ENABLED: true, | ||
| }, | ||
| }); | ||
| const response = await requestFollowRedirects({ | ||
| const response = await handler.request({ | ||
| url: '/?playground_force_auto_login_as_user=admin', | ||
| redirect: 'follow', | ||
| }); | ||
| expect(response.httpStatusCode).toBe(200); | ||
| expect(response.text).toContain('Dashboard'); | ||
|
|
@@ -81,8 +74,9 @@ describe('Blueprint step login', () => { | |
| } | ||
| ` | ||
| ); | ||
| const response = await requestFollowRedirects({ | ||
| const response = await handler.request({ | ||
| url: '/nonce-test.php', | ||
| redirect: 'follow', | ||
| }); | ||
| expect(response.text).toBe('1'); | ||
| }); | ||
|
|
||
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
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.
Should
manualstay the default behavior or should wefollowby default like JS fetch and browsers do?