You've already forked linux-packaging-mono
Imported Upstream version 5.8.0.22
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
This commit is contained in:
parent
5f4a27cc8a
commit
7d05485754
146
external/corefx/src/System.Drawing.Common/tests/Helpers.cs
vendored
Normal file
146
external/corefx/src/System.Drawing.Common/tests/Helpers.cs
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using Xunit;
|
||||
using Xunit.Sdk;
|
||||
|
||||
namespace System.Drawing.Tests
|
||||
{
|
||||
public static class Helpers
|
||||
{
|
||||
public static string GetTestBitmapPath(string fileName) => GetTestPath("bitmaps", fileName);
|
||||
public static string GetTestFontPath(string fileName) => GetTestPath("fonts", fileName);
|
||||
|
||||
private static string GetTestPath(string directoryName, string fileName) => Path.Combine(AppContext.BaseDirectory, directoryName, fileName);
|
||||
|
||||
public static void VerifyBitmap(Bitmap bitmap, Color[][] colors)
|
||||
{
|
||||
for (int y = 0; y < colors.Length; y++)
|
||||
{
|
||||
for (int x = 0; x < colors[y].Length; x++)
|
||||
{
|
||||
Color expectedColor = Color.FromArgb(colors[y][x].ToArgb());
|
||||
Color actualColor = bitmap.GetPixel(x, y);
|
||||
|
||||
if (expectedColor != actualColor)
|
||||
{
|
||||
throw GetBitmapEqualFailureException(bitmap, colors, x, y);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static Exception GetBitmapEqualFailureException(Bitmap bitmap, Color[][] colors, int firstFailureX, int firstFailureY)
|
||||
{
|
||||
// Print out the whole bitmap to provide a view of the whole image, rather than just the difference between
|
||||
// a single pixel.
|
||||
var actualStringBuilder = new StringBuilder();
|
||||
var expectedStringBuilder = new StringBuilder();
|
||||
|
||||
actualStringBuilder.AppendLine();
|
||||
expectedStringBuilder.AppendLine();
|
||||
|
||||
for (int y = 0; y < bitmap.Height; y++)
|
||||
{
|
||||
for (int x = 0; x < bitmap.Width; x++)
|
||||
{
|
||||
PrintColor(actualStringBuilder, bitmap.GetPixel(x, y));
|
||||
PrintColor(expectedStringBuilder, colors[y][x]);
|
||||
if (x != bitmap.Width - 1)
|
||||
{
|
||||
actualStringBuilder.Append(", ");
|
||||
expectedStringBuilder.Append(", ");
|
||||
}
|
||||
}
|
||||
actualStringBuilder.AppendLine();
|
||||
expectedStringBuilder.AppendLine();
|
||||
}
|
||||
|
||||
return new AssertActualExpectedException(expectedStringBuilder.ToString(), actualStringBuilder.ToString(), $"Bitmaps were different at {firstFailureX}, {firstFailureY}.");
|
||||
}
|
||||
|
||||
private static void PrintColor(StringBuilder stringBuilder, Color color)
|
||||
{
|
||||
stringBuilder.Append($"Color.FromArgb({color.A}, {color.R}, {color.G}, {color.B})");
|
||||
}
|
||||
|
||||
public static Color EmptyColor => Color.FromArgb(0, 0, 0, 0);
|
||||
|
||||
private static Rectangle GetRectangle(RECT rect)
|
||||
{
|
||||
return new Rectangle(rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top);
|
||||
}
|
||||
|
||||
private const int MONITOR_DEFAULTTOPRIMARY = 1;
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
private static extern IntPtr MonitorFromWindow(IntPtr hWnd, int dwFlags);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
private static extern int GetMonitorInfo(IntPtr hMonitor, ref MONITORINFO monitorInfo);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern IntPtr GetForegroundWindow();
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern IntPtr GetDC(IntPtr hWnd);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern IntPtr GetWindowDC(IntPtr hWnd);
|
||||
|
||||
public static Rectangle GetWindowDCRect(IntPtr hdc) => GetHWndRect(WindowFromDC(hdc));
|
||||
|
||||
public static Rectangle GetHWndRect(IntPtr hWnd)
|
||||
{
|
||||
if (hWnd == IntPtr.Zero)
|
||||
{
|
||||
return GetMonitorRectForWindow(hWnd);
|
||||
}
|
||||
|
||||
var rect = new RECT();
|
||||
GetClientRect(hWnd, ref rect);
|
||||
|
||||
return GetRectangle(rect);
|
||||
}
|
||||
|
||||
private static Rectangle GetMonitorRectForWindow(IntPtr hWnd)
|
||||
{
|
||||
IntPtr hMonitor = MonitorFromWindow(hWnd, MONITOR_DEFAULTTOPRIMARY);
|
||||
Assert.NotEqual(IntPtr.Zero, hMonitor);
|
||||
|
||||
var info = new MONITORINFO();
|
||||
info.cbSize = Marshal.SizeOf(info);
|
||||
int result = GetMonitorInfo(hMonitor, ref info);
|
||||
Assert.NotEqual(0, result);
|
||||
|
||||
return GetRectangle(info.rcMonitor);
|
||||
}
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
private static extern int GetClientRect(IntPtr hWnd, ref RECT lpRect);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
private static extern IntPtr WindowFromDC(IntPtr hdc);
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
private struct MONITORINFO
|
||||
{
|
||||
public int cbSize;
|
||||
public RECT rcMonitor;
|
||||
public RECT rcWork;
|
||||
public int dwFlags;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
private struct RECT
|
||||
{
|
||||
public int Left;
|
||||
public int Top;
|
||||
public int Right;
|
||||
public int Bottom;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user