[IAP] Simulate product entitlements response #9852
Closed
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.
Closes: #8221 (More context on #8256)
Description
This PR restores the tests for
InAppPurchaseAction.userIsEntitledToProduct
, which were removed due to their flakiness, and attempt to resolve the issue for the time being by simulating the expected entitlements response we're waiting from StoreKit.From testing, the core of the issue seems to be that we cannot fully reset the state of
SKTestSession
between different runs, despite calling bothresetToDefaultState()
andclearTransactions()
on tearDown we can still see shared state between different tests. We can confirm this by removing the call to.clearTransactions()
, which makes all entitlement tests pass or fail based on the order we run them.Changes
UnitTests.xctestplan
transactions
property which acts asSKTestTransaction
transactions holdersimulateUserIsEntitledToProduct(with id: String)
helper method which will return true or false depending on the contents of thetransactions
array. If the user already has transactions, we'll return false, otherwise we'll return true.A further improvement could be to use
VerificationResult<Transaction>
type, so we can test and capture different type of errors as well depending on the case, which is why the method also contains asimulateError
parameter, but I left this outside of the PR for the moment while we validate this approach.Testing instructions
Confirm that Unit Tests pass. To reproduce more easily, you can make each test run multiple times by adding this to the class: