Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to test my application with real users because I need some test users who have some information uploaded to their profile such as wall posts, friends, etc. I know that I can create test users but the problem is that they are like new users. There is no information in their profiles. I am wondering if you guys have some ideas that I can use.

Thanks


Thanks guys, it seems the only solution is to create a few real profiles. But I think it would be a good idea if Facebook provides some real test profiles for developers.

share|improve this question
Pretend you're a game company and call it a beta. – Carth Nov 9 '11 at 5:20
2  
You can add information to their accounts – BK. Nov 9 '11 at 5:30
1  
Just an FYI - it is against the facebook terms and conditions to create real profiles for fake people, so you really should use the test user feature that they provide. facebook.com/terms.php - see point 4 on registration – Abby Nov 11 '11 at 13:26
Thanks Abby, I did not know that. – Seyed Hossein Ahmadinejad Nov 12 '11 at 8:15

closed as not constructive by BK., Jeremy Banks, Tim Post Nov 11 '11 at 13:24

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

If the real Platform test users won't wok for you for some reason, add real users as testers of the app in the app settings.

You can add some of your real friends a Testers of the app in app settings, they'll be able to access the app even if it's still in sandbox mode.

Creating fake accounts is a terrible idea that could result in your app and your real account being shut off too

share|improve this answer

Create something like a unit test. Write a script that will generate N test users and programmatically add a bunch of hardcoded data to their profiles (enriching them with content). This is similar to populating a database with dummy data before running "real-world" tests, and will allow you to deploy a set of test users simply by running a single script. I would also suggest writing a corresponding "tear-down" script to clear out your test user ranks before running another test.

share|improve this answer

Get some of your friends to test it and buy them a free lunch to say thanks.

share|improve this answer

You can add information to test users' walls etc. Or as mentioned in other answers, give the tester role to people you know who can test it for you.

share|improve this answer
I do not want to collect any user data on my server (the app is a client-side app and is written in js). So I do not have access to user data to see whether the output of the app is correct based on its input which is user data. So I am wondering if there are some real test user profiles that I can use them to test the app. Since I could access the data in these test profiles, I can verify the output of the app. – Seyed Hossein Ahmadinejad Nov 9 '11 at 16:56
  • Super Techy Solution: Write bots that can fill out the information of your users for you by a realistic approximation of people interacting with your app.

  • Actual Solution: Phased releases. Release to a subset of users. People in Virginia, or twitter followers, or whatever subset you can get. Then increase the subset from there.

  • Like @Andrew Kozak I still say write a unit test as the best option. You can try to capture some real user data and then randomize the names, SSNs, or other identifiers and preform tests on that subset.

share|improve this answer

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