Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Tests/PulicarTests.cs @ 24:41b283d27e3e
Ponentes como entidad
Agenda no es una entidad persistente (por ahora)
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 07:49:53 -0300 |
parents | a85674a7aa7a |
children | 65bbf1ab2b24 |
rev | line source |
---|---|
20 | 1 using System; |
2 using System.Linq; | |
3 using AltNetHispano.Agendas.Domain; | |
4 using AltNetHispano.Agendas.Domain.Repositories; | |
5 using Moq; | |
6 using NUnit.Framework; | |
7 | |
8 namespace AltNetHispano.Agendas.Tests | |
9 { | |
10 [TestFixture] | |
11 public class PulicarTests : TestBase | |
12 { | |
13 [Test] | |
14 public void Publicar_van_con_usuario_autenticado() | |
15 { | |
16 var publicador = new Mock<IPublicador>(); | |
17 | |
24 | 18 var agenda = new Agenda(publicador.Object, null, SeguridadServiceDefault, DefaultEventoRepository, DefaultPonenteRepository); |
20 | 19 |
24 | 20 agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now); |
20 | 21 Assert.AreEqual(1, agenda.GetEventosPublicados().Count); |
22 | |
23 publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
24 } | |
25 | |
26 [Test] | |
27 public void Publicar_van_sin_usuario_autenticado() { | |
28 var seguridad = new Mock<ISeguridad>(); | |
29 seguridad.Setup(s => s.GetPrincipal()).Returns(SeguridadObjectMother.GetGenericPrincipalSinAutenticar()); | |
30 | |
31 var publicador = new Mock<IPublicador>(); | |
32 var repository = new Mock<IEventoRepository>(); | |
33 | |
24 | 34 var agenda = new Agenda(publicador.Object, null, seguridad.Object, repository.Object, DefaultPonenteRepository); |
20 | 35 |
24 | 36 Assert.Throws<UsuarioNoAutenticadoException>(() => agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now)); |
20 | 37 |
38 publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(0)); | |
39 repository.Verify(p => p.Save(It.IsAny<Evento>()), Times.Exactly(0)); | |
40 } | |
41 | |
42 [Test] | |
43 public void Publicar_van_sin_servicio_de_seguridad() | |
44 { | |
45 var publicador = new Mock<IPublicador>(); | |
46 var repository = new Mock<IEventoRepository>(); | |
47 | |
24 | 48 var agenda = new Agenda(publicador.Object, null, null, repository.Object, DefaultPonenteRepository); |
20 | 49 |
24 | 50 Assert.Throws<UsuarioNoAutenticadoException>(() => agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now)); |
20 | 51 repository.Verify(p => p.Save(It.IsAny<Evento>()), Times.Exactly(0)); |
52 } | |
53 | |
54 [Test] | |
55 public void Error_al_publicar_van() | |
56 { | |
57 var publicador = new Mock<IPublicador>(); | |
58 var repository = new Mock<IEventoRepository>(); | |
59 | |
60 publicador.Setup(p => p.Publicar(It.IsAny<Evento>())).Throws(new Exception("Error intencional")); | |
61 | |
24 | 62 var agenda = new Agenda(publicador.Object, null, SeguridadServiceDefault, repository.Object, DefaultPonenteRepository); |
20 | 63 |
24 | 64 Assert.Throws<Exception>(() => agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now)); |
20 | 65 Assert.AreEqual(0, agenda.GetEventosPublicados().Count); |
66 | |
67 publicador.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
68 repository.Verify(p => p.Save(It.IsAny<Evento>()), Times.Exactly(0)); | |
69 } | |
70 | |
71 [Test] | |
72 public void Publicar_van_multiples_publicadores() | |
73 { | |
74 var publicador1 = new Mock<IPublicador>(); | |
75 var publicador2 = new Mock<IPublicador>(); | |
76 | |
77 var repository = new Mock<IEventoRepository>(); | |
78 | |
24 | 79 var agenda = new Agenda(new CompositePublicador(new[] { publicador1.Object, publicador2.Object }), null, SeguridadServiceDefault, repository.Object, DefaultPonenteRepository); |
20 | 80 |
24 | 81 agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now); |
20 | 82 |
83 publicador1.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
84 publicador2.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
85 repository.Verify(p => p.Save(It.IsAny<Evento>()), Times.Exactly(1)); | |
86 } | |
87 | |
88 [Test] | |
89 public void Publicar_y_recordar_van() | |
90 { | |
91 var publicador1 = new Mock<IPublicador>(); | |
92 var publicador2 = new Mock<IPublicador>(); | |
93 var recordador1 = new Mock<IRecordador>(); | |
94 | |
24 | 95 var agenda = new Agenda(new CompositePublicador(new[] { publicador1.Object, publicador2.Object }), recordador1.Object, SeguridadServiceDefault, DefaultEventoRepository, DefaultPonenteRepository); |
20 | 96 |
24 | 97 agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now); |
20 | 98 |
24 | 99 var van = agenda.GetEventosPublicados().Single(v => v.Titulo == "Van para publicar"); |
21
43360bf09b1a
unificando criterio de parámetros en Agenda
nelo@MTEySS.neluz.int
parents:
20
diff
changeset
|
100 agenda.Recordar(van.Id); |
20 | 101 |
102 publicador1.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
103 publicador2.Verify(p => p.Publicar(It.IsAny<Evento>()), Times.Exactly(1)); | |
104 recordador1.Verify(r => r.Recordar(It.IsAny<Evento>()), Times.Exactly(1)); | |
105 } | |
106 | |
107 [Test] | |
108 public void Publicar_y_modificar_van() | |
109 { | |
22 | 110 var repository = DefaultEventoRepository; |
20 | 111 |
24 | 112 var agenda = new Agenda(null, null, SeguridadServiceDefault, repository, DefaultPonenteRepository); |
20 | 113 |
24 | 114 agenda.Publicar("Van para publicar", "jjmontes", DateTime.Now); |
20 | 115 |
116 var evento = repository.GetEventosConFecha().First(); | |
117 Assert.AreNotEqual(Guid.Empty, evento.Id); | |
23 | 118 Assert.IsNotNull(evento.Fecha); |
20 | 119 |
120 DateTime fecha = evento.Fecha.Value.AddDays(7); | |
121 agenda.ModificarEvento(evento.Id, "otro titulo", "otro ponente", fecha); | |
122 | |
123 evento = repository.GetEventosConFecha().First(); | |
124 Assert.AreEqual("otro titulo", evento.Titulo); | |
24 | 125 Assert.AreEqual("otro ponente", evento.Ponente.Nombre); |
20 | 126 Assert.AreEqual(fecha, evento.Fecha); |
127 } | |
128 } | |
129 } |