Skip to content
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

[IAP] Simulate product entitlements response #9852

Closed
wants to merge 4 commits into from

Conversation

iamgabrielma
Copy link
Contributor

@iamgabrielma iamgabrielma commented Jun 1, 2023

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 both resetToDefaultState() and clearTransactions() 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

  • Restore skipped tests from UnitTests.xctestplan
  • Adds a transactions property which acts as SKTestTransaction transactions holder
  • Adds a simulateUserIsEntitledToProduct(with id: String) helper method which will return true or false depending on the contents of the transactions 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 a simulateError 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:

    override func invokeTest() {
        for _ in 0..<20 {
            super.invokeTest()
        }
    }

@iamgabrielma iamgabrielma added type: task An internally driven task. feature: in-app purchases Related to In-app purchases and subscriptions labels Jun 1, 2023
@iamgabrielma iamgabrielma added this to the 14.0 milestone Jun 1, 2023
@wpmobilebot
Copy link
Collaborator

wpmobilebot commented Jun 1, 2023

You can test the changes from this Pull Request by:
  • Clicking here or scanning the QR code below to access App Center
  • Then installing the build number pr9852-9eb8ba6 on your iPhone

If you need access to App Center, please ask a maintainer to add you.

@iamgabrielma iamgabrielma marked this pull request as ready for review June 1, 2023 07:23
@iamgabrielma iamgabrielma requested a review from joshheald June 1, 2023 08:45
@iamgabrielma iamgabrielma marked this pull request as draft June 5, 2023 13:20
@spencertransier spencertransier modified the milestones: 14.0, 14.1, 14.2 Jun 9, 2023
@spencertransier spencertransier modified the milestones: 14.2, 14.3 Jun 24, 2023
@spencertransier spencertransier modified the milestones: 14.3, 14.4, 14.5 Jul 1, 2023
@spencertransier spencertransier modified the milestones: 14.5, 14.6 Jul 14, 2023
@spencertransier spencertransier modified the milestones: 14.6, 14.7 Jul 21, 2023
@spencertransier spencertransier modified the milestones: 14.7, 14.8 Jul 29, 2023
@iamgabrielma iamgabrielma removed this from the 14.8 milestone Jul 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature: in-app purchases Related to In-app purchases and subscriptions type: task An internally driven task.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Flaky Unit Test test_user_is_entitled_to_product_returns_false_when_not_entitled()
4 participants