This is an autopilot tool for games made with Unity. It consists of the following two elements.
- A dispatcher that launches the corresponding Agent according to the Scene loaded in the game
- An Agent that realizes auto-execution closed to the Scene
Agents are small, isolated C# scripts that perform specific operations, such as playback of UI operations or monkey tests. In addition to those provided built-in, game title-specific ones can be implemented and used.
Click 日本語 for the Japanese page if you need.
You can choose from two typical installation methods.
- Open the Package Manager tab in Player Settings window (Editor > Player Settings)
- Click + button under the Scoped Registries and enter the following settings (figure 1.):
- Name:
package.openupm.com
- URL:
https://package.openupm.com
- Scope(s):
com.dena
,com.cysharp
, andcom.nowsprinting
- Name:
- Open the Package Manager window (Window > Package Manager) and select My Registries in registries drop-down list (figure 2.)
- Click Install button on the
com.dena.anjin
package
Figure 1. Package Manager tab in Player Settings window.
Figure 2. Select registries drop-down list in Package Manager window.
Note
Do not forget to addcom.cysharp
andcom.nowsprinting
into scopes. These are used within Anjin.
Note
Required install Unity Test Framework package v1.3 or later for running tests (when adding to thetestables
in package.json).
If you installed openupm-cli, run the command below:
openupm add com.dena.anjin
UNITY_EDITOR || DENA_AUTOPILOT_ENABLE
is set in the Define Constraints of the Assembly Definition File, So excluded from the release build in principle.
The following files are automatically generated when you start Anjin. There is no need to track it, so we recommend adding it to your project's .gitignore file.
/Assets/AutopilotState.asset*
After installing the UPM package in the game title project, configure and implement the following.
- Generate and configure the AutopilotSettings.asset file
- Generate and configure the .asset file for the Agent to be used
- Implement a custom Agent if necessary
- Implement initialization process as needed
Note
SetUNITY_EDITOR || DENA_AUTOPILOT_ENABLE
in the Define Constraints of the Assembly Definition File to which they belong to exclude them from release builds.
Right-click in the Unity Editor's Project window to open the context menu, then select Create > Anjin > Autopilot Settings to create the file. The file name is arbitrary, and multiple files can be created and used within a project.
There are three main settings.
Set up a mapping of Agent configuration files (.asset) to be automatically executed for each Scene.
Set the combination of Scene
and Agent
.
The order does not affect the operation.
If a Scene does not exist in the list, the Agent set in Fallback Agent
will be used.
For example, if you want UGUIMonkeyAgent
to work for all Scenes, set Scene Agent Maps
to empty, and set
Set the Fallback Agent
to an UGUIMonkeyAgent
's .asset file.
Set the Agents to always be launched in parallel, independent of Scene Agent Maps
and Fallback Agent
.
As of v1.0.0, EmergencyExitAgent
is assumed to be used.
If you need to launch multiple Agents in parallel, use ParallelCompositeAgent
.
Note that the Agents set here will be destroyed and created each time a new Scene is loaded.
It is NOT set to DontDestroyOnLoad
.
This item can also be overridden from the command line (see below).
- Lifespan
- Specifies the execution time limit in seconds. Defaults to 300 seconds, 0 specifies unlimited operation
- Random Seed
- Specify when you want to fix the seed given to the pseudo-random number generator (optional). This is a setting related to the pseudo-random number generator used by the autopilot. To fix the seed of the pseudo-random number generator in the game itself, it is necessary to implement this setting on the game title side.
- Time Scale
- Time.timeScale. Default is 1.0
- JUnit Report Path
- Specifies the JUnit format report file output path (optional). If there are zero errors and zero failures, the autopilot run is considered to have completed successfully.
- Slack Token
- Web API token used for Slack notifications (if omitted, no notifications will be sent)
- Slack Channels
- Channels to send Slack notifications (not notified if omitted. Multiple channels can be specified by separating them with commas)
Set the mentions to be given to Slack notifications.
- Mention Sub Team IDs
- Comma Separated Team IDs to Mention in Slack Notification Message
- Add Here In Slack Message
- Add @here to Slack notification message. Default is off
Set up a filter to catch abnormal log messages and notify Slack.
- handle Exception
- Notify Slack when exception detected in log
- handle Error
- Notify Slack when error detected in log
- handle Assert
- Notify Slack when assert detected in log
- handle Warning
- Notify Slack when warning detected in log
- Ignore Messages
- Log messages containing this string will not be notified to Slack
Whether you use the built-in Agent or implement custom Agent, you must create an instance (.asset file) of it in the Unity editor.
Instances are created by right-clicking in the Project window of the Unity editor to open the context menu, then selecting Create > Anjin > Agent name.
Select the generated file, Agent-specific settings are displayed in the inspector and can be customized. You can prepare multiple Agents with different settings for the same Agent and use them in different Scenes.
Autopilot can be executed in two ways.
Open the AutopilotSettings file you wish to run in the inspector and click the Run button to enter play mode with Autopilot enabled. After the set run time has elapsed, or as in normal play mode, clicking the Play button will stop the program.
To execute from the commandline, specify the following arguments.
$(UNITY) \
-projectPath $(PROJECT_HOME) \
-executeMethod DeNA.Anjin.Editor.Commandline.Bootstrap \
-AUTOPILOT_SETTINGS Assets/Path/To/AutopilotSettings.asset
UNITY
is the path to the Unity editor, andPROJECT_HOME
is the root of the project to be autorun.-AUTOPILOT_SETTINGS
is the path to the settings file (AutopilotSettings) you want to run.- Do not specify
-quit
(it will exit without entering play mode). -batchmode
will not work with the PlaybackAgent and MonkeyAgent in games that use uGUI.
In addition, some settings can be overridden by adding the following arguments. For details on each argument, see the entry of the same name in the "Generate and configure the AutopilotSettings.asset file" mentioned above.
- LIFESPAN_SEC
- Specifies the execution time limit in seconds
- RANDOM_SEED
- Specifies when you want to fix the seed given to the pseudo-random number generator
- TIME_SCALE
- Specifies the Time.timeScale. Default is 1.0
- JUNIT_REPORT_PATH
- Specifies the JUnit-style report file output path
- SLACK_TOKEN
- Web API token used for Slack notifications
- SLACK_CHANNELS
- Channels to send Slack notifications
In both cases, the key should be prefixed with -
and specified as -LIFESPAN_SEC 60
.
The following Agents are provided. These can be used as they are, or project-specific Agents can be implemented and used.
This is an Agent that randomly manipulates uGUI components. This agent implementation uses open source test-helper.monkey package.
An instance of this Agent (.asset file) can contain the following.
- Lifespan Sec
- Duration of random operation execution time in secounds. If 0 is specified, the operation is almost unlimited (TimeSpan.MaxValue). With this setting, neither Autopilot nor the app itself will exit when the Agent exits. It will not do anything until the next Scene switch
- Delay Millis
- Wait interval [milliseconds] between random operations
If you have a GameObject
that you want to avoid manipulation by the UGUIMonkeyAgent
,
attach the IgnoreAnnotation
component in the TestHelper.Monkey.Annotations
assembly.
See Anjin Annotations below for more information.
This is an Agent that playback uGUI operations with the Recorded Playback feature of the Automated QA package.
Note
The Automated QA package is in the preview stage. Please note that destructive changes may occur, and the package itself may be discontinued or withdrawn.
The following can be set in an instance (.asset file) of this Agent.
- Recorded Json
- Specify the recording file (.json) to play
Use the Recorded Playback window for recording operations with Automated QA. The window is opened via the Unity editor menu Automated QA > Automated QA Hub > Recorded Playback. The recording file (.json) is saved under the Assets/Recordings/ folder and can be freely moved or renamed.
Note that the Recorded Playback function in Automated QA can record operations across Scene transitions, but in Anjin, when the Scene is switched, the Agent is also forcibly switched, so playback is also interrupted. Therefore, please be careful to record in units of Scenes.
A screenshot of the operation by Automated QA is stored under Application.persistentDataPath/Anjin
.
The Application.persistentDataPath
for each platform can be found in the Unity manual at
Application.persistentDataPath.
An Agent that does nothing.
The following settings can be configured for this Agent instance (.asset file).
- Lifespan Sec
- Specifies the do nothing time in seconds. 0 means unlimited time to do nothing. If 0 is specified, an unlimited amount of time for no action is taken. It will not do anything until the next Scene is switched.
An Agent that executes multiple Agents in parallel.
The instance of this Agent (.asset file) can have the following settings.
- Agents
- Agents
- A list of Agents to be executed in parallel, which can be nested by specifying a CompositeAgent
An Agent that executes multiple Agents in series.
The instance of this Agent (.asset file) can have the following settings.
- Agents
- A list of Agents to be executed in series, which can be nested by specifying a CompositeAgent
An Agent that can register one child Agent and execute it only once throughout the Autopilot execution period. The second time executions will be skipped.
For example, in a game where the title scene leads to a different path only for the first time or where the user receives a login bonus only for the first time on the home scene, it is possible to construct a scenario in which the title screen is executed as is even if a communication error or the like causes a return to the title scene.
The Agent instance (.asset file) can contain the following settings.
- Agent
- Agent
- Agent that can be executed only once, which can be nested by specifying a CompositeAgent
An Agent that executes one child Agent indefinitely and repeatedly.
Combined with SerialCompositeAgent, it can be used to repeat a scenario many times or to repeat only the last Agent in a scenario. Note that finite iterations are not supported (to use SerialCompositeAgent).
This Agent instance (.asset file) can contain the following.
- Agent
- Agent to be executed repeatedly, which can be nested by specifying a CompositeAgent
An Agent that monitors the appearance of the EmergencyExit
component in the DeNA.Anjin.Annotations
assembly and clicks on it as soon as it appears.
This can be used in games that contain behavior that is irregular in the execution of the test scenario, for example, communication errors or "return to title screen" buttons that are triggered by a daybreak.
It should always be started at the same time as other Agents (that actually perform game operations).
This can be accomplished with ParallelCompositeAgent
, but it is easier to set it up as an ObserverAgent
in AutopilotSettings.
Game title specific Agents and initialization code must be avoided in the release build.
Create a unique assembly and turn off "Auto Referenced", and set the "Define Constraints" to UNITY_EDITOR || DENA_AUTOPILOT_ENABLE
.
This asmdef and its storage folder can be created by opening the context menu anywhere in the Project window and selecting Create > Anjin > Title Own Assembly Folder.
A custom Agent is created by inheriting from Anjin.Agents.AbstractAgent
.
Simply implement the process to be executed by the Agent in the method UniTask Run(CancellationToken)
.
The following fields defined in AbstractAgent
are available. Each instance is set before calling the Run
method.
Logger
: implementation ofUnityEngine.ILogger
. Use this for log output. Currently, it is a console output, but there are plans to replace it with a file logger.Random
: Implementation ofAnjin.Utilities.IRandom
. Which is created from a seed specified in a configuration file or a startup argument.
Note that it is convenient to set the [CreateAssetMenu]
attribute to create an instance from the context menu.
If your title requires its own initialization process, add the InitializeOnLaunchAutopilot
attribute to the static method that does the initialization.
An added method is called from the autopilot launch process.
Note that the autopilot launch process is performed with RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.AfterSceneLoad)
(default for RuntimeInitializeOnLoadMethod
).
Also, RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)
implements the initialization process for Configurable Enter Play Mode.
Annotations are defined to control Anjin operations.
Use the DeNA.Anjin.Annotations
assembly by adding it to the Assembly Definition References.
Please note that this will be included in the release build due to the way it works.
The GameObject
to which this component is attached avoids manipulation by the UGUIMonkeyAgent
.
When a Button
to which this component is attached appears, the EmergencyExitAgent
will immediately attempt to click on it.
It is intended to be attached to buttons that are irregular in the execution of the test scenario, such as the "return to title screen" button due to a communication error or a daybreak.
The AutopilotState.asset
that persists in Anjin's execution state may be in an incorrect state.
Open it in the inspector and click the Reset button.
If this does not solve the problem, try deleting AutopilotState.asset
.
MIT License
Open an issue or create a pull request.
Be grateful if you could label the pull request as enhancement
, bug
, chore
, and documentation
. See PR Labeler settings for automatically labeling from the branch name.
Add this repository as a submodule to the Packages/ directory in your project.
Run the command below:
git submodule add https://github.com/dena/Anjin.git Packages/com.dena.anjin
Note
Required install Unity Test Framework package v1.3 or later for running tests.
Run Actions > Create release pull request > Run workflow and merge created pull request. (Or bump version in package.json on default branch)
Then, Will do the release process automatically by Release workflow. And after tagged, OpenUPM retrieves the tag and updates it.
Do NOT manually operation the following operations:
- Create release tag
- Publish draft releases