public void ThenObtengoLaNuevaNotaInformativaModificada()
        {
            String titulo = notaCEN.BuscarPorId(notaId).Titulo;

            Assert.AreEqual(titulo, nota.Titulo);
        }
 public void ThenDevuelvoLaNotaInformativaBorrada()
 {
     Assert.IsNull(notaCEN.BuscarPorId(notaId));
 }
Exemple #3
0
        public HttpResponseMessage BuscarPorId(int idNotaInformativa)
        {
            // CAD, CEN, EN, returnValue
            NotaInformativaRESTCAD notaInformativaRESTCAD = null;
            NotaInformativaCEN     notaInformativaCEN     = null;
            NotaInformativaEN      notaInformativaEN      = null;
            NotaInformativaDTOA    returnValue            = null;

            try
            {
                SessionInitializeWithoutTransaction();
                string token = "";
                if (Request.Headers.Authorization != null)
                {
                    token = Request.Headers.Authorization.ToString();
                }
                int id = new UsuarioCEN().CheckToken(token);



                notaInformativaRESTCAD = new NotaInformativaRESTCAD(session);
                notaInformativaCEN     = new NotaInformativaCEN(notaInformativaRESTCAD);

                // Data
                notaInformativaEN = notaInformativaCEN.BuscarPorId(idNotaInformativa);

                // Convert return
                if (notaInformativaEN != null)
                {
                    returnValue = NotaInformativaAssembler.Convert(notaInformativaEN, session);
                }
            }

            catch (Exception e)
            {
                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 404 - Not found
            if (returnValue == null)
            {
                return(this.Request.CreateResponse(HttpStatusCode.NotFound));
            }
            // Return 200 - OK
            else
            {
                return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue));
            }
        }
Exemple #4
0
 public void ThenObtengoLaNuevaNotaInformativa()
 {
     Assert.IsNotNull(notaCEN.BuscarPorId(notaId));
 }