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