Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/TestBase.cs @ 122:17531db40d4e
Refactoring de la generación de mensajes en twitter
author | nelopauselli |
---|---|
date | Tue, 28 Jun 2011 19:25:22 -0300 |
parents | 7a2eeb9e9bf9 |
children | 62791999ad01 |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; using AltNetHispano.Agendas.Domain.Services; using AltNetHispano.Agendas.Repositories.Memory; using Moq; using NUnit.Framework; namespace AltNetHispano.Agendas.Tests { public class TestBase { protected static IEventoRepository DefaultEventoRepository { get { return new EventoRepository(); } } protected static IPersonaRepository DefaultPersonaRepository { get { return new PersonaRepository(); } } [SetUp] public void LimpiarEventos() { EventoRepository.Clear(); } [SetUp] public void LimpiarPonentes() { PersonaRepository.Clear(); SetCurrentUser("nelopauselli", "Nelo Pauselli"); } protected static void SetCurrentUser(string username, string nombre) { const IdentityProviderEnum identityProvider = IdentityProviderEnum.Twitter; string logonName = null; if (username != null) logonName = Identification.Map[(int) IdentityProviderEnum.Twitter] + username; var seguridad = new Mock<ISeguridad>(); seguridad.Setup(s => s.GetUserName()).Returns(logonName); IPersonaRepository personaRepository = new PersonaRepository(); var persona = new Persona(nombre); persona.AddCuenta(new Cuenta(identityProvider, username)); persona.Twitter = username; personaRepository.Save(persona); IdentityContext.Init(seguridad.Object, personaRepository); } } }