1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
4 from turbogears import controllers, expose, redirect
5 from turbogears import validate, flash, error_handler
6 from turbogears import validators as V
7 from turbogears import widgets as W
8 from turbogears import identity
9 from turbogears import paginate
10 from docutils.core import publish_parts
11 from sercom.subcontrollers import validate as val
12 from sercom.model import CasoDePrueba, Enunciado
17 name = 'caso de prueba'
18 namepl = 'casos de prueba'
22 fknamepl = fkname + 's'
26 def validate_fk(data):
27 fk = data.get(fkname + 'ID', None)
33 flash(_(u'No se pudo crear el nuevo %s porque el %s con '
34 'identificador %d no existe.' % (name, fkname, fk)))
35 raise redirect('new', **data)
37 flash(_(u'No se pudo crear el nuevo %s porque el %s con '
38 'identificador %d no existe.' % (name, fkname, fk)))
39 raise redirect('new', **data)
40 data.pop(fkname + 'ID', None)
45 return val.validate_get(cls, name, id)
47 def validate_set(id, data):
49 return val.validate_set(cls, name, id, data)
51 def validate_new(data):
53 return val.validate_new(cls, name, data)
56 return val.validate_del(cls, name, id)
60 class CasoDePruebaForm(W.TableForm):
61 class Fields(W.WidgetsList):
62 enunciadoID = W.HiddenField()
63 nombre = W.TextField(label=_(u'Nombre'), validator=V.UnicodeString(min=3, max=255, strip=True))
64 comando = W.TextField(label=_(u'Comando'), validator=V.UnicodeString(min=3, max=255, strip=True))
65 descripcion = W.TextField(label=_(u'Descripcion'), validator=V.UnicodeString(min=3, max=255, strip=True))
66 retorno = W.TextField(label=_(u'Retorno'), help_text=u"Codigo de retorno esperado",validator=V.Int(if_empty=0))
67 max_tiempo_cpu = W.TextField(label=_(u'CPU'), help_text=u"Maximo tiempo de CPU que puede utilizar [seg]",validator=V.Int())
68 max_memoria = W.TextField(label=_(u'Memoria'), help_text=u"Maximo cantidad de memoria que puede utilizar [MB]",validator=V.Int())
69 max_tam_archivo = W.TextField(label=_(u'Tam. Archivo'), help_text=u"Maximo tamanio de archivo a crear [MB]",validator=V.Int())
70 max_cant_archivos = W.TextField(label=_(u'Archivos'),validator=V.Int())
71 max_cant_procesos = W.TextField(label=_(u'Procesos'),validator=V.Int())
72 max_locks_memoria = W.TextField(label=_(u'Mem. Locks'),validator=V.Int())
73 terminar_si_falla = W.CheckBox(label=_(u'Terminar si falla'), default=1, validator=V.Bool(if_empty=1))
74 rechazar_si_falla = W.CheckBox(label=_(u'Rechazar si falla'), default=1, validator=V.Bool(if_empty=1))
75 publico = W.CheckBox(label=_(u'Es público?'), default=1, validator=V.Bool(if_empty=1))
76 archivos_entrada = W.FileField(label=_(u'Archivos Entrada'))
77 archivos_a_comparar = W.FileField(label=_(u'Archivos a Comparar'))
78 archivos_guardar = W.TextField(label=_(u'Archivos a Guardar'))
79 activo = W.CheckBox(label=_(u'Activo'), default=1, validator=V.Bool(if_empty=1))
81 javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
83 form = CasoDePruebaForm()
88 class CasoDePruebaController(controllers.Controller, identity.SecureResource):
89 """Basic model admin interface"""
90 require = identity.has_permission('admin')
92 @expose(template='kid:%s.templates.list' % __name__)
93 @validate(validators=dict(enunciado=V.Int))
95 def list(self, enunciado):
96 """List records in model"""
97 r = cls.selectBy(enunciadoID=enunciado)
98 return dict(records=r, name=name, namepl=namepl, enunciado=enunciado)
100 @expose(template='kid:%s.templates.new' % __name__)
101 def new(self, enunciadoID=0, **kw):
102 """Create new records in model"""
103 form.fields[0].attrs['value'] = enunciadoID or kw['enunciadoID']
104 return dict(name=name, namepl=namepl, form=form, values=kw, enunciado=int(enunciadoID))
109 def create(self, **kw):
110 """Save or create record to model"""
111 t = Enunciado.get(kw['enunciadoID'])
112 del(kw['enunciadoID'])
113 if kw['archivos_entrada'].filename:
114 kw['archivos_entrada'] = kw['archivos_entrada'].file.read()
116 kw['archivos_entrada'] = None
117 if kw['archivos_a_comparar'].filename:
118 kw['archivos_a_comparar'] = kw['archivos_a_comparar'].file.read()
120 kw['archivos_a_comparar'] = None
121 # TODO : Hacer ventanita mas amigable para cargar esto.
123 kw['archivos_a_guardar'] = tuple(kw['archivos_guardar'].split(','))
124 except AttributeError:
126 del(kw['archivos_guardar'])
127 nombre = kw['nombre'];
129 t.add_caso_de_prueba(nombre, **kw)
130 flash(_(u'Se creó un nuevo %s.') % name)
131 raise redirect('list/%d' % t.id)
133 @expose(template='kid:%s.templates.edit' % __name__)
134 def edit(self, id, **kw):
135 """Edit record in model"""
137 r.archivos_guardar = ",".join(r.archivos_a_guardar)
138 form.fields[0].attrs['value'] = r.enunciado.id
139 return dict(name=name, namepl=namepl, record=r, form=form)
144 def update(self, id, **kw):
145 """Save or create record to model"""
146 if kw['archivos_entrada'].filename:
147 kw['archivos_entrada'] = kw['archivos_entrada'].file.read()
149 kw['archivos_entrada'] = None
150 if kw['archivos_a_comparar'].filename:
151 kw['archivos_a_comparar'] = kw['archivos_a_comparar'].file.read()
153 kw['archivos_a_comparar'] = None
154 # TODO : Hacer ventanita mas amigable para cargar esto.
156 kw['archivos_a_guardar'] = tuple(kw['archivos_guardar'].split(','))
157 except AttributeError:
159 del(kw['archivos_guardar'])
160 r = validate_set(id, kw)
161 flash(_(u'El %s fue actualizado.') % name)
162 raise redirect('../list/%d' % r.enunciado.id)
164 @expose(template='kid:%s.templates.show' % __name__)
165 def show(self, id, **kw):
166 """Show record in model"""
168 if r.descripcion is None:
171 r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
172 return dict(name=name, namepl=namepl, record=r)
175 def delete(self, enunciado, id):
176 """Destroy record in model"""
178 flash(_(u'El %s fue eliminado permanentemente.') % name)
179 raise redirect('../../list/%d' % int(enunciado))