mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
// Copyright (c) Brice Lambson
|
|
// The Brice Lambson licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using Xunit;
|
|
using IOPath = System.IO.Path;
|
|
|
|
namespace ImageResizer
|
|
{
|
|
public class TestDirectory : IDisposable
|
|
{
|
|
private readonly string _path;
|
|
|
|
public TestDirectory()
|
|
{
|
|
_path = IOPath.Combine(
|
|
AppDomain.CurrentDomain.BaseDirectory,
|
|
IOPath.GetRandomFileName());
|
|
Directory.CreateDirectory(_path);
|
|
}
|
|
|
|
private IEnumerable<string> Files
|
|
=> Directory.EnumerateFiles(_path);
|
|
|
|
public IEnumerable<string> FileNames
|
|
=> Files.Select(IOPath.GetFileName);
|
|
|
|
public string File()
|
|
=> Assert.Single(Files);
|
|
|
|
public void Dispose()
|
|
{
|
|
var stopwatch = Stopwatch.StartNew();
|
|
while (stopwatch.ElapsedMilliseconds < 30000)
|
|
{
|
|
try
|
|
{
|
|
Directory.Delete(_path, recursive: true);
|
|
break;
|
|
}
|
|
catch
|
|
{
|
|
Thread.Sleep(150);
|
|
}
|
|
}
|
|
}
|
|
|
|
public static implicit operator string(TestDirectory directory)
|
|
=> directory._path;
|
|
}
|
|
} |