]> git.llucax.com Git - software/sercom.git/commitdiff
Agregar ABM de casos de prueba.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 12 Feb 2007 04:16:55 +0000 (04:16 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 12 Feb 2007 04:16:55 +0000 (04:16 +0000)
sercom/controllers.py
sercom/subcontrollers/__init__.py
sercom/subcontrollers/caso_de_prueba/__init__.py [new file with mode: 0644]
sercom/subcontrollers/caso_de_prueba/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/caso_de_prueba/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/caso_de_prueba/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/caso_de_prueba/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/caso_de_prueba/templates/show.kid [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/list.kid

index abc3767bed9123a09942fb81bb1c1a9d9b742fdf..88880c5aeedd78579addaf26b342135086c0e876 100644 (file)
@@ -76,8 +76,11 @@ class Root(controllers.RootController):
         raise redirect('/')
 
     docente = DocenteController()
         raise redirect('/')
 
     docente = DocenteController()
+
     enunciado = EnunciadoController()
 
     enunciado = EnunciadoController()
 
+    caso_de_prueba = CasoDePruebaController()
+
 #{{{ Agrega summarize a namespace tg de KID
 def summarize(text, size, concat=True, continuation='...'):
     """Summarize a string if it's length is greater than a specified size. This
 #{{{ Agrega summarize a namespace tg de KID
 def summarize(text, size, concat=True, continuation='...'):
     """Summarize a string if it's length is greater than a specified size. This
index 3ac9677ae14c6817d5094e3189c7bf125c18184e..0ddaf86aeaa45816b5a3cbc3226267d5023f0b6e 100644 (file)
@@ -1,2 +1,3 @@
 from docente import DocenteController
 from enunciado import EnunciadoController
 from docente import DocenteController
 from enunciado import EnunciadoController
+from caso_de_prueba import CasoDePruebaController
diff --git a/sercom/subcontrollers/caso_de_prueba/__init__.py b/sercom/subcontrollers/caso_de_prueba/__init__.py
new file mode 100644 (file)
index 0000000..f91397d
--- /dev/null
@@ -0,0 +1,134 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 :
+
+from turbogears import controllers, expose, redirect
+from turbogears import validate, validators, flash, error_handler
+from turbogears.widgets import *
+from turbogears import identity
+from turbogears import paginate
+from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+from sercom.model import CasoDePrueba, Enunciado
+
+cls = CasoDePrueba
+name = 'caso de prueba'
+namepl = 'casos de prueba'
+
+fkcls = Enunciado
+fkname = 'enunciado'
+fknamepl = fkname + 's'
+
+def validate_fk(data):
+    fk = data.get(fkname + 'ID', None)
+    if fk == 0: fk = None
+    if fk is not None:
+        try:
+            fk = fkcls.get(fk)
+        except LookupError:
+            raise redirect('new', tg_flash=_(u'No se pudo crear el nuevo ' \
+                '%s porque el %s con identificador %d no existe.'
+                    % (name, fkname, fk)), **data)
+    data.pop(fkname + 'ID', None)
+    data[fkname] = fk
+    return fk
+
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    validate_fk(data)
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    validate_fk(data)
+    return val.validate_new(cls, name, data)
+
+def get_options():
+    return [(0, _(u'<<General>>'))] + [(fk.id, fk.shortrepr())
+        for fk in fkcls.select()]
+
+form = TableForm(fields=[
+    TextField(name='nombre', label=_(u'Nombre'),
+        help_text=_(u'Requerido y único.'),
+        validator=validators.UnicodeString(min=5, max=60, strip=True)),
+    SingleSelectField(name=fkname+'ID', label=_(fkname.capitalize()),
+        options=get_options, validator=validators.Int(not_empty=False)),
+    TextField(name='descripcion', label=_(u'Descripción'),
+        validator=validators.UnicodeString(not_empty=False, max=255, strip=True)),
+    TextField(name='retorno', label=_(u'Código de retorno'),
+        validator=validators.Int(not_empty=False, strip=True)),
+    TextField(name='tiempo_cpu', label=_(u'Tiempo de CPU'),
+        validator=validators.Number(not_empty=False, strip=True)),
+])
+
+class CasoDePruebaController(controllers.Controller, identity.SecureResource):
+    """Basic model admin interface"""
+    require = identity.has_permission('admin')
+
+    @expose()
+    def default(self, tg_errors=None):
+        """handle non exist urls"""
+        raise redirect('list')
+
+    @expose()
+    def index(self):
+        raise redirect('list')
+
+    @expose(template='kid:%s.templates.list' % __name__)
+    @validate(validators=dict(enunciadoID=validators.Int))
+    @paginate('records')
+    def list(self, enunciadoID=None, tg_flash=None):
+        """List records in model"""
+        if enunciadoID is None:
+            r = cls.select()
+        else:
+            r = cls.selectBy(enunciadoID=enunciadoID)
+        return dict(records=r, name=name, namepl=namepl, tg_flash=tg_flash)
+
+    @expose(template='kid:%s.templates.new' % __name__)
+    def new(self, **kw):
+        """Create new records in model"""
+        f = kw.get('tg_flash', None)
+        return dict(name=name, namepl=namepl, form=form, tg_flash=f, values=kw)
+
+    @validate(form=form)
+    @error_handler(new)
+    @expose()
+    def create(self, **kw):
+        """Save or create record to model"""
+        validate_new(kw)
+        raise redirect('list', tg_flash=_(u'Se creó un nuevo %s.') % name)
+
+    @expose(template='kid:%s.templates.edit' % __name__)
+    def edit(self, id, **kw):
+        """Edit record in model"""
+        r = validate_get(id)
+        return dict(name=name, namepl=namepl, record=r, form=form,
+            tg_flash=kw.get('tg_flash', None))
+
+    @validate(form=form)
+    @error_handler(edit)
+    @expose()
+    def update(self, id, **kw):
+        """Save or create record to model"""
+        r = validate_set(id, kw)
+        raise redirect('../list',
+            tg_flash=_(u'El %s fue actualizado.') % name)
+
+    @expose(template='kid:%s.templates.show' % __name__)
+    def show(self, id, **kw):
+        """Show record in model"""
+        r = validate_get(id)
+        if r.descripcion is None:
+            r.desc = ''
+        else:
+            r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
+        return dict(name=name, namepl=namepl, record=r)
+
+    @expose()
+    def delete(self, id):
+        """Destroy record in model"""
+        r = validate_get(id)
+        r.destroySelf()
+        raise redirect('../list',
+            tg_flash=_(u'El %s fue eliminado permanentemente.') % name)
+
diff --git a/sercom/subcontrollers/caso_de_prueba/templates/__init__.py b/sercom/subcontrollers/caso_de_prueba/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/caso_de_prueba/templates/edit.kid b/sercom/subcontrollers/caso_de_prueba/templates/edit.kid
new file mode 100644 (file)
index 0000000..a8a5aec
--- /dev/null
@@ -0,0 +1,20 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>edit</title>
+</head>
+<body>
+
+<h1>Modificación de <span py:replace="name">Objeto</span></h1>
+
+<div py:replace="form(value=record, action=tg.url('/caso_de_prueba/update/%d' % record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/caso_de_prueba/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/caso_de_prueba/list')}">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/caso_de_prueba/templates/list.kid b/sercom/subcontrollers/caso_de_prueba/templates/list.kid
new file mode 100644 (file)
index 0000000..576872f
--- /dev/null
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>list</title>
+</head>
+<body>
+
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+
+<table>
+    <tr>
+        <th>Nombre</th>
+        <th>Enunciado</th>
+        <th>Descripción</th>
+        <th title="Código de retorno">RET</th>
+        <th title="Tiempo de CPU">CPU</th>
+        <th>Operaciones</th>
+    </tr>
+    <tr py:for="record in records">
+        <td><a href="${tg.url('/caso_de_prueba/show/%d'% record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
+        <td><a py:if="record.enunciadoID is not None"
+                href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
+                    py:replace="tg.summarize(record.enunciado.shortrepr(), 30)">enunciado</span></a></td>
+        <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
+        <td><span py:replace="record.retorno">retorno</span></td>
+        <td><span py:replace="record.tiempo_cpu">tiempo de cpu</span></td>
+        <td><a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a>
+            <a href="${tg.url('/caso_de_prueba/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/caso_de_prueba/new')}">Agregar</a>
+
+<div py:for="page in tg.paginate.pages">
+    <a py:if="page != tg.paginate.current_page"
+        href="${tg.paginate.get_href(page)}">${page}</a>
+    <b py:if="page == tg.paginate.current_page">${page}</b>
+</div>
+
+</body>
+</html>
+
+<!-- vim: set et sw=4 sts=4 : -->
diff --git a/sercom/subcontrollers/caso_de_prueba/templates/new.kid b/sercom/subcontrollers/caso_de_prueba/templates/new.kid
new file mode 100644 (file)
index 0000000..6a05bc7
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>new</title>
+</head>
+<body>
+
+<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
+
+<p py:replace="form(action=tg.url('/caso_de_prueba/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/caso_de_prueba/list')}">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/caso_de_prueba/templates/show.kid b/sercom/subcontrollers/caso_de_prueba/templates/show.kid
new file mode 100644 (file)
index 0000000..bafecc1
--- /dev/null
@@ -0,0 +1,48 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>show</title>
+</head>
+<body>
+
+<table>
+    <tr>
+        <th>Nombre:</th>
+        <td><span py:replace="record.nombre">nombre</span></td>
+    </tr>
+    <tr>
+        <th>Enunciado:</th>
+       <td><a py:if="record.enunciadoID is not None"
+                       href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
+                               py:replace="record.enunciado.shortrepr()">enunciado</span></a></td>
+    </tr>
+    <tr>
+        <th>Descripción:</th>
+       <td><span py:replace="XML(record.desc)">descripcion</span></td>
+    </tr>
+    <tr>
+        <th>Código de retorno:</th>
+       <td><span py:replace="record.retorno">retorno</span></td>
+    </tr>
+    <tr>
+        <th>Tiempo de CPU:</th>
+       <td><span py:replace="record.tiempo_cpu">tiempo_cpu</span></td>
+    </tr>
+    <tr>
+        <th>Parámetros:</th>
+       <td>
+               <span py:for="p in record.parametros">
+                       <span py:replace="p">parámetro</span>
+               </span>
+       </td>
+    </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/caso_de_prueba/list')}">Volver</a>
+
+</body>
+</html>
index 5bd5c2f6302442f77536172e8287c3223d33f91f..35dedf76a52b2bd7b854bdc400b5fd52e6f913e6 100644 (file)
@@ -14,6 +14,7 @@
         <th>Nombre</th>
         <th>Descripción</th>
         <th>Autor</th>
         <th>Nombre</th>
         <th>Descripción</th>
         <th>Autor</th>
+        <th title="Casos de Prueba">CP</th>
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
         <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
@@ -22,6 +23,9 @@
         <td><a py:if="record.autorID is not None"
                 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
         <td><a py:if="record.autorID is not None"
                 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
                     py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
+        <td><a py:if="len(record.casos_de_prueba)"
+                href="${tg.url('/caso_de_prueba/list/%d' % record.id)}"><span
+                    py:replace="len(record.casos_de_prueba)">cant</span></a></td>
         <td><a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/enunciado/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
     </tr>
         <td><a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/enunciado/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
     </tr>