#region License
/**
* Ingenious MVC : An MVC framework for .NET 2.0
* Copyright (C) 2006, JDP Group
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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 GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors: - Kent Boogaart (kentcb@internode.on.net)
*/
#endregion
using System;
using NUnit.Framework;
using Ingenious.Mvc.Configuration;
using Ingenious.Mvc.UnitTest.MockTypes;
namespace Ingenious.Mvc.UnitTest.Configuration{
/// <summary>
/// Unit tests the <see cref="NavigatorInfo"/> type.
/// </summary>
public sealed class NavigatorInfoTest : UnitTestBase
{
private NavigatorInfo _navigatorInfo;
private Id<INavigator> _id;
protected override void SetUp()
{
_id = "n";
_navigatorInfo = new NavigatorInfo(_id);
}
[Test]
[ExpectedException(typeof(IdException), "An empty ID of type Ingenious.Mvc.INavigator was illegally provided for argument 'id'.")]
public void TestIdEmpty()
{
_navigatorInfo = new NavigatorInfo(Id<INavigator>.Empty);
}
[Test]
public void TestStringConstructor()
{
_navigatorInfo = new NavigatorInfo("test");
Assert.AreEqual("test", _navigatorInfo.Id.ToString());
}
[Test]
public void TestEnumConstructor()
{
_navigatorInfo = new NavigatorInfo(DayOfWeek.Friday);
Id<INavigator> id = DayOfWeek.Friday;
Assert.AreEqual(id, _navigatorInfo.Id);
}
[Test]
public void TestInitialisation()
{
Assert.AreEqual(_id, _navigatorInfo.Id);
Assert.IsNull(_navigatorInfo.Type);
}
[Test]
[ExpectedException(typeof(ConfigurationException), "The specified type must implement the 'Ingenious.Mvc.INavigator' interface.")]
public void TestTypeDoesntImplementINavigator()
{
_navigatorInfo.Type = typeof(MockController);
}
[Test]
public void TestTypeValid()
{
_navigatorInfo.Type = typeof(MockNavigator);
Assert.AreEqual(typeof(MockNavigator), _navigatorInfo.Type);
}
}
}
|