Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unique urls for particular test cases #43

Merged
merged 4 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ All interactive elements are navigable via arrow keys and can be selected throug

Test execution can be controlled through URL parameters, e.g. to run `DASH Shaka` tests 1,2,3 on Shaka Player version 2.5.20 use:

http://MVT_INSTANCE_ADDRESS/?test_type=dash-shaka-test&tests=1-3&engine_shaka=2.5.20
http://MVT_INSTANCE_ADDRESS/?test_type=dash-shaka-test&testnumbers=1-3&engine_shaka=2.5.20

Most of the URL parameters can be combined. Here's a full list of supported queries:

Expand All @@ -144,10 +144,13 @@ Most of the URL parameters can be combined. Here's a full list of supported quer
- hss-dashjs-test
- progressive-html5-test
- `command=run` - test run autostart. Please note it may not work on desktop browser, because they tend to block autoplay before user interaction.
- `tests=ID[,ID]|ID-ID2` - tests subset selection. Expected values:
- Single test id e.g. `tests=1`
- Multiple test ids e.g. `tests=1,5,13`
- Test ids range e.g. `tests=1-10`
- `testnumbers=ID[,ID]|ID-ID2` - tests subset selection. Expected values:
- Single test id e.g. `testnumbers=1`
- Multiple test ids e.g. `testnumbers=1,5,13`
- Test ids range e.g. `testnumbers=1-10`
- `testnames=ID[,ID]` - test names subset selection. Expected values:
- Single test id e.g. `testnames=DASH_FMP4_AVC_AAC__Playback`
- Multiple test ids e.g. `testnames=DASH_FMP4_AVC_AC3__Seek,DASH_FMP4_AVC_AAC__Playback,DASH_DYNAMIC`
- `exclude=ID[,ID]|ID-ID2` - exclude subsets of tests.
- `checkframes=false|true` - enable verification of video frames progress based on `video.getVideoPlaybackQuality().totalVideoFrames`.
- `loop=false|true` - enable testing selected tests continuosly in a loop.
Expand Down
2 changes: 1 addition & 1 deletion media/generate_widevine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function make_widevine {
--signer widevine_test \
--aes_signing_key 1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9 \
--aes_signing_iv d58ce954203b7c9a9a9d467f59839249 \
--segment_duration 12 \
--segment_duration 5 \
$manifest_cmd
fi
}
Expand Down
Loading