#region CPL License /* Nuclex Framework Copyright (C) 2002-2010 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion #if UNITTEST using System; using System.Runtime.InteropServices; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Input; using NUnit.Framework; using NMock; using Nuclex.Input; using Nuclex.UserInterface.Controls.Desktop; using Nuclex.UserInterface.Input; namespace Nuclex.UserInterface.Visuals.Flat.Renderers { /// Unit Test for the flat horizontal slider control renderer [TestFixture] internal class FlatHorizontalSliderControlRendererTest : ControlRendererTest { /// Called before each test is run [SetUp] public override void Setup() { base.Setup(); this.slider = new HorizontalSliderControl(); this.slider.ThumbSize = 0.5f; this.slider.ThumbPosition = 0.5f; this.slider.Bounds = new UniRectangle(10, 10, 100, 100); Screen.Desktop.Children.Add(this.slider); this.renderer = new FlatHorizontalSliderControlRenderer(); } #if false // Sliders can't be disabled currently /// /// Verifies that the slider renderer can render disabled sliders /// [Test] public void TestRenderDisabled() { this.slider.Enabled = false; drawAndExpectState("disabled"); } #endif /// /// Verifies that the slider renderer can render normal sliders /// [Test] public void TestRenderNormal() { drawAndExpectState("normal"); } /// /// Verifies that the slider renderer can render highlighted sliders /// [Test] public void TestRenderHighlighted() { Screen.InjectMouseMove(55.0f, 20.0f); // Move the mouse cursor over the thumb drawAndExpectState("highlighted"); } /// /// Verifies that the slider renderer can render depressed sliders /// [Test] public void TestRenderDepressed() { // Move the mouse cursor over the slider and press it Screen.InjectMouseMove(55.0f, 20.0f); Screen.InjectMousePress(MouseButtons.Left); drawAndExpectState("depressed"); } /// /// Lets the renderer draw the slider and verifies that the slider used /// the skin elements from the expected state /// /// /// Expected state the skin elements should be using /// private void drawAndExpectState(string expectedState) { // Make sure the renderer draws at least two frames MockedGraphics.Expects.One.Method( m => m.DrawElement(null, RectangleF.Empty) ).WithAnyArguments(); MockedGraphics.Expects.One.Method(m => m.DrawElement(null, RectangleF.Empty)).With( NMock.Is.StringContaining(expectedState), NMock.Is.Anything ); // Let the renderer draw the slider into the mocked graphics interface renderer.Render(this.slider, MockedGraphics.MockObject); // And verify the expected drawing commands were issues Mockery.VerifyAllExpectationsHaveBeenMet(); } /// Slider renderer being tested private FlatHorizontalSliderControlRenderer renderer; /// Slider used to test the slider renderer private HorizontalSliderControl slider; } } // namespace Nuclex.UserInterface.Visuals.Flat.Renderers #endif // UNITTEST