-
-
Notifications
You must be signed in to change notification settings - Fork 102
Use Ktor for Nextcloud Login Flow #1817
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
rfc2822
merged 12 commits into
main-ose
from
1812-ktor-use-ktor-for-nextcloud-login-flow
Dec 8, 2025
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
aa9e7f0
[WIP] Use Ktor for Nextcloud login flow
rfc2822 bb7b932
Use Ktor for Nextcloud login flow
rfc2822 49e6bf0
Add tests
rfc2822 2b7964e
Allow unit tests that mock/use HttpClient without Conscrypt
rfc2822 12199c8
KDoc
rfc2822 8580fca
Minor fixes
rfc2822 775f022
Merge branch 'main-ose' into 1812-ktor-use-ktor-for-nextcloud-login-flow
rfc2822 dd2bfbc
Use toUrlOrNull from dav4jvm
rfc2822 7b6b3f5
Merge branch 'main-ose' into 1812-ktor-use-ktor-for-nextcloud-login-flow
rfc2822 72e30ff
Don't change strings in this PR
rfc2822 50c69ea
Merge branch 'main-ose' into 1812-ktor-use-ktor-for-nextcloud-login-flow
rfc2822 868dd42
Update dav4jvm and synctools
rfc2822 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
40 changes: 40 additions & 0 deletions
40
app/src/test/kotlin/at/bitfire/davdroid/network/NextcloudLoginFlowTest.kt
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,40 @@ | ||
| /* | ||
| * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details. | ||
| */ | ||
|
|
||
| package at.bitfire.davdroid.network | ||
|
|
||
| import io.ktor.http.Url | ||
| import io.mockk.mockk | ||
| import org.junit.Assert.assertEquals | ||
| import org.junit.Test | ||
|
|
||
| class NextcloudLoginFlowTest { | ||
|
|
||
| private val flow = NextcloudLoginFlow(mockk(relaxed = true)) | ||
|
|
||
| @Test | ||
| fun `loginFlowUrl accepts v2 URL`() { | ||
| assertEquals( | ||
| Url("http://example.com/index.php/login/v2"), | ||
| flow.loginFlowUrl(Url("http://example.com/index.php/login/v2")) | ||
| ) | ||
| } | ||
|
|
||
| @Test | ||
| fun `loginFlowUrl rewrites root URL to v2 URL`() { | ||
| assertEquals( | ||
| Url("http://example.com/index.php/login/v2"), | ||
| flow.loginFlowUrl(Url("http://example.com/")) | ||
| ) | ||
| } | ||
|
|
||
| @Test | ||
| fun `loginFlowUrl rewrites v1 URL to v2 URL`() { | ||
| assertEquals( | ||
| Url("http://example.com/index.php/login/v2"), | ||
| flow.loginFlowUrl(Url("http://example.com/index.php/login/flow")) | ||
| ) | ||
| } | ||
|
|
||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.