//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Tests
{
using System.Collections.Concurrent;
using System.IO;
using ImageSharp.Formats;
///
/// A test image file.
///
public class TestFile
{
///
/// The test file cache.
///
private static readonly ConcurrentDictionary Cache = new ConcurrentDictionary();
///
/// The formats directory.
///
private static readonly string FormatsDirectory = GetFormatsDirectory();
///
/// The image.
///
private readonly Image image;
///
/// The file.
///
private readonly string file;
///
/// Initializes static members of the class.
///
static TestFile()
{
// Register the individual image formats.
// TODO: Is this the best place to do this?
Configuration.Default.AddImageFormat(new PngFormat());
Configuration.Default.AddImageFormat(new JpegFormat());
Configuration.Default.AddImageFormat(new BmpFormat());
Configuration.Default.AddImageFormat(new GifFormat());
}
///
/// Initializes a new instance of the class.
///
/// The file.
private TestFile(string file)
{
this.file = file;
this.Bytes = File.ReadAllBytes(file);
this.image = new Image(this.Bytes);
}
///
/// Gets the bytes.
///
public byte[] Bytes { get; }
///
/// The file name.
///
public string FileName => Path.GetFileName(this.file);
///
/// The file name without extension.
///
public string FileNameWithoutExtension => Path.GetFileNameWithoutExtension(this.file);
///
/// 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);
}
///
/// Gets the correct path to the formats directory.
///
///
/// The .
///
private static string GetFormatsDirectory()
{
// Here for code coverage tests.
string directory = "TestImages/Formats/";
if (Directory.Exists(directory))
{
return directory;
}
return "../../../../TestImages/Formats/";
}
}
}