3 changed files with 77 additions and 110 deletions
@ -1,92 +0,0 @@ |
|||
# Testing |
|||
|
|||
When you're testing a pull request (PR) and encounter unexpected behavior, it's important to determine whether the issue was introduced by the PR or if it already exists in the base code. To do this, compare the behavior against the based master branch. |
|||
|
|||
Even before an issue occurs, it is best practice to keep the same settings and delete the shader cache. Using an already made shader cache can make the PR look like it is having a regression in some rare cases. |
|||
|
|||
Try not to test PRs which are for documentation or extremely trivial changes (like a PR that changes the app icon), unless you really want to; generally avoid any PRs marked `[docs]`. |
|||
|
|||
If a PR specifies it is for a given platform (i.e `linux`) then just test on Linux. If it says `NCE` then test on Android and Linux ARM64 (Raspberry Pi and such). macOS fixes may also affect Asahi, test that if you can too. |
|||
|
|||
You may also build artifacts yourself, be aware that the resulting builds are NOT the same as those from CI, because of package versioning and build environment differences. One famous example is FFmpeg randomly breaking on many Arch distros due to packaging differences. |
|||
|
|||
## Quickstart |
|||
|
|||
Think of the source code as a "tree", with the "trunk" of that tree being our `master` branch, any other branches are PRs or separate development branches, only our stable releases pull from `master` - all other branches are considered unstable and aren't recommended to pull from unless you're testing multiple branches at once. |
|||
|
|||
Here's some terminology you may want to familiarize yourself with: |
|||
|
|||
- PR: Pull request, a change in the codebase; from which the author of said change (the programmer) requests a pull of that branch into master (make it so the new code makes it into a release basically). |
|||
- Bisect: Bilinear method of searching regressions, some regressions may be sporadic and can't be bisected, but the overwhelming majority are. |
|||
- WIP: Work-in-progress. |
|||
- Regression: A new bug/glitch caused by new code, i.e "Zelda broke in android after commit xyz". |
|||
- Master: The "root" branch, this is where all merged code goes to, traditionally called `main`, `trunk` or just `master`, it contains all the code that eventually make it to stable releases. |
|||
- `HEAD`: Latest commit in a given branch, `HEAD` of `master` is the latest commit on branch `master`. |
|||
- `origin`: The default "remote", basically the URL from where git is located at, for most of the time that location is https://git.eden-emu.dev/. |
|||
|
|||
## Testing checklist |
|||
|
|||
For regressions/bugs from PRs or commits: |
|||
|
|||
- [ ] Occurs in master? |
|||
- If it occurs on master: |
|||
- [ ] Occurs on previous stable release? (before this particular PR). |
|||
- If it occurs on previous stable release: |
|||
- [ ] Occurs on previous-previous stable release? |
|||
- And so on and so forth... some bugs come from way before Eden was even conceived. |
|||
- Otherwise, try bisecting between the previous stable release AND the latest `HEAD` of master |
|||
- [ ] Occurs in given commit? |
|||
- [ ] Occurs in PR? |
|||
- If it occurs on PR: |
|||
- [ ] Bisected PR? (if it has commits) |
|||
- [ ] Found bisected commit? |
|||
|
|||
If an issue sporadically appears, try to do multiple runs, try if possible, to count the number of times it has failed and the number of times it has "worked just fine"; say it worked 3 times but failed 1. then there is a 1/4th chance every run that the issue is replicated - so every bisect step would require 4 runs to ensure there is atleast a chance of triggering the bug. |
|||
|
|||
## What to do when something seems off |
|||
|
|||
If you notice something odd during testing: |
|||
|
|||
- Reproduce the issue using the based master branch. |
|||
- Observe whether the same behavior occurs. |
|||
|
|||
From there onwards there can be two possible outcomes: |
|||
|
|||
- If the issue exists in the based master: This means the problem was already present before the PR. The PR most likely did not introduce the regression. |
|||
- If the issue does not exist in the based master: This suggests the PR most likely introduced the regression and needs further investigation. |
|||
|
|||
## Reporting Your Findings |
|||
|
|||
When you report your results: |
|||
|
|||
- Clearly state whether the behavior was observed in the based master. |
|||
- Indicate whether the result is good (expected behavior) or bad (unexpected or broken behavior). Without mentioning if your post/report/log is good or bad it may confuse the developer of the PR. |
|||
|
|||
For example: |
|||
|
|||
1. "Tested on based master - issue not present. Bad result for PR, likely regression introduced." |
|||
2. "Tested on based master - issue already present. Good result for PR, not a regression." |
|||
|
|||
This approach helps maintain clarity and accountability in the testing process and ensures regressions are caught and addressed efficiently. |
|||
|
|||
If the behavior seems normal for a certain game/feature then it may not be always required to check against the based master. |
|||
|
|||
## Bisecting |
|||
|
|||
One happy reminder, when testing, *know how to bisect!* |
|||
|
|||
Say you're trying to find an issue between 1st of Jan and 8th of Jan, you can search by dividing "in half" the time between each commit: |
|||
- Check for 4th of Jan |
|||
- If 4th of Jan is "working" then the issue must be in the future |
|||
- So then check 6th of Jan |
|||
- If 6th of Jan isn't working then the issue must be in the past |
|||
- So then check 5th of Jan |
|||
- If 5th of Jan worked, then the issue starts at 6th of Jan |
|||
|
|||
The faulty commit then, is 6th of Jan. This is called bisection https://git-scm.com/docs/git-bisect |
|||
|
|||
## Notes |
|||
|
|||
- PR's marked with **WIP** do NOT need to be tested unless explicitly asked (check the git in case) |
|||
- Sometimes license checks may fail, hover over the build icon to see if builds did succeed, as the CI will push builds even if license checks fail. |
|||
- All open PRs can be viewed [here](https://git.eden-emu.dev/eden-emu/eden/pulls/), if site is down use one of the [mirrors](./user/ThirdParty.md#mirrors). |
|||
@ -1,39 +1,99 @@ |
|||
# User Handbook - Testing |
|||
# Testing |
|||
|
|||
While this is mainly aimed for testers - normal users can benefit from these guidelines to make their life easier when trying to outline and/or report an issue. |
|||
When you're testing a pull request (PR) and encounter unexpected behavior, it's important to determine whether the issue was introduced by the PR or if it already exists in the base code. To do this, compare the behavior against the based master branch. |
|||
|
|||
## Getting logs |
|||
Even before an issue occurs, it is best practice to keep the same settings and delete the shader cache. Using an already made shader cache can make the PR look like it is having a regression in some rare cases. |
|||
|
|||
In order to get more information, you can find logs in the following location: |
|||
Try not to test PRs which are for documentation or extremely trivial changes (like a PR that changes the app icon), unless you really want to; generally avoid any PRs marked `[docs]`. |
|||
|
|||
If a PR specifies it is for a given platform (i.e `linux`) then just test on Linux. If it says `NCE` then test on Android and Linux ARM64 (Raspberry Pi and such). macOS fixes may also affect Asahi, test that if you can too. |
|||
|
|||
## How to Test a PR Against the Based Master When Issues Arise |
|||
You may also build artifacts yourself, be aware that the resulting builds are NOT the same as those from CI, because of package versioning and build environment differences. One famous example is FFmpeg randomly breaking on many Arch distros due to packaging differences. |
|||
|
|||
When you're testing a pull request (PR) and encounter unexpected behavior, it's important to determine whether the issue was introduced by the PR or if it already exists in the base code. To do this, compare the behavior against the based master branch. |
|||
## Quickstart |
|||
|
|||
Even before an issue occurs, it is best practice to keep the same settings and delete the shader cache. Using an already made shader cache can make the PR look like it is having a regression in some rare cases. |
|||
Think of the source code as a "tree", with the "trunk" of that tree being our `master` branch, any other branches are PRs or separate development branches, only our stable releases pull from `master` - all other branches are considered unstable and aren't recommended to pull from unless you're testing multiple branches at once. |
|||
|
|||
Here's some terminology you may want to familiarize yourself with: |
|||
|
|||
- PR: Pull request, a change in the codebase; from which the author of said change (the programmer) requests a pull of that branch into master (make it so the new code makes it into a release basically). |
|||
- Bisect: Bilinear method of searching regressions, some regressions may be sporadic and can't be bisected, but the overwhelming majority are. |
|||
- WIP: Work-in-progress. |
|||
- Regression: A new bug/glitch caused by new code, i.e "Zelda broke in android after commit xyz". |
|||
- Master: The "root" branch, this is where all merged code goes to, traditionally called `main`, `trunk` or just `master`, it contains all the code that eventually make it to stable releases. |
|||
- `HEAD`: Latest commit in a given branch, `HEAD` of `master` is the latest commit on branch `master`. |
|||
- `origin`: The default "remote", basically the URL from where git is located at, for most of the time that location is https://git.eden-emu.dev/eden-emu/eden. |
|||
|
|||
## Testing checklist |
|||
|
|||
For regressions/bugs from PRs or commits: |
|||
|
|||
- [ ] Occurs in master? |
|||
- If it occurs on master: |
|||
- [ ] Occurs on previous stable release? (before this particular PR). |
|||
- If it occurs on previous stable release: |
|||
- [ ] Occurs on previous-previous stable release? |
|||
- And so on and so forth... some bugs come from way before Eden was even conceived. |
|||
- Otherwise, try bisecting between the previous stable release AND the latest `HEAD` of master |
|||
- [ ] Occurs in given commit? |
|||
- [ ] Occurs in PR? |
|||
- If it occurs on PR: |
|||
- [ ] Bisected PR? (if it has commits) |
|||
- [ ] Found bisected commit? |
|||
|
|||
If an issue sporadically appears, try to do multiple runs, try if possible, to count the number of times it has failed and the number of times it has "worked just fine"; say it worked 3 times but failed 1. then there is a 1/4th chance every run that the issue is replicated - so every bisect step would require 4 runs to ensure there is atleast a chance of triggering the bug. |
|||
|
|||
## What to do when something seems off |
|||
|
|||
### What to Do When Something Seems Off |
|||
If you notice something odd during testing: |
|||
|
|||
- Reproduce the issue using the based master branch. |
|||
- Observe whether the same behavior occurs. |
|||
|
|||
### Two Possible Outcomes |
|||
From there onwards there can be two possible outcomes: |
|||
|
|||
- If the issue exists in the based master: This means the problem was already present before the PR. The PR most likely did not introduce the regression. |
|||
- If the issue does not exist in the based master: This suggests the PR most likely introduced the regression and needs further investigation. |
|||
|
|||
### Report your findings |
|||
## Reporting Your Findings |
|||
|
|||
When you report your results: |
|||
|
|||
- Clearly state whether the behavior was observed in the based master. |
|||
- Indicate whether the result is good (expected behavior) or bad (unexpected or broken behavior). Without mentioning if your post/report/log is good or bad it may confuse the Developer of the PR. |
|||
- Example: |
|||
``` |
|||
1. "Tested on based master — issue not present. Bad result for PR, likely regression introduced." |
|||
2. "Tested on based master — issue already present. Good result for PR, not a regression." |
|||
``` |
|||
- Indicate whether the result is good (expected behavior) or bad (unexpected or broken behavior). Without mentioning if your post/report/log is good or bad it may confuse the developer of the PR. |
|||
|
|||
For example: |
|||
|
|||
1. "Bad result for PR: Tested on based master - issue not present. Likely regression introduced." |
|||
2. "Good result for PR: Tested on based master - issue already present. Not a regression." |
|||
|
|||
This approach helps maintain clarity and accountability in the testing process and ensures regressions are caught and addressed efficiently. |
|||
|
|||
If the behavior seems normal for a certain game/feature then it may not be always required to check against the based master. |
|||
|
|||
This approach helps maintain clarity and accountability in the testing process and ensures regressions are caught and addressed efficiently. If the behavior seems normal for a certain game/feature then it may not be always required to check against the based master. |
|||
|
|||
If a master build for the PR' based master does not exist. It will be helpful to just test past and future builds nearby. That would help with gathering more information about the problem. |
|||
|
|||
**Always include [debugging info](../Debug.md) as needed**. |
|||
**Always include [debugging info](../Debug.md) as needed**. |
|||
|
|||
## Bisecting |
|||
|
|||
One happy reminder, when testing, *know how to bisect!* |
|||
|
|||
Say you're trying to find an issue between 1st of Jan and 8th of Jan, you can search by dividing "in half" the time between each commit: |
|||
- Check for 4th of Jan |
|||
- If 4th of Jan is "working" then the issue must be in the future |
|||
- So then check 6th of Jan |
|||
- If 6th of Jan isn't working then the issue must be in the past |
|||
- So then check 5th of Jan |
|||
- If 5th of Jan worked, then the issue starts at 6th of Jan |
|||
|
|||
The faulty commit then, is 6th of Jan. This is called bisection https://git-scm.com/docs/git-bisect |
|||
|
|||
## Notes |
|||
|
|||
- PR's marked with **WIP** do NOT need to be tested unless explicitly asked (check the git in case) |
|||
- Sometimes license checks may fail, hover over the build icon to see if builds did succeed, as the CI will push builds even if license checks fail. |
|||
- All open PRs can be viewed [here](https://git.eden-emu.dev/eden-emu/eden/pulls/). |
|||
- If site is down use one of the [mirrors](./user/ThirdParty.md#mirrors). |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue