// ConstraintTest.cs - NUnit Test Cases for testing the abstract class System.Data.Constraint // The tests use an inherited class (UniqueConstraint) to test the Constraint class. // // Authors: // Franklin Wise // Martin Willemoes Hansen // // (C) 2002 Franklin Wise // (C) 2003 Martin Willemoes Hansen // using NUnit.Framework; using System; using System.Data; namespace MonoTests.System.Data { // public class MyUniqueConstraint: UniqueConstraint { // public MyUniqueConstraint(DataColumn col, bool pk): base(col,pk){} // string _myval = ""; // public override string ConstraintName { // get{ // return _myval; // return base.ConstraintName; // } // set{ // Console.WriteLine("NameSet = " + value); // base.ConstraintName = value; // _myval = value; // } // } // } [TestFixture] public class ConstraintTest : Assertion { private DataTable _table; private Constraint _constraint1; private Constraint _constraint2; [SetUp] public void GetReady() { //Setup DataTable _table = new DataTable("TestTable"); _table.Columns.Add("Col1",typeof(int)); _table.Columns.Add("Col2",typeof(int)); //Use UniqueConstraint to test Constraint Base Class _constraint1 = new UniqueConstraint(_table.Columns[0],false); _constraint2 = new UniqueConstraint(_table.Columns[1],false); // not sure why this is needed since a new _table was just created // for us, but this Clear() keeps the tests from throwing // an exception when the Add() is called. _table.Constraints.Clear(); } [Test] public void SetConstraintNameNullOrEmptyExceptions() { bool exceptionCaught = false; string name = null; _table.Constraints.Add (_constraint1); for (int i = 0; i <= 1; i++) { exceptionCaught = false; if (0 == i) name = null; if (1 == i) name = String.Empty; try { //Next line should throw ArgumentException //Because ConstraintName can't be set to null //or empty while the constraint is part of the //collection _constraint1.ConstraintName = name; } catch (ArgumentException){ exceptionCaught = true; } catch { Fail("Wrong exception type thrown."); } Assert("Failed to throw exception.", true == exceptionCaught); } } [Test] [ExpectedException (typeof (DuplicateNameException))] public void SetConstraintNameDuplicateException () { _constraint1.ConstraintName = "Dog"; _constraint2.ConstraintName = "Cat"; _table.Constraints.Add(_constraint1); _table.Constraints.Add(_constraint2); //Should throw DuplicateNameException _constraint2.ConstraintName = "Dog"; } [Test] public void ToStringTest() { _constraint1.ConstraintName = "Test"; Assert("ToString is the same as constraint name.", _constraint1.ConstraintName.CompareTo( _constraint1.ToString()) == 0); _constraint1.ConstraintName = null; AssertNotNull("ToString should return empty.",_constraint1.ToString()); } [Test] public void GetExtendedProperties() { PropertyCollection col = _constraint1.ExtendedProperties as PropertyCollection; AssertNotNull("ExtendedProperties returned null or didn't " + "return the correct type", col); } } }