Skip to content

Commit

Permalink
add concurrent test to check on avi video conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rob93c committed Nov 29, 2024
1 parent 0756d74 commit 68c4ccb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ void convertGifVideo() throws Exception {
}

@Test
void convertMsVideo() throws Exception {
var msVideo = loadResource("msvideo.avi");
var result = MediaHelper.convert(msVideo);
void convertAviVideo() throws Exception {
var aviVideo = loadResource("valid.avi");
var result = MediaHelper.convert(aviVideo);

assertVideoConsistency(result, 512, 512, 30F, 2_970L);
}
Expand Down Expand Up @@ -327,6 +327,14 @@ void concurrentWebmVideoConversions() {
executeConcurrentConversionsOf(webmVideo);
}

@Test
@DisplayName("avi videos")
void concurrentAviVideoConversions() {
var aviVideo = loadResource("valid.avi");

executeConcurrentConversionsOf(aviVideo);
}

@Test
@DisplayName("gif videos")
void concurrentGifVideoConversions() {
Expand Down
File renamed without changes.

0 comments on commit 68c4ccb

Please sign in to comment.