// // System.Configuration.TimeSpanSecondsConverterTest.cs - Unit tests // for System.Configuration.TimeSpanSecondsConverter. // // Author: // Chris Toshok // // Copyright (C) 2005 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.Configuration; using NUnit.Framework; namespace MonoTests.System.Configuration { [TestFixture] public class TimeSpanSecondsConverterTest { [Test] public void CanConvertFrom () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); Assert.IsTrue (cv.CanConvertFrom (null, typeof (string)), "A1"); Assert.IsFalse (cv.CanConvertFrom (null, typeof (TimeSpan)), "A2"); Assert.IsFalse (cv.CanConvertFrom (null, typeof (int)), "A3"); Assert.IsFalse (cv.CanConvertFrom (null, typeof (object)), "A4"); } [Test] public void CanConvertTo () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); Assert.IsTrue (cv.CanConvertTo (null, typeof (string)), "A1"); Assert.IsFalse (cv.CanConvertTo (null, typeof (TimeSpan)), "A2"); Assert.IsFalse (cv.CanConvertTo (null, typeof (int)), "A3"); Assert.IsFalse (cv.CanConvertTo (null, typeof (object)), "A4"); } [Test] public void ConvertFrom () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); object o; o = cv.ConvertFrom (null, null, "59"); Assert.AreEqual (typeof (TimeSpan), o.GetType(), "A1"); Assert.AreEqual ("00:00:59", o.ToString(), "A2"); o = cv.ConvertFrom (null, null, "104"); Assert.AreEqual ("00:01:44", o.ToString(), "A3"); } [Test] [ExpectedException (typeof (ArgumentException))] public void ConvertFrom_FormatError () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); object o; o = cv.ConvertFrom (null, null, "100.5"); Assert.IsNull (o, "A1"); } [Test] [ExpectedException (typeof (ArgumentException))] public void ConvertFrom_TypeError () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); object o; o = cv.ConvertFrom (null, null, 59); Assert.IsNull (o, "A1"); } [Test] public void ConvertTo () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); TimeSpan ts; ts = TimeSpan.FromSeconds (59); Assert.AreEqual ("59", cv.ConvertTo (null, null, ts, typeof (string)), "A1"); ts = TimeSpan.FromSeconds (144); Assert.AreEqual ("144", cv.ConvertTo (null, null, ts, typeof (string)), "A2"); ts = TimeSpan.FromMilliseconds (3900); Assert.AreEqual ("3", cv.ConvertTo (null, null, ts, typeof (string)), "A2"); } [Test] [ExpectedException (typeof (NullReferenceException))] public void ConvertTo_NullError () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); Assert.AreEqual ("", cv.ConvertTo (null, null, null, typeof (string)), "A1"); } [Test] [ExpectedException (typeof (ArgumentException))] public void ConvertTo_TypeError1 () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); Assert.AreEqual ("59", cv.ConvertTo (null, null, 59, typeof (string)), "A1"); } [Test] public void ConvertTo_TypeError2 () { TimeSpanSecondsConverter cv = new TimeSpanSecondsConverter (); TimeSpan ts; ts = TimeSpan.FromSeconds (59); Assert.AreEqual ("59", cv.ConvertTo (null, null, ts, typeof (int)), "A1"); Assert.AreEqual ("59", cv.ConvertTo (null, null, ts, null), "A2"); } } }