diff --git a/src/System.Windows.Forms/src/System/Windows/Forms/Screen.cs b/src/System.Windows.Forms/src/System/Windows/Forms/Screen.cs index af7da168e1c..30706f91a49 100644 --- a/src/System.Windows.Forms/src/System/Windows/Forms/Screen.cs +++ b/src/System.Windows.Forms/src/System/Windows/Forms/Screen.cs @@ -331,7 +331,15 @@ public static Screen FromRectangle(Rectangle rect) /// Retrieves a for the monitor that contains /// the largest region of the window of the control. /// - public static Screen FromControl(Control control) => FromHandle(control.Handle); + public static Screen FromControl(Control control) + { + if (control == null) + { + throw new ArgumentNullException(nameof(control)); + } + + return FromHandle(control.Handle); + } /// /// Retrieves a for the monitor that contains diff --git a/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/ScreenTests.cs b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/ScreenTests.cs new file mode 100644 index 00000000000..503558fa645 --- /dev/null +++ b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/ScreenTests.cs @@ -0,0 +1,221 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System.Collections.Generic; +using System.Drawing; +using Xunit; + +namespace System.Windows.Forms.Tests +{ + public class ScreenTests + { + [Fact] + public void Screen_AllScreens_Get_ReturnsExpected() + { + Screen[] screens = Screen.AllScreens; + Assert.NotEmpty(screens); + Assert.Same(screens, Screen.AllScreens); + + foreach (Screen screen in screens) + { + VerifyScreen(screen); + } + + Assert.Contains(screens, s => s.Primary); + } + + [Fact] + public void Screen_PrimaryScreen_Get_ReturnsExpected() + { + Screen screen = Screen.PrimaryScreen; + Assert.NotNull(screen); + VerifyScreen(screen); + } + + public static IEnumerable Equals_Screen_TestData() + { + var screen = new Screen((IntPtr)1); + yield return new object[] { screen, screen, true }; + yield return new object[] { screen, new Screen((IntPtr)1), true }; + yield return new object[] { screen, new Screen((IntPtr)2), false }; + } + + public static IEnumerable Equals_Object_TestData() + { + var screen = new Screen((IntPtr)1); + yield return new object[] { screen, new object(), false }; + yield return new object[] { screen, null, false }; + } + + [Theory] + [MemberData(nameof(Equals_Screen_TestData))] + [MemberData(nameof(Equals_Object_TestData))] + public void Screen_Equals_Invoke_ReturnsExpected(Screen screen, object obj, bool expected) + { + Assert.Equal(expected, screen.Equals(obj)); + } + + [Theory] + [MemberData(nameof(Equals_Screen_TestData))] + public void Screen_GetHashCode_Invoke_ReturnsExpected(Screen screen1, Screen screen2, bool expected) + { + Assert.Equal(expected, screen1.GetHashCode().Equals(screen2.GetHashCode())); + } + + public static IEnumerable FromControl_TestData() + { + yield return new object[] { new Control() }; + + var createdControl = new Control(); + Assert.NotEqual(IntPtr.Zero, createdControl.Handle); + yield return new object[] { createdControl }; + } + + [Theory] + [MemberData(nameof(FromControl_TestData))] + public void Screen_FromControl_Invoke_ReturnsExpected(Control control) + { + Screen screen = Screen.FromControl(control); + Assert.NotNull(screen); + VerifyScreen(screen); + } + + [Fact] + public void Screen_FromControl_NullControl_ThrowsArgumentNullException() + { + Assert.Throws("control", () => Screen.FromControl(null)); + } + + public static IEnumerable FromHandle_TestData() + { + yield return new object[] { IntPtr.Zero }; + yield return new object[] { new Control().Handle }; + } + + [Theory] + [MemberData(nameof(FromHandle_TestData))] + public void Screen_FromHandle_Invoke_ReturnsExpected(IntPtr handle) + { + Screen screen = Screen.FromHandle(handle); + Assert.NotNull(screen); + VerifyScreen(screen); + } + + public static IEnumerable FromPoint_TestData() + { + yield return new object[] { new Point(-1, -2) }; + yield return new object[] { new Point(0, 0) }; + yield return new object[] { new Point(1, 2) }; + yield return new object[] { new Point(int.MaxValue, int.MaxValue) }; + } + + [Theory] + [MemberData(nameof(FromPoint_TestData))] + public void Screen_FromPoint_Invoke_ReturnsExpected(Point point) + { + Screen screen = Screen.FromPoint(point); + Assert.NotNull(screen); + VerifyScreen(screen); + } + + public static IEnumerable FromRectangle_TestData() + { + yield return new object[] { new Rectangle(-1, -2, -3, -4) }; + yield return new object[] { new Rectangle(0, 0, 0, 0) }; + yield return new object[] { new Rectangle(1, 2, 3, 4) }; + yield return new object[] { new Rectangle(int.MaxValue, int.MaxValue, int.MaxValue, int.MaxValue) }; + } + + [Theory] + [MemberData(nameof(FromRectangle_TestData))] + public void Screen_FromRectangle_Invoke_ReturnsExpected(Rectangle rectangle) + { + Screen screen = Screen.FromRectangle(rectangle); + Assert.NotNull(screen); + VerifyScreen(screen); + } + + [Theory] + [MemberData(nameof(FromControl_TestData))] + public void Screen_GetBounds_InvokeControl_ReturnsExpected(Control control) + { + Screen screen = Screen.FromControl(control); + Assert.Equal(screen.Bounds, Screen.GetBounds(control)); + } + + [Theory] + [MemberData(nameof(FromPoint_TestData))] + public void Screen_GetBounds_InvokePoint_ReturnsExpected(Point point) + { + Screen screen = Screen.FromPoint(point); + Assert.Equal(screen.Bounds, Screen.GetBounds(point)); + } + + [Theory] + [MemberData(nameof(FromRectangle_TestData))] + public void Screen_GetBounds_InvokeRectangle_ReturnsExpected(Rectangle rectangle) + { + Screen screen = Screen.FromRectangle(rectangle); + Assert.Equal(screen.Bounds, Screen.GetBounds(rectangle)); + } + + [Fact] + public void Screen_GetBounds_NullControl_ThrowsArgumentNullException() + { + Assert.Throws("control", () => Screen.GetBounds(null)); + } + + [Theory] + [MemberData(nameof(FromControl_TestData))] + public void Screen_GetWorkingArea_InvokeControl_ReturnsExpected(Control control) + { + Screen screen = Screen.FromControl(control); + Assert.Equal(screen.WorkingArea, Screen.GetWorkingArea(control)); + } + + [Theory] + [MemberData(nameof(FromPoint_TestData))] + public void Screen_GetWorkingArea_InvokePoint_ReturnsExpected(Point point) + { + Screen screen = Screen.FromPoint(point); + Assert.Equal(screen.WorkingArea, Screen.GetWorkingArea(point)); + } + + [Theory] + [MemberData(nameof(FromRectangle_TestData))] + public void Screen_GetWorkingArea_InvokeRectangle_ReturnsExpected(Rectangle rectangle) + { + Screen screen = Screen.FromRectangle(rectangle); + Assert.Equal(screen.WorkingArea, Screen.GetWorkingArea(rectangle)); + } + + [Fact] + public void Screen_GetWorkingArea_NullControl_ThrowsArgumentNullException() + { + Assert.Throws("control", () => Screen.GetWorkingArea(null)); + } + + [Fact] + public void Screen_ToString_Invoke_ReturnsExpected() + { + Screen screen = Screen.PrimaryScreen; + Assert.Equal($"Screen[Bounds={screen.Bounds} WorkingArea={screen.WorkingArea} Primary=True DeviceName={screen.DeviceName}", screen.ToString()); + } + + private static void VerifyScreen(Screen screen) + { + Assert.Contains(screen.BitsPerPixel, new int[] { 1, 2, 4, 8, 16, 24, 32, 48, 64 }); + Assert.True(screen.Bounds.X >= 0); + Assert.True(screen.Bounds.Y >= 0); + Assert.True(screen.Bounds.Width > 0); + Assert.True(screen.Bounds.Height > 0); + Assert.InRange(screen.DeviceName.Length, 1, 32); + Assert.Equal(screen.DeviceName, screen.DeviceName.Trim('\0')); + Assert.True(screen.WorkingArea.X >= 0); + Assert.True(screen.WorkingArea.Y >= 0); + Assert.InRange(screen.WorkingArea.Width, 1, screen.Bounds.Width); + Assert.InRange(screen.WorkingArea.Height, 1, screen.Bounds.Height); + } + } +} diff --git a/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/SystemInformationTests.cs b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/SystemInformationTests.cs index 67b1476e9be..ed6af3b0368 100644 --- a/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/SystemInformationTests.cs +++ b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/SystemInformationTests.cs @@ -2,6 +2,8 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +using System.Collections.Generic; +using System.Drawing; using Xunit; namespace System.Windows.Forms.Tests @@ -10,6 +12,609 @@ public class SystemInformationTests { private const int LogicalDpi = 96; + [Fact] + public void SystemInformation_ActiveWindowTrackingDelay_Get_ReturnsExpected() + { + int delay = SystemInformation.ActiveWindowTrackingDelay; + Assert.True(delay >= 0); + Assert.Equal(delay, SystemInformation.ActiveWindowTrackingDelay); + } + + [Fact] + public void SystemInformation_ArrangeDirection_Get_ReturnsExpected() + { + ArrangeDirection direction = SystemInformation.ArrangeDirection; + Assert.Equal((ArrangeDirection)0, direction & ~(ArrangeDirection.Up | ArrangeDirection.Down | ArrangeDirection.Left | ArrangeDirection.Right)); + Assert.Equal(direction, SystemInformation.ArrangeDirection); + } + + [Fact] + public void SystemInformation_ArrangeStartingPosition_Get_ReturnsExpected() + { + ArrangeStartingPosition position = SystemInformation.ArrangeStartingPosition; + Assert.Equal((ArrangeStartingPosition)0, position & ~(ArrangeStartingPosition.BottomLeft | ArrangeStartingPosition.BottomRight | ArrangeStartingPosition.Hide | ArrangeStartingPosition.TopLeft | ArrangeStartingPosition.TopRight)); + Assert.Equal(position, SystemInformation.ArrangeStartingPosition); + } + + [Fact] + public void SystemInformation_BootMode_Get_ReturnsExpected() + { + BootMode bootMode = SystemInformation.BootMode; + Assert.True(Enum.IsDefined(typeof(BootMode), bootMode)); + Assert.Equal(bootMode, SystemInformation.BootMode); + } + + [Fact] + public void SystemInformation_Border3DSize_Get_ReturnsExpected() + { + Size size = SystemInformation.Border3DSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.Border3DSize); + } + + [Fact] + public void SystemInformation_BorderMultiplierFactor_Get_ReturnsExpected() + { + int factor = SystemInformation.BorderMultiplierFactor; + Assert.True(factor >= 0); + Assert.Equal(factor, SystemInformation.BorderMultiplierFactor); + } + + [Fact] + public void SystemInformation_BorderSize_Get_ReturnsExpected() + { + Size size = SystemInformation.BorderSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.BorderSize); + } + + [Fact] + public void SystemInformation_CaptionButtonSize_Get_ReturnsExpected() + { + Size size = SystemInformation.CaptionButtonSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.CaptionButtonSize); + } + + [Fact] + public void SystemInformation_CaptionHeight_Get_ReturnsExpected() + { + int height = SystemInformation.CaptionHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.CaptionHeight); + } + + [Fact] + public void SystemInformation_CaretBlinkTime_Get_ReturnsExpected() + { + int blinkTime = SystemInformation.CaretBlinkTime; + Assert.True(blinkTime >= 0); + Assert.Equal(blinkTime, SystemInformation.CaretBlinkTime); + } + + [Fact] + public void SystemInformation_CaretWidth_Get_ReturnsExpected() + { + int height = SystemInformation.CaretWidth; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.CaretWidth); + } + + [Fact] + public void SystemInformation_ComputerName_Get_ReturnsExpected() + { + string name = SystemInformation.ComputerName; + Assert.InRange(name.Length, 1, 256); + Assert.Equal(name, name.Trim('\0')); + Assert.Equal(name, SystemInformation.ComputerName); + } + + [Fact] + public void SystemInformation_CursorSize_Get_ReturnsExpected() + { + Size size = SystemInformation.CursorSize; + Assert.Contains(size, new Size[] { new Size(32, 32), new Size(48, 48), new Size(64, 64) }); + Assert.Equal(size, SystemInformation.CursorSize); + } + + [Fact] + public void SystemInformation_DbcsEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.DbcsEnabled, SystemInformation.DbcsEnabled); + } + + [Fact] + public void SystemInformation_DebugOS_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.DbcsEnabled, SystemInformation.DebugOS); + } + + [Fact] + public void SystemInformation_DoubleClickSize_Get_ReturnsExpected() + { + Size size = SystemInformation.DoubleClickSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.DoubleClickSize); + } + + [Fact] + public void SystemInformation_DoubleClickTime_Get_ReturnsExpected() + { + int time = SystemInformation.DoubleClickTime; + Assert.True(time > 0); + Assert.Equal(time, SystemInformation.DoubleClickTime); + } + + [Fact] + public void SystemInformation_DragFullWindows_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.DragFullWindows, SystemInformation.DragFullWindows); + } + + [Fact] + public void SystemInformation_DragSize_Get_ReturnsExpected() + { + Size size = SystemInformation.DragSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.DragSize); + } + + [Fact] + public void SystemInformation_FixedFrameBorderSize_Get_ReturnsExpected() + { + Size size = SystemInformation.FixedFrameBorderSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.FixedFrameBorderSize); + } + + [Fact] + public void SystemInformation_FontSmoothingContrast_Get_ReturnsExpected() + { + int contrast = SystemInformation.FontSmoothingContrast; + Assert.True(contrast >= 0); + Assert.Equal(contrast, SystemInformation.FontSmoothingContrast); + } + + [Fact] + public void SystemInformation_FontSmoothingType_Get_ReturnsExpected() + { + int contrast = SystemInformation.FontSmoothingType; + Assert.True(contrast > 0); + Assert.Equal(contrast, SystemInformation.FontSmoothingType); + } + + [Fact] + public void SystemInformation_FrameBorderSize_Get_ReturnsExpected() + { + Size size = SystemInformation.FrameBorderSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.FrameBorderSize); + } + + [Fact] + public void SystemInformation_HighContrasst_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.HighContrast, SystemInformation.HighContrast); + } + + [Fact] + public void SystemInformation_HorizontalFocusThickness_Get_ReturnsExpected() + { + int thickness = SystemInformation.HorizontalFocusThickness; + Assert.True(thickness >= 0); + Assert.Equal(thickness, SystemInformation.HorizontalFocusThickness); + } + + [Fact] + public void SystemInformation_HorizontalResizeBorderThickness_Get_ReturnsExpected() + { + int thickness = SystemInformation.HorizontalResizeBorderThickness; + Assert.True(thickness >= 0); + Assert.Equal(thickness, SystemInformation.HorizontalResizeBorderThickness); + } + + [Fact] + public void SystemInformation_HorizontalScrollBarArrowWidth_Get_ReturnsExpected() + { + int width = SystemInformation.HorizontalScrollBarArrowWidth; + Assert.True(width >= 0); + Assert.Equal(width, SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(LogicalDpi)); + Assert.Equal(width, SystemInformation.HorizontalScrollBarArrowWidth); + } + + [Fact] + public void SystemInformation_HorizontalScrollBarHeight_Get_ReturnsExpected() + { + int height = SystemInformation.HorizontalScrollBarHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.HorizontalScrollBarHeight); + } + + [Fact] + public void SystemInformation_HorizontalScrollBarThumbWidth_Get_ReturnsExpected() + { + int width = SystemInformation.HorizontalScrollBarThumbWidth; + Assert.True(width >= 0); + Assert.Equal(width, SystemInformation.HorizontalScrollBarThumbWidth); + } + + [Fact] + public void SystemInformation_IconHorizontalSpacing_Get_ReturnsExpected() + { + int spacing = SystemInformation.IconHorizontalSpacing; + Assert.True(spacing >= 0); + Assert.Equal(spacing, SystemInformation.IconHorizontalSpacing); + } + + [Fact] + public void SystemInformation_IconSize_Get_ReturnsExpected() + { + Size size = SystemInformation.IconSize; + Assert.True(size.Width >= 32); + Assert.True(size.Height >= 32); + Assert.Equal(size, SystemInformation.IconSize); + } + + [Fact] + public void SystemInformation_IconSpacingSize_Get_ReturnsExpected() + { + Size size = SystemInformation.IconSpacingSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.IconSpacingSize); + } + + [Fact] + public void SystemInformation_IconVerticalSpacing_Get_ReturnsExpected() + { + int spacing = SystemInformation.IconVerticalSpacing; + Assert.True(spacing >= 0); + Assert.Equal(spacing, SystemInformation.IconVerticalSpacing); + } + + [Fact] + public void SystemInformation_IsActiveWindowTrackingEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsActiveWindowTrackingEnabled, SystemInformation.IsActiveWindowTrackingEnabled); + } + + [Fact] + public void SystemInformation_IsComboBoxAnimationEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsComboBoxAnimationEnabled, SystemInformation.IsComboBoxAnimationEnabled); + } + + [Fact] + public void SystemInformation_IsDropShadowEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsDropShadowEnabled, SystemInformation.IsDropShadowEnabled); + } + + [Fact] + public void SystemInformation_IsFlatMenuEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsFlatMenuEnabled, SystemInformation.IsFlatMenuEnabled); + } + + [Fact] + public void SystemInformation_IsFontSmoothingEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsFontSmoothingEnabled, SystemInformation.IsFontSmoothingEnabled); + } + + [Fact] + public void SystemInformation_IsHotTrackingEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsHotTrackingEnabled, SystemInformation.IsHotTrackingEnabled); + } + + [Fact] + public void SystemInformation_IsIconTitleWrappingEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsIconTitleWrappingEnabled, SystemInformation.IsIconTitleWrappingEnabled); + } + + [Fact] + public void SystemInformation_IsKeyboardPreferred_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsKeyboardPreferred, SystemInformation.IsKeyboardPreferred); + } + + [Fact] + public void SystemInformation_IsListBoxSmoothScrollingEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsListBoxSmoothScrollingEnabled, SystemInformation.IsListBoxSmoothScrollingEnabled); + } + + [Fact] + public void SystemInformation_IsMenuAnimationEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsMenuAnimationEnabled, SystemInformation.IsMenuAnimationEnabled); + } + + [Fact] + public void SystemInformation_IsMenuFadeEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsMenuFadeEnabled, SystemInformation.IsMenuFadeEnabled); + } + + [Fact] + public void SystemInformation_IsMinimizeRestoreAnimationEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsMinimizeRestoreAnimationEnabled, SystemInformation.IsMinimizeRestoreAnimationEnabled); + } + + [Fact] + public void SystemInformation_IsSelectionFadeEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsSelectionFadeEnabled, SystemInformation.IsSelectionFadeEnabled); + } + + [Fact] + public void SystemInformation_IsSnapToDefaultEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsSnapToDefaultEnabled, SystemInformation.IsSnapToDefaultEnabled); + } + + [Fact] + public void SystemInformation_IsTitleBarGradientEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsTitleBarGradientEnabled, SystemInformation.IsTitleBarGradientEnabled); + } + + [Fact] + public void SystemInformation_IsToolTipAnimationEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.IsToolTipAnimationEnabled, SystemInformation.IsToolTipAnimationEnabled); + } + + [Fact] + public void SystemInformation_KanjiWindowHeight_Get_ReturnsExpected() + { + int height = SystemInformation.KanjiWindowHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.KanjiWindowHeight); + } + + [Fact] + public void SystemInformation_KeyboardDelay_Get_ReturnsExpected() + { + int delay = SystemInformation.KeyboardDelay; + Assert.True(delay >= 0); + Assert.Equal(delay, SystemInformation.KeyboardDelay); + } + + [Fact] + public void SystemInformation_KeyboardSpeed_Get_ReturnsExpected() + { + int speed = SystemInformation.KeyboardSpeed; + Assert.True(speed >= 0); + Assert.Equal(speed, SystemInformation.KeyboardSpeed); + } + + [Fact] + public void SystemInformation_MaxWindowTrackSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MaxWindowTrackSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MaxWindowTrackSize); + } + + [Fact] + public void SystemInformation_MenuAccessKeysUnderlined_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MenuAccessKeysUnderlined, SystemInformation.MenuAccessKeysUnderlined); + } + + [Fact] + public void SystemInformation_MenuBarButtonSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MenuBarButtonSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MenuBarButtonSize); + } + + [Fact] + public void SystemInformation_MenuButtonSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MenuButtonSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MenuButtonSize); + } + + [Fact] + public void SystemInformation_MenuCheckSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MenuCheckSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MenuCheckSize); + } + + [Fact] + public void SystemInformation_MenuFont_Get_ReturnsExpected() + { + Font font = SystemInformation.MenuFont; + Assert.NotNull(font); + Assert.Equal(font, SystemInformation.MenuFont); + } + + [Fact] + public void SystemInformation_MenuHeight_Get_ReturnsExpected() + { + int height = SystemInformation.MenuHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.MenuHeight); + } + + [Fact] + public void SystemInformation_MenuShowDelay_Get_ReturnsExpected() + { + int delay = SystemInformation.MenuShowDelay; + Assert.True(delay >= 0); + Assert.Equal(delay, SystemInformation.MenuShowDelay); + } + + [Fact] + public void SystemInformation_MidEastEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MidEastEnabled, SystemInformation.MidEastEnabled); + } + + [Fact] + public void SystemInformation_MinimizedWindowSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MinimizedWindowSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MinimizedWindowSize); + } + + [Fact] + public void SystemInformation_MinimizedWindowSpacingSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MinimizedWindowSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MinimizedWindowSpacingSize); + } + + [Fact] + public void SystemInformation_MinimumWindowSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MinimumWindowSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.MinimumWindowSize); + } + + [Fact] + public void SystemInformation_MinWindowTrackSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MinWindowTrackSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.MinWindowTrackSize); + } + + [Fact] + public void SystemInformation_MonitorCount_Get_ReturnsExpected() + { + int count = SystemInformation.MonitorCount; + Assert.True(count > 0); + Assert.Equal(count, Screen.AllScreens.Length); + Assert.Equal(count, SystemInformation.MonitorCount); + } + + [Fact] + public void SystemInformation_MonitorsSameDisplayFormat_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MonitorsSameDisplayFormat, SystemInformation.MonitorsSameDisplayFormat); + } + + [Fact] + public void SystemInformation_MouseButtons_Get_ReturnsExpected() + { + int count = SystemInformation.MouseButtons; + Assert.True(count >= 0); + Assert.Equal(count, SystemInformation.MouseButtons); + } + + [Fact] + public void SystemInformation_MouseButtonsSwapped_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MouseButtonsSwapped, SystemInformation.MouseButtonsSwapped); + } + + [Fact] + public void SystemInformation_MouseHoverSize_Get_ReturnsExpected() + { + Size size = SystemInformation.MouseHoverSize; + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + Assert.Equal(size, SystemInformation.MouseHoverSize); + } + + [Fact] + public void SystemInformation_MouseHoverTime_Get_ReturnsExpected() + { + int count = SystemInformation.MouseHoverTime; + Assert.True(count > 0); + Assert.Equal(count, SystemInformation.MouseHoverTime); + } + + [Fact] + public void SystemInformation_MousePresent_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MousePresent, SystemInformation.MousePresent); + } + + [Fact] + public void SystemInformation_MouseSpeed_Get_ReturnsExpected() + { + int count = SystemInformation.MouseSpeed; + Assert.True(count > 0); + Assert.Equal(count, SystemInformation.MouseSpeed); + } + + [Fact] + public void SystemInformation_MouseWheelPresent_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.MouseWheelPresent, SystemInformation.MouseWheelPresent); + } + + [Fact] + public void SystemInformation_MouseWheelScrollDelta_Get_ReturnsExpected() + { + int delta = SystemInformation.MouseWheelScrollDelta; + Assert.Equal(120, delta); + Assert.Equal(delta, SystemInformation.MouseWheelScrollDelta); + } + + [Fact] + public void SystemInformation_MouseWheelScrollLines_Get_ReturnsExpected() + { + int lines = SystemInformation.MouseWheelScrollLines; + Assert.True(lines > 0); + Assert.Equal(lines, SystemInformation.MouseWheelScrollLines); + } + + [Fact] + public void SystemInformation_NativeMouseWheelSupport_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.NativeMouseWheelSupport, SystemInformation.NativeMouseWheelSupport); + } + + [Fact] + public void SystemInformation_Network_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.Network, SystemInformation.Network); + } + + [Fact] + public void SystemInformation_PenWindows_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.PenWindows, SystemInformation.PenWindows); + } + + [Fact] + public void SystemInformation_PopupMenuAlignment_Get_ReturnsExpected() + { + LeftRightAlignment alignment = SystemInformation.PopupMenuAlignment; + Assert.True(Enum.IsDefined(typeof(LeftRightAlignment), alignment)); + Assert.Equal(alignment, SystemInformation.PopupMenuAlignment); + } + [Fact] public void SystemInformation_PowerStatus_Get_ReturnsExpected() { @@ -19,15 +624,246 @@ public void SystemInformation_PowerStatus_Get_ReturnsExpected() } [Fact] - public void SystemInformation_VerticalScrollBarArrowHeight_LogicalDpi_ReturnsVerticalScrollBarArrowHeight() + public void SystemInformation_PrimaryMonitorMaximizedWindowSize_Get_ReturnsExpected() + { + Size size = SystemInformation.PrimaryMonitorMaximizedWindowSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.PrimaryMonitorMaximizedWindowSize); + } + + [Fact] + public void SystemInformation_PrimaryMonitorSize_Get_ReturnsExpected() + { + Size size = SystemInformation.PrimaryMonitorSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.PrimaryMonitorSize); + } + + [Fact] + public void SystemInformation_RightAlignedMenus_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.RightAlignedMenus, SystemInformation.RightAlignedMenus); + } + + [Fact] + public void SystemInformation_ScreenOrientation_Get_ReturnsExpected() + { + ScreenOrientation orientation = SystemInformation.ScreenOrientation; + Assert.True(Enum.IsDefined(typeof(ScreenOrientation), orientation)); + Assert.Equal(orientation, SystemInformation.ScreenOrientation); + } + + [Fact] + public void SystemInformation_Secure_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.Secure, SystemInformation.Secure); + } + + [Fact] + public void SystemInformation_ShowSounds_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.ShowSounds, SystemInformation.ShowSounds); + } + + [Fact] + public void SystemInformation_SizingBorderWidth_Get_ReturnsExpected() + { + int width = SystemInformation.SizingBorderWidth; + Assert.True(width > 0); + Assert.Equal(width, SystemInformation.SizingBorderWidth); + } + + [Fact] + public void SystemInformation_SmallCaptionButtonSize_Get_ReturnsExpected() + { + Size size = SystemInformation.SmallCaptionButtonSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.SmallCaptionButtonSize); + } + + [Fact] + public void SystemInformation_SmallIconSize_Get_ReturnsExpected() + { + Size size = SystemInformation.SmallIconSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.SmallIconSize); + } + + [Fact] + public void SystemInformation_TerminalServerSession_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.TerminalServerSession, SystemInformation.TerminalServerSession); + } + + [Fact] + public void SystemInformation_ToolWindowCaptionButtonSize_Get_ReturnsExpected() + { + Size size = SystemInformation.ToolWindowCaptionButtonSize; + Assert.True(size.Width > 0); + Assert.True(size.Height > 0); + Assert.Equal(size, SystemInformation.ToolWindowCaptionButtonSize); + } + + [Fact] + public void SystemInformation_ToolWindowCaptionHeight_Get_ReturnsExpected() + { + int height = SystemInformation.ToolWindowCaptionHeight; + Assert.True(height > 0); + Assert.Equal(height, SystemInformation.ToolWindowCaptionHeight); + } + + [Fact] + public void SystemInformation_UIEffectsEnabled_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.UIEffectsEnabled, SystemInformation.UIEffectsEnabled); + } + + [Fact] + public void SystemInformation_UserDomainName_Get_ReturnsExpected() { - Assert.Equal(SystemInformation.VerticalScrollBarArrowHeight, SystemInformation.VerticalScrollBarArrowHeightForDpi(LogicalDpi)); + string domainName = SystemInformation.UserDomainName; + Assert.Equal(Environment.UserDomainName, domainName); + Assert.Equal(domainName, SystemInformation.UserDomainName); } [Fact] - public void SystemInformation_GetHorizontalScrollBarArrowWidthForDpi_LogicalDpi_HorizontalScrollBarArrowWidth() + public void SystemInformation_UserInteractive_Get_ReturnsExpected() + { + Assert.Equal(SystemInformation.UserInteractive, SystemInformation.UserInteractive); + } + + [Fact] + public void SystemInformation_UserName_Get_ReturnsExpected() + { + string name = SystemInformation.UserName; + Assert.InRange(name.Length, 1, 256); + Assert.Equal(name, name.Trim('\0')); + Assert.Equal(name, SystemInformation.UserName); + } + + [Fact] + public void SystemInformation_VerticalFocusThickness_Get_ReturnsExpected() + { + int thickness = SystemInformation.VerticalFocusThickness; + Assert.True(thickness >= 0); + Assert.Equal(thickness, SystemInformation.VerticalFocusThickness); + } + + [Fact] + public void SystemInformation_VerticalResizeBorderThickness_Get_ReturnsExpected() + { + int thickness = SystemInformation.VerticalResizeBorderThickness; + Assert.True(thickness >= 0); + Assert.Equal(thickness, SystemInformation.VerticalResizeBorderThickness); + } + + [Fact] + public void SystemInformation_VerticalScrollBarArrowHeight_Get_ReturnsExpected() + { + int height = SystemInformation.VerticalScrollBarArrowHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.VerticalScrollBarArrowHeightForDpi(LogicalDpi)); + Assert.Equal(height, SystemInformation.VerticalScrollBarArrowHeight); + } + + [Fact] + public void SystemInformation_VerticalScrollBarThumbHeight_Get_ReturnsExpected() + { + int height = SystemInformation.VerticalScrollBarThumbHeight; + Assert.True(height >= 0); + Assert.Equal(height, SystemInformation.VerticalScrollBarThumbHeight); + } + + [Fact] + public void SystemInformation_VerticalScrollBarWidth_Get_ReturnsExpected() + { + int width = SystemInformation.VerticalScrollBarWidth; + Assert.True(width >= 0); + Assert.Equal(width, SystemInformation.GetVerticalScrollBarWidthForDpi(LogicalDpi)); + Assert.Equal(width, SystemInformation.VerticalScrollBarWidth); + } + + [Fact] + public void SystemInformation_VirtualScreen_Get_ReturnsExpected() + { + Rectangle screen = SystemInformation.VirtualScreen; + Assert.True(screen.X >= 0); + Assert.True(screen.Y >= 0); + Assert.True(screen.Width > 0); + Assert.True(screen.Height > 0); + Assert.Equal(screen, SystemInformation.VirtualScreen); + } + + [Fact] + public void SystemInformation_WorkingArea_Get_ReturnsExpected() + { + Rectangle workingArea = SystemInformation.WorkingArea; + Assert.True(workingArea.X >= 0); + Assert.True(workingArea.Y >= 0); + Assert.True(workingArea.Width > 0); + Assert.True(workingArea.Height > 0); + Assert.Equal(workingArea, SystemInformation.WorkingArea); + } + + public static IEnumerable Dpi_TestData() + { + yield return new object[] { -10 }; + yield return new object[] { 0 }; + yield return new object[] { LogicalDpi }; + yield return new object[] { 300 }; + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_GetBorderSizeForDpi_Invoke_ReturnsExpected(int dpi) + { + Size size = SystemInformation.GetBorderSizeForDpi(dpi); + Assert.True(size.Width >= 0); + Assert.True(size.Height >= 0); + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_GetHorizontalScrollBarArrowWidthForDpi_Invoke_ReturnsExpected(int dpi) + { + int width = SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(dpi); + Assert.True(width >= 0); + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_GetHorizontalScrollBarHeightForDpi_Invoke_ReturnsExpected(int dpi) + { + int height = SystemInformation.GetHorizontalScrollBarHeightForDpi(dpi); + Assert.True(height >= 0); + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_GetMenuFontForDpi_Invoke_ReturnsExpected(int dpi) + { + Font font = SystemInformation.GetMenuFontForDpi(dpi); + Assert.NotNull(font); + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_GetVerticalScrollBarWidthForDpi_Invoke_ReturnsExpected(int dpi) + { + int width = SystemInformation.GetVerticalScrollBarWidthForDpi(dpi); + Assert.True(width >= 0); + } + + [Theory] + [MemberData(nameof(Dpi_TestData))] + public void SystemInformation_VerticalScrollBarArrowHeightForDpi_Invoke_ReturnsExpected(int dpi) { - Assert.Equal(SystemInformation.HorizontalScrollBarArrowWidth, SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(LogicalDpi)); + int height = SystemInformation.VerticalScrollBarArrowHeightForDpi(dpi); + Assert.True(height >= 0); } } }