For those who just want code:Â https://github.com/SuavePirate/Xamarin.OnionÂ
Donât forget:
- Part 1 on the general project structure:Â Onionizing Xamarin Part 1
- Part 2 on our Domain and Application layers:Â Onionizing Xamarin Part 2
- Part 3 on our Infrastructure layer:Â Onionizing Xamarin Part 3
- Part 4 on our Client layer and Xamarin.Forms implementation:Â Onionizing Xamarin Part 4
- Part 5 on creating custom Platform specific logic:Â Onionizing Xamarin Part 5
A strong and scale-able architecture is important in applications, especially in Mobile Apps. APIs and SDKs are constantly changing, new technology is constantly released, and team sizes are always changing. A solid Onion Architecture can save a development team a lot of time by making it simple to change service implementations, restrict access to certain areas, making logic flow easy to follow, and making testing isolated blocks of code easier.
Some of the important topics this will cover:
- Separation of Concerns
- Inversion of Control
- Dependency Injection
- Model-View-ViewModel
- Testability
- Why all these things are important
Part 6
In this section, we will talk briefly about building useful tests for our solution, and why the Onion pattern makes it easy to break tests out into individual layers.
In this example, we will add a test project whose purpose it to just test the Business layer within our Infrastructure.
Tests.Business
Let’s start with by adding a nUnit project to our solution, or by adding the nuget package to a class library. Xamarin has great documentation on this:Â https://developer.xamarin.com/guides/cross-platform/application_fundamentals/installing-nunit-using-nuget/
In our project, we also want to install MvvmLight, just like in our Client and Platform layers. We will also need to add references to our Domain.Models, Domain.Interfaces, Application.Models, Application.Interfaces, and Infrastructure.Business projects.
In order to test our Infrastructure.Business project, we will need to create mock versions of our Data project. In our test project, we can create Repository implementations with mock data for each set that we need. For example:
MockGenericRepository.cs
public class MockGenericRepository : IGenericRepository
{
private List _data;
public MockGenericRepository()
{
_data = new List();
}
public void Add(T entity)
{
_data.Add(entity);
}
public void AddRange(IEnumerable entities)
{
_data.AddRange(entities);
}
public Task CommitAsync()
{
return Task.FromResult(false); // we don't need to explicitly save changes
}
public Task FindAsync(Func<T, bool> predicate)
{
var entity =_data.Where(predicate).FirstOrDefault();
return Task.FromResult(entity);
}
public Task<IEnumerable> GetAsync(Func<T, bool> predicate)
{
var entities =_data?.Where(predicate);
return Task.FromResult(entities);
}
public void Remove(T entity)
{
_data.Remove(entity);
}
}
and MockUserRepository.cs
public class MockUserRepository : MockGenericRepository, IUserRepository
{
public MockUserRepository()
: base()
{
}
}
Now that we have some mock implementations, we can set up our tests against our Business logic.
UserBusinessTests.cs
public class UserBusinessTest
{
private IUserService _userService;
[SetUp]
public void StartUpIoCÂ ()
{
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);
SimpleIoC.Default.Register<IUserService, UserService>();
SimpleIoC.Default.Register<IUserRepository, MockUserRepository>();
_userService = SimpleIoC.Default.GetInstance();
}
[Test ()]
public async void AddUserTest()
{
var result = await _userService.CreateUserAsync(new NewUser
{
Email = "test@test.com",
FullName = "Testy McTest"
});
Assert.IsNotNull(result.Data);
}
}
Now we can test against any of the business logic in our application with a mock layer. The same practice can be applied to test any other layer in the solution as well. The data layer can be tested by mocking the business layer, and so on.
Conclusion
Looking back at all of the components of our Onion Architecture, one might think, “Wow, that’s a lot of code to do a simple task”. It’s important to remember that this architecture is not for every project. It’s focus is on scalability and testability. If your project has the potential to grow into something quite complicated, with many developers involved, this type of solution might work best for you. However, if you’re working on something quick to get out the door, maybe getting right to the point is easier and best for you.
The best parts about the Onion Architecture are its abilities to make drastic changes to tools or services used, without having to rewrite anything but that components implementation as well as making it easy to test individual layers without affecting the others or using real data. It also allows for closer monitoring and management of the codebase; keeping people from making calls directly from one layer to another. The only thing you have to emphasize is, “Are you adding a reference to another project to get something done? If so, you might be doing it wrong”.
Like this:
Like Loading...