Testing on Sandbox
The Sandbox allows you to test your game and emulate some of the functionalities Arenas provide.
Setup
- Access the Sanbox.
- On the 'Game URL' field, use the url for the game you want to test. If you're running the game locally you'll probably need to use 'http://localhost:8080/' or similar, depending on the port the game is running on.
- Click on the Render button. The game should start Loading and if all goes well, the game should appear after the bootstrap is complete.
Using a Mock User
Highlight of the Mock User UI on Sandbox
Below are detailed the different functionalities and which GameSDK APIs are affected by them:
- Mock User toggle: Enables or disables the Mock User. When enabled, auth.isUserAuthorized() returns true and auth.getUserProfile() returns a mock user profile object with the following structure:
{
uid: 'mock-uid',
username: 'mock-username',
avatar: {
png: '',
webp: ''
},
isUserSubscriber: boolean // this value depends on the Subscribed User toggle
}
- Gems amount: the amount can be manually changed. Calling wallet.getGems() will return the amount showing here. Calling wallet.consumeGems(n) will decrease the amount of gems by n.
- Subscribed User toggle: Enables or disables the subscription of the mock user. This simulates the Arkadium Advantage Subscription real users can subscribe to on Arkadium.com. When enabled, all Banner and Interstitial APIs will be affected, since the subscription disables Banner and Interstitial Ads for users.
warning
Please make sure to refresh the Sanbox page every time a new game url needs to be tested, otherwise some validations might be skipped when loading the new game url.