|
|
|
@ -63,8 +63,8 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
{ |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
|
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?>{ idBUs }, true, 1, 15, "", "", null, null); |
|
|
|
|
int count = await epInformationService.GetEPEnCoursCount(new List<long?> { idBUs }, "", null, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?>{ idBUs }, true, 1, 15, "", true,"", null, null); |
|
|
|
|
int count = await epInformationService.GetEPEnCoursCount(new List<long?> { idBUs }, "", true, null, null); |
|
|
|
|
Assert.AreEqual(count, nbElements); |
|
|
|
|
Assert.AreEqual(count, epInformationDTOs.Count()); |
|
|
|
|
foreach(EpInformationDTO ep in epInformationDTOs) |
|
|
|
@ -79,8 +79,8 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
{ |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
|
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1,2 }, true, 1, 15, "", "", null, null); |
|
|
|
|
int count = await epInformationService.GetEPEnCoursCount(new List<long?> { 1, 2 }, "", null, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1,2 }, true, 1, 15, "", true, "", null, null); |
|
|
|
|
int count = await epInformationService.GetEPEnCoursCount(new List<long?> { 1, 2 }, "", true, null, null); |
|
|
|
|
Assert.AreEqual(count, 6); |
|
|
|
|
Assert.AreEqual(count, epInformationDTOs.Count()); |
|
|
|
|
long? bu; |
|
|
|
@ -104,7 +104,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
public async Task GetEpEnCours_TriColonneASC(string tri) |
|
|
|
|
{ |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", tri, null, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", true, tri, null, null); |
|
|
|
|
EpInformationDTO ep1, ep2; |
|
|
|
|
int compare = 0; |
|
|
|
|
for(int i = 0; i < epInformationDTOs.Count()-1; ++i) |
|
|
|
@ -157,7 +157,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
public async Task GetEpEnCours_TriColonneDESC(string tri) |
|
|
|
|
{ |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, false, 1, 15, "", tri, null, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, false, 1, 15, "", true, tri, null, null); |
|
|
|
|
EpInformationDTO ep1, ep2; |
|
|
|
|
int compare = 0; |
|
|
|
|
for (int i = 0; i < epInformationDTOs.Count() - 1; ++i) |
|
|
|
@ -206,7 +206,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
DateTime date = new DateTime(a, m, j); |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
|
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", "", date, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", true, "", date, null); |
|
|
|
|
Assert.AreEqual(epInformationDTOs.Count(), count); |
|
|
|
|
foreach(EpInformationDTO ep in epInformationDTOs) |
|
|
|
|
{ |
|
|
|
@ -222,7 +222,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
{ |
|
|
|
|
DateTime date = new DateTime(a, m, j); IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
|
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", "", null, date); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", true, "", null, date); |
|
|
|
|
Assert.AreEqual(epInformationDTOs.Count(), count); |
|
|
|
|
foreach (EpInformationDTO ep in epInformationDTOs) |
|
|
|
|
{ |
|
|
|
@ -242,7 +242,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
DateTime date2 = new DateTime(a2, m2, j2); |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
|
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", "", date1, date2); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, "", true, "", date1, date2); |
|
|
|
|
Assert.AreEqual(epInformationDTOs.Count(), count); |
|
|
|
|
foreach (EpInformationDTO ep in epInformationDTOs) |
|
|
|
|
{ |
|
|
|
@ -263,7 +263,7 @@ namespace EPAServeur.Tests.Services |
|
|
|
|
public async Task GetEpEnCours_texte(string texte, int count) |
|
|
|
|
{ |
|
|
|
|
IEpInformationService epInformationService = new EpInformationService(context, collaborateurService, transformDTO); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, texte, "", null, null); |
|
|
|
|
IEnumerable<EpInformationDTO> epInformationDTOs = await epInformationService.GetEPEnCours(new List<long?> { 1, 2 }, true, 1, 15, texte, true, "", null, null); |
|
|
|
|
Assert.AreEqual(count, epInformationDTOs.Count()); |
|
|
|
|
foreach (EpInformationDTO ep in epInformationDTOs) |
|
|
|
|
{ |
|
|
|
|