// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Tests { using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using ImageSharp.Formats; using ImageSharp.PixelFormats; /// /// A test image file. /// public class TestFile { /// /// The test file cache. /// private static readonly ConcurrentDictionary Cache = new ConcurrentDictionary(); /// /// The formats directory, as lazy value /// // ReSharper disable once InconsistentNaming private static readonly Lazy formatsDirectory = new Lazy(TestEnvironment.GetInputImagesDirectoryFullPath); /// /// The image. /// private readonly Image image; /// /// The file. /// private readonly string file; /// /// Initializes a new instance of the class. /// /// The file. private TestFile(string file) { this.file = file; this.Bytes = File.ReadAllBytes(file); this.image = Image.Load(this.Bytes); } /// /// Gets the bytes. /// public byte[] Bytes { get; } /// /// The file name. /// public string FilePath => this.file; /// /// The file name. /// public string FileName => Path.GetFileName(this.file); /// /// The file name without extension. /// public string FileNameWithoutExtension => Path.GetFileNameWithoutExtension(this.file); /// /// Gets the "Formats" test file directory. /// private static string FormatsDirectory => formatsDirectory.Value; /// /// Gets the full qualified path to the file. /// /// /// The file path. /// /// /// The . /// public static string GetPath(string file) { return Path.Combine(FormatsDirectory, file); } /// /// Creates a new test file or returns one from the cache. /// /// The file path. /// /// The . /// public static TestFile Create(string file) { return Cache.GetOrAdd(file, (string fileName) => new TestFile(GetPath(file))); } /// /// Gets the file name. /// /// The value. /// /// The . /// public string GetFileName(object value) { return $"{this.FileNameWithoutExtension}-{value}{Path.GetExtension(this.file)}"; } /// /// Gets the file name without extension. /// /// The value. /// /// The . /// public string GetFileNameWithoutExtension(object value) { return this.FileNameWithoutExtension + "-" + value; } /// /// Creates a new image. /// /// /// The . /// public Image CreateImage() { return new Image(this.image); } /// /// Creates a new image. /// /// /// The . /// public Image CreateImage(IImageDecoder decoder) { return Image.Load(this.image.Configuration, this.Bytes, decoder); } } }