#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.Factories;
using Ingenious.Mvc.UnitTest.MockTypes;
namespace Ingenious.Mvc.UnitTest.Factories{
/// <summary>
/// Unit tests the <see cref="DefaultViewFactory"/> class.
/// </summary>
public sealed class DefaultViewFactoryTest : UnitTestBase
{
private IViewFactory _factory;
protected override void SetUp()
{
_factory = DefaultViewFactory.Instance;
}
[Test]
[ExpectedException(typeof(ArgumentNullException))]
public void TestNullView()
{
_factory.Create(null, null, null);
}
[Test]
[ExpectedException(typeof(ArgumentNullException))]
public void TestNullTaskManager()
{
_factory.Create(new ViewInfo("Test"), null, null);
}
[Test]
[ExpectedException(typeof(FactoryException), "There is no type specified for the view with ID 'Test'.")]
public void TestNullType()
{
ViewInfo viewInfo = new ViewInfo("Test");
_factory.Create(viewInfo, CreateTask(), new MockController());
}
[Test]
[ExpectedException(typeof(FactoryException), "The property 'Id' on type 'Ingenious.Mvc.UnitTest.Factories.DefaultViewFactoryTest+NoConstructorNoProperty' is not writable.")]
public void TestNoConstructorNoProperty()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(NoConstructorNoProperty);
_factory.Create(viewInfo, CreateTask(), new MockController());
}
[Test]
public void TestImplementsConstructor()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(ImplementsConstructor);
MockController controller = new MockController();
ImplementsConstructor view = (ImplementsConstructor) _factory.Create(viewInfo, CreateTask(), controller);
Assert.AreEqual(controller, view.Controller);
}
[Test]
public void TestImplementsProperty()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(ImplementsProperty);
MockController controller = new MockController();
ImplementsProperty view = (ImplementsProperty) _factory.Create(viewInfo, CreateTask(), controller);
Assert.AreEqual(controller, view.Controller);
}
[Test]
public void TestConfigurable()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(ConfigurableView);
viewInfo.CustomConfiguration = new object();
MockController controller = new MockController();
ConfigurableView view = (ConfigurableView) _factory.Create(viewInfo, CreateTask(), controller);
Assert.AreEqual(TaskManager, view.Task.Manager);
Assert.AreEqual(controller, view.Controller);
Assert.AreEqual(viewInfo.CustomConfiguration, view.CustomConfiguration);
}
[Test]
public void TestNullController()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(MockView);
MockView view = (MockView) _factory.Create(viewInfo, CreateTask(), null);
Assert.AreEqual(TaskManager, view.Task.Manager);
Assert.IsNull(view.Controller);
}
[Test]
public void TestInitialized()
{
ViewInfo viewInfo = new ViewInfo("Test");
viewInfo.Type = typeof(MockView);
MockController controller = new MockController();
MockView view = (MockView) _factory.Create(viewInfo, CreateTask(), controller);
Assert.AreEqual(TaskManager, view.Task.Manager);
Assert.AreEqual(controller, view.Controller);
Assert.IsTrue(view.Initialized);
}
#region Supporting Types
private sealed class DoesNotImplementIView
{
}
private abstract class BaseView : IView
{
public virtual Id<IView> Id
{
get
{
return Id<IView>.Empty;
}
}
public abstract Task Task
{
get;
}
public abstract IController Controller
{
get;
}
public void Initialize()
{
}
public void SetData(object data)
{
}
public void Deactivate()
{
}
public void Activate()
{
}
}
private abstract class SettableBaseView : IView
{
public abstract Id<IView> Id
{
get;
set;
}
public abstract Task Task
{
get;
set;
}
public abstract IController Controller
{
get;
set;
}
public void Initialize()
{
}
public void SetData(object data)
{
}
public void Deactivate()
{
}
public void Activate()
{
}
}
private sealed class NoConstructorNoProperty : BaseView
{
public override Task Task
{
get
{
return null;
}
}
public override IController Controller
{
get
{
return null;
}
}
public NoConstructorNoProperty()
{
}
}
private sealed class ImplementsConstructor : BaseView
{
private Id<IView> _id;
private Task _task;
private IController _controller;
public override Id<IView> Id
{
get
{
return _id;
}
}
public override Task Task
{
get
{
return _task;
}
}
public override IController Controller
{
get
{
return _controller;
}
}
public ImplementsConstructor(Id<IView> id, Task task, IController controller)
{
_id = id;
_task = task;
_controller = controller;
}
}
private class ImplementsProperty : SettableBaseView
{
private Id<IView> _id;
private Task _task;
private IController _controller;
public override Id<IView> Id
{
get
{
return _id;
}
set
{
_id = value;
}
}
public override Task Task
{
get
{
return _task;
}
set
{
_task = value;
}
}
public override IController Controller
{
get
{
return _controller;
}
set
{
_controller = value;
}
}
}
private sealed class ConfigurableView : ImplementsProperty, ICustomConfigurable
{
private object _customConfiguration;
public object CustomConfiguration
{
get
{
return _customConfiguration;
}
}
public void SetCustomConfiguration(object customConfiguration)
{
_customConfiguration = customConfiguration;
}
}
#endregion
}
}
|