-
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simpleComparison and load tests (#220)
Co-authored-by: Roman Beekeeper <[email protected]>
- Loading branch information
1 parent
d22bfe6
commit 97af3fc
Showing
2 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
119 changes: 119 additions & 0 deletions
119
src/test/java/com/github/romankh3/image/comparison/LoadTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
package com.github.romankh3.image.comparison; | ||
|
||
import com.github.romankh3.image.comparison.model.ImageComparisonResult; | ||
import com.github.romankh3.image.comparison.model.ImageComparisonState; | ||
import java.awt.image.BufferedImage; | ||
|
||
import org.junit.jupiter.api.DisplayName; | ||
import org.junit.jupiter.api.Test; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
@DisplayName("Load tests for {@link simpleComparison} method") | ||
public class LoadTest { | ||
@Test | ||
@DisplayName("should result MisMatch for two images") | ||
public void simpleComparisonTest(){ | ||
//load images to be compared: | ||
BufferedImage expectedImage = ImageComparisonUtil.readImageFromResources("expected.png"); | ||
BufferedImage actualImage = ImageComparisonUtil.readImageFromResources("actual.png"); | ||
|
||
//Create ImageComparison object and compare the images. | ||
ImageComparisonResult imageComparisonResult = new ImageComparison(expectedImage, actualImage).simpleComparison(); | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult.getImageComparisonState()); | ||
} | ||
|
||
|
||
@Test | ||
@DisplayName("compare load differences between {@link simpleComparison} method and {@link compareImage} method") | ||
public void loadTest1(){ | ||
//load images to be compared: | ||
BufferedImage expectedImage = ImageComparisonUtil.readImageFromResources("expected.png"); | ||
BufferedImage actualImage = ImageComparisonUtil.readImageFromResources("actual.png"); | ||
|
||
long time1 = System.currentTimeMillis(); | ||
//Create ImageComparison object and compare the images. | ||
ImageComparisonResult imageComparisonResult1 = new ImageComparison(expectedImage, actualImage).compareImages(); | ||
long etime1 = System.currentTimeMillis(); | ||
//Time for compareImage method | ||
long compareImageTime = etime1 - time1; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult1.getImageComparisonState()); | ||
|
||
long time2 = System.currentTimeMillis(); | ||
//Create ImageComparison2 object and compare the images. | ||
ImageComparisonResult imageComparisonResult2 = new ImageComparison(expectedImage, actualImage).simpleComparison(); | ||
long etime2 = System.currentTimeMillis(); | ||
//Time for simpleComparison method | ||
long simpleComparisonTime = etime2 - time2; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult2.getImageComparisonState()); | ||
//check the load differences between simpleComparison and compareImage pattern | ||
assertTrue(simpleComparisonTime < compareImageTime); | ||
} | ||
|
||
@Test | ||
@DisplayName("compare load differences between {@link simpleComparison} method and {@link compareImage} method") | ||
public void loadTest2(){ | ||
//load images to be compared: | ||
BufferedImage expectedImage = ImageComparisonUtil.readImageFromResources("expected#201.png"); | ||
BufferedImage actualImage = ImageComparisonUtil.readImageFromResources("actual#201.png"); | ||
|
||
long time1 = System.currentTimeMillis(); | ||
//Create ImageComparison object and compare the images. | ||
ImageComparisonResult imageComparisonResult1 = new ImageComparison(expectedImage, actualImage).compareImages(); | ||
long etime1 = System.currentTimeMillis(); | ||
//Time for compareImage method | ||
long compareImageTime = etime1 - time1; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult1.getImageComparisonState()); | ||
|
||
long time2 = System.currentTimeMillis(); | ||
//Create ImageComparison2 object and compare the images. | ||
ImageComparisonResult imageComparisonResult2 = new ImageComparison(expectedImage, actualImage).simpleComparison(); | ||
long etime2 = System.currentTimeMillis(); | ||
//Time for simpleComparison method | ||
long simpleComparisonTime = etime2 - time2; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult2.getImageComparisonState()); | ||
//check the load differences between simpleComparison and compareImage pattern | ||
assertTrue(simpleComparisonTime < compareImageTime); | ||
} | ||
|
||
@Test | ||
@DisplayName("compare load differences between {@link simpleComparison} method and {@link compareImage} method") | ||
public void loadTest3(){ | ||
//load images to be compared: | ||
BufferedImage expectedImage = ImageComparisonUtil.readImageFromResources("expected#98.png"); | ||
BufferedImage actualImage = ImageComparisonUtil.readImageFromResources("actual#98.png"); | ||
|
||
long time1 = System.currentTimeMillis(); | ||
//Create ImageComparison object and compare the images. | ||
ImageComparisonResult imageComparisonResult1 = new ImageComparison(expectedImage, actualImage).compareImages(); | ||
long etime1 = System.currentTimeMillis(); | ||
//Time for compareImage method | ||
long compareImageTime = etime1 - time1; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult1.getImageComparisonState()); | ||
|
||
long time2 = System.currentTimeMillis(); | ||
//Create ImageComparison2 object and compare the images. | ||
ImageComparisonResult imageComparisonResult2 = new ImageComparison(expectedImage, actualImage).simpleComparison(); | ||
long etime2 = System.currentTimeMillis(); | ||
//Time for simpleComparison method | ||
long simpleComparisonTime = etime2 - time2; | ||
|
||
//Check the result | ||
assertEquals(ImageComparisonState.MISMATCH, imageComparisonResult2.getImageComparisonState()); | ||
//check the load differences between simpleComparison and compareImage pattern | ||
assertTrue(simpleComparisonTime < compareImageTime); | ||
} | ||
|
||
} |