mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
4.9 KiB
108 lines
4.9 KiB
// <copyright file="TestImageExtensions.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageSharp.Tests
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
using ImageSharp.PixelFormats;
|
|
using ImageSharp.Tests.TestUtilities.ReferenceCodecs;
|
|
|
|
public static class TestImageExtensions
|
|
{
|
|
/// <summary>
|
|
/// Saves the image only when not running in the CI server.
|
|
/// </summary>
|
|
/// <typeparam name="TPixel">The pixel format</typeparam>
|
|
/// <param name="image">The image</param>
|
|
/// <param name="provider">The image provider</param>
|
|
/// <param name="testOutputDetails">Details to be concatenated to the test output file, describing the parameters of the test.</param>
|
|
/// <param name="extension">The extension</param>
|
|
/// /// <param name="grayscale">A boolean indicating whether we should save a smaller in size.</param>
|
|
public static Image<TPixel> DebugSave<TPixel>(
|
|
this Image<TPixel> image,
|
|
ITestImageProvider provider,
|
|
object testOutputDetails = null,
|
|
string extension = "png",
|
|
bool grayscale = false)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
if (TestEnvironment.RunsOnCI)
|
|
{
|
|
return image;
|
|
}
|
|
|
|
// We are running locally then we want to save it out
|
|
provider.Utility.SaveTestOutputFile(
|
|
image,
|
|
extension,
|
|
testOutputDetails: testOutputDetails,
|
|
grayscale: grayscale);
|
|
return image;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Compares the image against the expected Reference output, throws an exception if the images are not similar enough.
|
|
/// The output file should be named identically to the output produced by <see cref="DebugSave{TPixel}(Image{TPixel}, ITestImageProvider, object, string, bool)"/>.
|
|
/// </summary>
|
|
/// <typeparam name="TPixel">The pixel format</typeparam>
|
|
/// <param name="image">The image</param>
|
|
/// <param name="provider">The image provider</param>
|
|
/// <param name="testOutputDetails">Details to be concatenated to the test output file, describing the parameters of the test.</param>
|
|
/// <param name="extension">The extension</param>
|
|
/// <param name="grayscale">A boolean indicating whether we should debug save + compare against a grayscale image, smaller in size.</param>
|
|
/// <param name="imageTheshold">
|
|
/// The threshold for the percentage difference where the images are asumed to be the same.
|
|
/// The default/undefined value is <see cref="ImageComparer.DefaultImageThreshold"/>
|
|
/// </param>
|
|
/// <param name="segmentThreshold">
|
|
/// The threshold of the individual segments before it acumulates towards the overall difference.
|
|
/// The default undefined value is <see cref="ImageComparer.DefaultSegmentThreshold"/>
|
|
/// </param>
|
|
/// <param name="scalingFactor">
|
|
/// This is a sampling factor we sample a grid of average pixels <paramref name="scalingFactor"/> width by <paramref name="scalingFactor"/> high
|
|
/// The default undefined value is <see cref="ImageComparer.DefaultScalingFactor"/>
|
|
/// </param>
|
|
/// <returns></returns>
|
|
public static Image<TPixel> CompareToReferenceOutput<TPixel>(
|
|
this Image<TPixel> image,
|
|
ITestImageProvider provider,
|
|
object testOutputDetails = null,
|
|
string extension = "png",
|
|
bool grayscale = false,
|
|
float imageTheshold = ImageComparer.DefaultImageThreshold,
|
|
byte segmentThreshold = ImageComparer.DefaultSegmentThreshold,
|
|
int scalingFactor = ImageComparer.DefaultScalingFactor)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
string referenceOutputFile = provider.Utility.GetReferenceOutputFileName(extension, testOutputDetails);
|
|
|
|
if (!TestEnvironment.RunsOnCI)
|
|
{
|
|
provider.Utility.SaveTestOutputFile(
|
|
image,
|
|
extension,
|
|
testOutputDetails: testOutputDetails,
|
|
grayscale: grayscale);
|
|
}
|
|
|
|
if (!File.Exists(referenceOutputFile))
|
|
{
|
|
throw new Exception("Reference output file missing: " + referenceOutputFile);
|
|
}
|
|
|
|
using (Image<Rgba32> referenceImage = Image.Load<Rgba32>(referenceOutputFile, ReferenceDecoder.Instance))
|
|
{
|
|
ImageComparer.VerifySimilarity(referenceImage, image, imageTheshold, segmentThreshold, scalingFactor);
|
|
}
|
|
|
|
return image;
|
|
}
|
|
}
|
|
}
|
|
|