-
Notifications
You must be signed in to change notification settings - Fork 49
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
Card: Remove try/catch from Vault Flow #303
Merged
+276
−141
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
4fc8259
Convert UpdateSetupTokenResult into a sealed class Success/Failure re…
sshropshire ea11810
Migrate CardClient vault flow away from throws.
sshropshire 7be23ca
Rename GraphQLResponse to GraphQLResult.
sshropshire 29144fd
Migrate GraphQL client to result type.
sshropshire 044a16d
Write test to cover JSON parsing error.
sshropshire d7b7655
Fix test.
sshropshire f75cca0
Migrate resource loader away from throw.
sshropshire 1d656e2
Fix DataVaultPaymentMethodTokensAPIUnitTest.
sshropshire 4dd9526
Clean up detekt errors.
sshropshire 07006e7
Refactor DataVaultPaymentMethodTokensAPI to isolate JSON parsing code.
sshropshire 2d41636
Add test cases for error scenarios with UpdateSetupTokenAPI.
sshropshire ba94513
Fix lint error.
sshropshire 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 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
17 changes: 12 additions & 5 deletions
17
CardPayments/src/main/java/com/paypal/android/cardpayments/UpdateSetupTokenResult.kt
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 |
---|---|---|
@@ -1,7 +1,14 @@ | ||
package com.paypal.android.cardpayments | ||
|
||
internal data class UpdateSetupTokenResult( | ||
val setupTokenId: String, | ||
val status: String, | ||
val approveHref: String? | ||
) | ||
import com.paypal.android.corepayments.PayPalSDKError | ||
|
||
internal sealed class UpdateSetupTokenResult { | ||
|
||
data class Success( | ||
val setupTokenId: String, | ||
val status: String, | ||
val approveHref: String? | ||
) : UpdateSetupTokenResult() | ||
|
||
data class Failure(val error: PayPalSDKError) : UpdateSetupTokenResult() | ||
} |
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
6 changes: 6 additions & 0 deletions
6
CorePayments/src/main/java/com/paypal/android/corepayments/LoadRawResourceResult.kt
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,6 @@ | ||
package com.paypal.android.corepayments | ||
|
||
sealed class LoadRawResourceResult { | ||
data class Success(val value: String) : LoadRawResourceResult() | ||
data class Failure(val error: PayPalSDKError) : LoadRawResourceResult() | ||
} |
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
15 changes: 0 additions & 15 deletions
15
CorePayments/src/main/java/com/paypal/android/corepayments/graphql/GraphQLResponse.kt
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
CorePayments/src/main/java/com/paypal/android/corepayments/graphql/GraphQLResult.kt
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,21 @@ | ||
package com.paypal.android.corepayments.graphql | ||
|
||
import androidx.annotation.RestrictTo | ||
import com.paypal.android.corepayments.PayPalSDKError | ||
import org.json.JSONObject | ||
|
||
/** | ||
* @suppress | ||
*/ | ||
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) | ||
sealed class GraphQLResult { | ||
|
||
data class Success( | ||
val data: JSONObject? = null, | ||
val extensions: List<GraphQLExtension>? = null, | ||
val errors: List<GraphQLError>? = null, | ||
val correlationId: String? = null | ||
) : GraphQLResult() | ||
|
||
data class Failure(val error: PayPalSDKError) : GraphQLResult() | ||
} |
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
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.
Could it throw other exceptions?
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.
That's a good question. I took a thorough tour of the docs and here are all the methods called:
throws Resources.NotFoundException
throws IOException
throws IOException, NullPointerException
throws IOException
According to the docs
InputStream#read()
will only throw ifresAsBytes
isnull
, and through Kotlin we have guarantees that it is non-null. All the other possible exceptions we've caught.