My in app purchase project working perfectly now, but I need to test purchasing and when once purchase is successfully done it cannot be undone? How can I test in app purchasing and upgrading my app to full version when it can be done just one time?

link|improve this question
feedback

4 Answers

  1. Delete the app from your device
  2. Run "Clean" from the Product menu in XCode
  3. On your device, go to "Settings", "Store", "Apple ID", and Sign Out
  4. Start your app again, since you're not signed in to any account, the previous in-app purchase will not be recognized and you'll be able to buy it/download it again with the same test user account
link|improve this answer
feedback

If you delete your app and reinstall it, you can repurchase products. It follows the same code flow and nearly exactly the same user experience (there is a dialog letting you know that you can repurchase for free the second time). Also you can create more test users in iTunes Connect to be sure that you are doing completely clean testing.

I've spent several weeks deleting and reinstalling my app many times per day to ensure that my storekit implementation works just like I want it too.

link|improve this answer
feedback

All you have to do is delete your app from the device. This will wipe out any NSUserDefaults where you may have stored in-app purchase details.

Once you run your app again, make the purchase one more time, and Store Kit will tell you this:

"You've already purchased this. Tap OK to download it again for free"

Once you tap OK, you go through the same sequence of events you did when you made your first in-app purchase, so you can test again and again.

link|improve this answer
Thanks for this – Rocotilos Mar 20 at 12:26
feedback

Use unit tests on your app, with false data, until you're satisfied.

(create test code - for each module you use)

I think I'll need more description of your process to have a better answer.

link|improve this answer
I mean, if there's some possibility to reset purchases of test user. How else I can test for example interruption of application in the middle of purchasing process? Have more test users accounts? – Branislav Beno Nov 2 '09 at 12:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.