I'm starting with MVC3 and want to use some flexible architecture, so I've read tens of blogs, a book (Pro ASP.NET MVC 3), read about SOLID principles and finally got to an application structure I like (or at least I think so, so far, because I haven't built anything on it yet):

enter image description here

In this structure:

  • Domain holds the POCO classes and defines the service interfaces
  • Services implements service interfaces and defines repositories interfaces
  • Data implements repositories interfaces
  • WebUI and Domain use Services
  • Services use Repositories
  • WebUI, Services and Data depend on Domain for POCO classes

The main reason for Domain using Services is to validate unique keys on the Validate methods of POCO (IValidatable) classes.

I'm starting to build a reference application with this structure but I have faced, so far, two problems:

  1. I'm using a Data.Tests project with unit tests for the repositories, but haven't found a way to inject (using Ninject) a implementation of the service (in the constructor or otherwise) on the model, so the Validate method can call the CheckUniqueKey on the service.

  2. I haven't found any reference about hooking up Ninject to a TEST project (lots of for the WebUI project).

What I'm trying to achive here is beeing able to switch from EF to something else like DAPPER, by just changing the DATA assembly.

UPDATE

Right now (as of 09-AUG-2011) Ninject is working but I think I'm missing something.

I have a CustomerRepository with two constructors:

public class CustomerRepository : BaseRepository<Customer>, ICustomerRepository
{
    // The repository usually receives a DbContext
    public CustomerRepository(RefAppContext context)
        : base(context)
    {
    }

    // If we don't receive a DbContext then we create the repository with a defaulte one
    public CustomerRepository()
        : base(RefApp.DbContext())
    {
    }

    ...
}

On the TestInitialize:

// These are for testing the Repository against a test database

[TestInitialize()]
public void TestInitialize()
{
    // Context used for tests
    this.context = new RefAppContext();

    // This is just to make sure Ninject is working, 
    // would have used: repository = new CustomerRepository(context);

    this.kernel = NinjectMVC3.CreateKernel();

    this.kernel.Rebind<ICustomerRepository>().To<CustomerRepository>().WithConstructorArgument("context", context);

    this.repository = kernel.Get<ICustomerRepository>();

}

On the Customer class:

public class Customer : IValidatableObject 
{
    ...

    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    {
        // I want to replace this with a "magic" call to ninject
        CustomerRepository rep = new CustomerRepository();

        Customer customer = rep.GetDupReferenceCustomer(this);

        if (customer != null)
            yield return new ValidationResult("Customer \"" + customer.Name + "\" has the same reference, can't duplicate", new [] { "Reference" });
    }

    ...
}

What would be the best way to use Ninject in this scenario?

Any help will be highly appreciated.

ANSWER, SORT OF

I'll consider this question as aswered so far. I could get Ninject working, sort of, but it looks like achiving the Dependency Inversion Principle (DIP) of SOLID is going to take some more time.

In that respect, I had to lump together Domain, Services and Data, I'll create another question some other time and keep the project going the usual way for now.

Thanks everybody.

link|improve this question
1  
Suggest taking out Ninject reference and change it to DI as the answer won't (and shouldnt change based on your specific container). I'd also add an architecture or find a few more tags. – Ruben Bartelink Aug 3 '11 at 5:56
@Ruben you are right, it doesn't sound quite right to use "Ninject" and "application architecture" on the same sentence, it's just in this case I'm trying to solve a problem very specific to Ninject. – Miguel Veloso Aug 3 '11 at 14:21
1  
I'd put the update into a new question as it is a completely other topic that has not a lot in common with the first one. Not a lot of people will read your new problem otherwise. – Remo Gloor Aug 5 '11 at 14:58
@Remo, You're right, besides that I realized I'm trying to do two complex things (for me) at once, son I'll first try to make Ninject work within a single assembly, and then I'll try splitting it out. – Miguel Veloso Aug 5 '11 at 23:23
feedback

1 Answer

up vote 3 down vote accepted

Unit testing should be done without Ninject. Just create an instance of the object under test and inject a mock for every dependency manually.

For Integration Tests you can use the kernel inclusive all bindings from the application bootstrapper and rebind everything you want to replace by a Mock. e.g. Replace the Session binding by one that uses an in memory data storage instead of a real database.

link|improve this answer
Right now I'm doing integration testing, as I'm testing the repositories accessing the actual DB. The use of Ninject is to be able to eventually replace the services layer with someting else. In this case the POCO.Validate method is using a Service method defined in an interface. The point is, e.g. how do I resolve the service interface in the Customer.Validate method so I can use the CustomerServices.FindCustomerByEmail(Email) method to check if there's another customer with the same email. – Miguel Veloso Aug 3 '11 at 14:15
@Miguel Veloso: Updated Integration Testing – Remo Gloor Aug 3 '11 at 14:48
where do I place the application bootstrapper? There is no Global.asax in a Test project! – Miguel Veloso Aug 3 '11 at 15:40
Into the test setup. Call this.kernel = MyProject.App_Start.NinjectMVC3.CreateKernel(); this.kernel.Rebind<ISomething>.ToConstant(new Mock<ISomething>()); – Remo Gloor Aug 3 '11 at 15:51
I tried this on [ClassInitialize()] but VS said I couldn't use "this" in a static method, and on the [TestInitialize()] and there the problem was the kernel member. Besides, I found several roadblocks, I updates the original question. – Miguel Veloso Aug 5 '11 at 4:14
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.