| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648 |
- //
- // System.Drawing.Drawing2D.LinearGradientBrush unit tests
- //
- // Authors:
- // Sebastien Pouliot <[email protected]>
- //
- // Copyright (C) 2006 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Security.Permissions;
- using NUnit.Framework;
- namespace MonoTests.System.Drawing.Drawing2D {
- [TestFixture]
- [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
- public class LinearGradientBrushTest {
- private Point pt1;
- private Point pt2;
- private Color c1;
- private Color c2;
- private LinearGradientBrush default_brush;
- private Matrix empty_matrix;
- private RectangleF rect;
- [TestFixtureSetUp]
- public void FixtureSetUp ()
- {
- pt1 = new Point (0, 0);
- pt2 = new Point (32, 32);
- c1 = Color.Blue;
- c2 = Color.Red;
- default_brush = new LinearGradientBrush (pt1, pt2, c1, c2);
- empty_matrix = new Matrix ();
- rect = new RectangleF (0, 0, 32, 32);
- }
- private void CheckDefaultRectangle (string msg, RectangleF rect)
- {
- Assert.AreEqual (pt1.X, rect.X, msg + ".Rectangle.X");
- Assert.AreEqual (pt1.Y, rect.Y, msg + ".Rectangle.Y");
- Assert.AreEqual (pt2.X, rect.Width, msg + ".Rectangle.Width");
- Assert.AreEqual (pt2.Y, rect.Height, msg + ".Rectangle.Height");
- }
- private void CheckDefaultMatrix (Matrix matrix)
- {
- float[] elements = matrix.Elements;
- Assert.AreEqual (1, elements[0], 0.1, "matrix.0");
- Assert.AreEqual (1, elements[1], 0.1, "matrix.1");
- Assert.AreEqual (-1, elements[2], 0.1, "matrix.2");
- Assert.AreEqual (1, elements[3], 0.1, "matrix.3");
- Assert.AreEqual (16, elements[4], "matrix.4");
- Assert.AreEqual (-16, elements[5], "matrix.5");
- }
- private void CheckBrushAt45 (LinearGradientBrush lgb)
- {
- CheckDefaultRectangle ("4", lgb.Rectangle);
- Assert.AreEqual (1, lgb.Blend.Factors.Length, "Blend.Factors");
- Assert.AreEqual (1, lgb.Blend.Factors[0], "Blend.Factors [0]");
- Assert.AreEqual (1, lgb.Blend.Positions.Length, "Blend.Positions");
- // lgb.Blend.Positions [0] is always small (e-39) but never quite the same
- Assert.IsFalse (lgb.GammaCorrection, "GammaCorrection");
- Assert.AreEqual (2, lgb.LinearColors.Length, "LinearColors");
- Assert.IsNotNull (lgb.Transform, "Transform");
- CheckDefaultMatrix (lgb.Transform);
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_Point_Point_Color_Color ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- CheckBrushAt45 (lgb);
- Assert.AreEqual (WrapMode.Tile, lgb.WrapMode, "WrapMode.Tile");
- lgb.WrapMode = WrapMode.TileFlipX;
- Assert.AreEqual (WrapMode.TileFlipX, lgb.WrapMode, "WrapMode.TileFlipX");
- lgb.WrapMode = WrapMode.TileFlipY;
- Assert.AreEqual (WrapMode.TileFlipY, lgb.WrapMode, "WrapMode.TileFlipY");
- lgb.WrapMode = WrapMode.TileFlipXY;
- Assert.AreEqual (WrapMode.TileFlipXY, lgb.WrapMode, "WrapMode.TileFlipXY");
- // can't set WrapMode.Clamp
- }
- [Test]
- public void Constructor_RectangleF_Color_Color_Single_0 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- Assert.AreEqual (1, lgb.Blend.Factors.Length, "Blend.Factors");
- Assert.AreEqual (1, lgb.Blend.Factors[0], "Blend.Factors[0]");
- Assert.AreEqual (1, lgb.Blend.Positions.Length, "Blend.Positions");
- // lgb.Blend.Positions [0] is always small (e-39) but never quite the same
- Assert.IsFalse (lgb.GammaCorrection, "GammaCorrection");
- Assert.AreEqual (c1.ToArgb (), lgb.LinearColors[0].ToArgb (), "LinearColors[0]");
- Assert.AreEqual (c2.ToArgb (), lgb.LinearColors[1].ToArgb (), "LinearColors[1]");
- Assert.AreEqual (rect, lgb.Rectangle, "Rectangle");
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity");
- Assert.AreEqual (WrapMode.Tile, lgb.WrapMode, "WrapMode");
- Matrix matrix = new Matrix (2, -1, 1, 2, 10, 10);
- lgb.Transform = matrix;
- Assert.AreEqual (matrix, lgb.Transform, "Transform");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_22_5 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 22.5f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (1.207107, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (0.5, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (-0.5, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (1.207107, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (4.686291, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (-11.313709, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_45 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 45f);
- CheckBrushAt45 (lgb);
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_90 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 90f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (0, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (1, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (-1, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (0, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (32, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_135 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 135f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (-1, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (1, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (-1, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (-1, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (48, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (16, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_180 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 180f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (-1, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (-1, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (32, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (32, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_270 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 270f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (0, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (-1, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (1, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (0, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (32, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_315 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 315f);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (1, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (-1, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (1, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (1, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (-16, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (16, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- public void Constructor_RectangleF_Color_Color_Single_360()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 360f);
- float[] elements = lgb.Transform.Elements;
- // just like 0'
- Assert.AreEqual (1, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (1, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void Constructor_RectangleF_Color_Color_Single_540 ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 540f);
- float[] elements = lgb.Transform.Elements;
- // just like 180'
- Assert.AreEqual (-1, elements[0], 0.0001, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.0001, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.0001, "matrix.2");
- Assert.AreEqual (-1, elements[3], 0.0001, "matrix.3");
- Assert.AreEqual (32, elements[4], 0.0001, "matrix.4");
- Assert.AreEqual (32, elements[5], 0.0001, "matrix.5");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void InterpolationColors_Colors_InvalidBlend ()
- {
- // default Blend doesn't allow getting this property
- Assert.IsNotNull (default_brush.InterpolationColors.Colors);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void InterpolationColors_Positions_InvalidBlend ()
- {
- // default Blend doesn't allow getting this property
- Assert.IsNotNull (default_brush.InterpolationColors.Positions);
- }
- [Test]
- [ExpectedException (typeof (IndexOutOfRangeException))]
- public void LinearColors_Empty ()
- {
- default_brush.LinearColors = new Color[0];
- }
- [Test]
- [ExpectedException (typeof (IndexOutOfRangeException))]
- public void LinearColors_One ()
- {
- default_brush.LinearColors = new Color[1];
- }
- [Test]
- public void LinearColors_Two ()
- {
- Assert.AreEqual (Color.FromArgb (255, 0, 0, 255), default_brush.LinearColors[0], "0");
- Assert.AreEqual (Color.FromArgb (255, 255, 0, 0), default_brush.LinearColors[1], "1");
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.LinearColors = new Color[2] { Color.Black, Color.White };
- // not the same, the alpha is changed to 255 so they can't compare
- Assert.AreEqual (Color.FromArgb (255, 0, 0, 0), lgb.LinearColors[0], "0");
- Assert.AreEqual (Color.FromArgb (255, 255, 255, 255), lgb.LinearColors[1], "1");
- }
- [Test]
- public void LinearColors_Three ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.LinearColors = new Color[3] { Color.Red, Color.Green, Color.Blue };
- // not the same, the alpha is changed to 255 so they can't compare
- Assert.AreEqual (Color.FromArgb (255, 255, 0, 0), lgb.LinearColors[0], "0");
- Assert.AreEqual (Color.FromArgb (255, 0, 128, 0), lgb.LinearColors[1], "1");
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void Transform_Null ()
- {
- default_brush.Transform = null;
- }
- [Test]
- public void Transform_Empty ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.Transform = new Matrix ();
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Transform_NonInvertible ()
- {
- default_brush.Transform = new Matrix (123, 24, 82, 16, 47, 30);
- }
- [Test]
- public void WrapMode_AllValid ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.WrapMode = WrapMode.Tile;
- Assert.AreEqual (WrapMode.Tile, lgb.WrapMode, "WrapMode.Tile");
- lgb.WrapMode = WrapMode.TileFlipX;
- Assert.AreEqual (WrapMode.TileFlipX, lgb.WrapMode, "WrapMode.TileFlipX");
- lgb.WrapMode = WrapMode.TileFlipY;
- Assert.AreEqual (WrapMode.TileFlipY, lgb.WrapMode, "WrapMode.TileFlipY");
- lgb.WrapMode = WrapMode.TileFlipXY;
- Assert.AreEqual (WrapMode.TileFlipXY, lgb.WrapMode, "WrapMode.TileFlipXY");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void WrapMode_Clamp ()
- {
- default_brush.WrapMode = WrapMode.Clamp;
- }
- [Test]
- [ExpectedException (typeof (InvalidEnumArgumentException))]
- public void WrapMode_Invalid ()
- {
- default_brush.WrapMode = (WrapMode) Int32.MinValue;
- }
- [Test]
- public void Clone ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- LinearGradientBrush clone = (LinearGradientBrush) lgb.Clone ();
- Assert.AreEqual (lgb.Blend.Factors.Length, clone.Blend.Factors.Length, "Blend.Factors.Length");
- Assert.AreEqual (lgb.Blend.Positions.Length, clone.Blend.Positions.Length, "Blend.Positions.Length");
- Assert.AreEqual (lgb.GammaCorrection, clone.GammaCorrection, "GammaCorrection");
- Assert.AreEqual (lgb.LinearColors.Length, clone.LinearColors.Length, "LinearColors.Length");
- Assert.AreEqual (lgb.LinearColors.Length, clone.LinearColors.Length, "LinearColors.Length");
- Assert.AreEqual (lgb.Rectangle, clone.Rectangle, "Rectangle");
- Assert.AreEqual (lgb.Transform, clone.Transform, "Transform");
- Assert.AreEqual (lgb.WrapMode, clone.WrapMode, "WrapMode");
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void MultiplyTransform1_Null ()
- {
- default_brush.MultiplyTransform (null);
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void MultiplyTransform2_Null ()
- {
- default_brush.MultiplyTransform (null, MatrixOrder.Append);
- }
- [Test]
- public void MultiplyTransform2_Invalid ()
- {
- default_brush.MultiplyTransform (empty_matrix, (MatrixOrder) Int32.MinValue);
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void ResetTransform ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- Assert.IsFalse (lgb.Transform.IsIdentity, "Transform.IsIdentity");
- lgb.ResetTransform ();
- Assert.IsTrue (lgb.Transform.IsIdentity, "Reset.IsIdentity");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void RotateTransform ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.RotateTransform (90);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (0, elements[0], 0.1, "matrix.0");
- Assert.AreEqual (1, elements[1], 0.1, "matrix.1");
- Assert.AreEqual (-1, elements[2], 0.1, "matrix.2");
- Assert.AreEqual (0, elements[3], 0.1, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "matrix.5");
- lgb.RotateTransform (270);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void RotateTransform_Max ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.RotateTransform (Single.MaxValue);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (5.93904E+36, elements[0], 1e32, "matrix.0");
- Assert.AreEqual (5.93904E+36, elements[1], 1e32, "matrix.1");
- Assert.AreEqual (-5.93904E+36, elements[2], 1e32, "matrix.2");
- Assert.AreEqual (5.93904E+36, elements[3], 1e32, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "matrix.5");
- }
- [Test]
- [NUnit.Framework.Category ("NotWorking")]
- public void RotateTransform_Min ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.RotateTransform (Single.MinValue);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (-5.93904E+36, elements[0], 1e32, "matrix.0");
- Assert.AreEqual (-5.93904E+36, elements[1], 1e32, "matrix.1");
- Assert.AreEqual (5.93904E+36, elements[2], 1e32, "matrix.2");
- Assert.AreEqual (-5.93904E+36, elements[3], 1e32, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "matrix.5");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void RotateTransform_InvalidOrder ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.RotateTransform (720, (MatrixOrder) Int32.MinValue);
- }
- [Test]
- public void ScaleTransform ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.ScaleTransform (2, 4);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (2, elements[0], 0.1, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.1, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.1, "matrix.2");
- Assert.AreEqual (4, elements[3], 0.1, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "matrix.5");
- lgb.ScaleTransform (0.5f, 0.25f);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity");
- }
- [Test]
- public void ScaleTransform_MaxMin ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.ScaleTransform (Single.MaxValue, Single.MinValue);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (Single.MaxValue, elements[0], 1e33, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.1, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.1, "matrix.2");
- Assert.AreEqual (Single.MinValue, elements[3], 1e33, "matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "matrix.5");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ScaleTransform_InvalidOrder ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.ScaleTransform (1, 1, (MatrixOrder) Int32.MinValue);
- }
- [Test]
- public void SetBlendTriangularShape_Focus ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- // max valid
- lgb.SetBlendTriangularShape (1);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // min valid
- lgb.SetBlendTriangularShape (0);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // middle
- lgb.SetBlendTriangularShape (0.5f);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // no impact on matrix
- }
- [Test]
- public void SetBlendTriangularShape_Scale ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- // max valid
- lgb.SetBlendTriangularShape (0, 1);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // min valid
- lgb.SetBlendTriangularShape (1, 0);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // middle
- lgb.SetBlendTriangularShape (0.5f, 0.5f);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // no impact on matrix
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetBlendTriangularShape_FocusTooSmall ()
- {
- default_brush.SetBlendTriangularShape (-1);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetBlendTriangularShape_FocusTooBig ()
- {
- default_brush.SetBlendTriangularShape (1.01f);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetBlendTriangularShape_ScaleTooSmall ()
- {
- default_brush.SetBlendTriangularShape (1, -1);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetBlendTriangularShape_ScaleTooBig ()
- {
- default_brush.SetBlendTriangularShape (1, 1.01f);
- }
- [Test]
- public void SetSigmaBellShape_Focus ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- // max valid
- lgb.SetSigmaBellShape (1);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // min valid
- lgb.SetSigmaBellShape (0);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // middle
- lgb.SetSigmaBellShape (0.5f);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // no impact on matrix
- }
- [Test]
- public void SetSigmaBellShape_Scale ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- // max valid
- lgb.SetSigmaBellShape (0, 1);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-1");
- // min valid
- lgb.SetSigmaBellShape (1, 0);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-2");
- // middle
- lgb.SetSigmaBellShape (0.5f, 0.5f);
- Assert.IsTrue (lgb.Transform.IsIdentity, "Transform.IsIdentity-3");
- // no impact on matrix
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetSigmaBellShape_FocusTooSmall ()
- {
- default_brush.SetSigmaBellShape (-1);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetSigmaBellShape_FocusTooBig ()
- {
- default_brush.SetSigmaBellShape (1.01f);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetSigmaBellShape_ScaleTooSmall ()
- {
- default_brush.SetSigmaBellShape (1, -1);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void SetSigmaBellShape_ScaleTooBig ()
- {
- default_brush.SetSigmaBellShape (1, 1.01f);
- }
- [Test]
- public void TranslateTransform ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (rect, c1, c2, 0f);
- lgb.TranslateTransform (1, 1);
- float[] elements = lgb.Transform.Elements;
- Assert.AreEqual (1, elements[0], 0.1, "matrix.0");
- Assert.AreEqual (0, elements[1], 0.1, "matrix.1");
- Assert.AreEqual (0, elements[2], 0.1, "matrix.2");
- Assert.AreEqual (1, elements[3], 0.1, "matrix.3");
- Assert.AreEqual (1, elements[4], 0.1, "matrix.4");
- Assert.AreEqual (1, elements[5], 0.1, "matrix.5");
- lgb.TranslateTransform (-1, -1);
- // strangely lgb.Transform.IsIdentity is false
- elements = lgb.Transform.Elements;
- Assert.AreEqual (1, elements[0], 0.1, "revert.matrix.0");
- Assert.AreEqual (0, elements[1], 0.1, "revert.matrix.1");
- Assert.AreEqual (0, elements[2], 0.1, "revert.matrix.2");
- Assert.AreEqual (1, elements[3], 0.1, "revert.matrix.3");
- Assert.AreEqual (0, elements[4], 0.1, "revert.matrix.4");
- Assert.AreEqual (0, elements[5], 0.1, "revert.matrix.5");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void TranslateTransform_InvalidOrder ()
- {
- LinearGradientBrush lgb = new LinearGradientBrush (pt1, pt2, c1, c2);
- lgb.TranslateTransform (1, 1, (MatrixOrder) Int32.MinValue);
- }
- }
- }
|