#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="ViewInfo"/> type.
/// </summary>
public sealed class ViewInfoTest : UnitTestBase
{
private ViewInfo _viewInfo;
private Id<IView> _id;
protected override void SetUp()
{
_id = "v";
_viewInfo = new ViewInfo(_id);
}
[Test]
[ExpectedException(typeof(IdException), "An empty ID of type Ingenious.Mvc.IView was illegally provided for argument 'id'.")]
public void TestIdEmpty()
{
_viewInfo = new ViewInfo(Id<IView>.Empty);
}
[Test]
public void TestStringConstructor()
{
_viewInfo = new ViewInfo("test");
Assert.AreEqual("test", _viewInfo.Id.ToString());
}
[Test]
public void TestEnumConstructor()
{
_viewInfo = new ViewInfo(DayOfWeek.Friday);
Id<IView> id = DayOfWeek.Friday;
Assert.AreEqual(id, _viewInfo.Id);
}
[Test]
public void TestInitialisation()
{
Assert.AreEqual(_id, _viewInfo.Id);
Assert.IsNull(_viewInfo.Type);
}
[Test]
[ExpectedException(typeof(ConfigurationException), "The specified type must implement the 'Ingenious.Mvc.IView' interface.")]
public void TestTypeDoesntImplementIView()
{
_viewInfo.Type = typeof(MockNavigator);
}
[Test]
public void TestTypeValid()
{
_viewInfo.Type = typeof(MockView);
Assert.AreEqual(typeof(MockView), _viewInfo.Type);
}
}
}
|