]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
No poner fecha de inicio now() por default en Ejecucion.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 13 Mar 2007 18:27:46 +0000 (18:27 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 13 Mar 2007 18:27:46 +0000 (18:27 +0000)
Como Entrega hereda de ejecución, ya no parece lo más natura que inicio tenga
como default la fecha de creación.

sercom/model.py
sercom/tester.py

index 480e19d59cb36361490a4fbf87b8f35e0c531919..a09a0bfc568c9b5735052a08b62f6bf49872e06b 100644 (file)
@@ -741,7 +741,7 @@ class Miembro(SQLObject): #{{{
 
 class Ejecucion(InheritableSQLObject): #{{{
     # Campos
-    inicio          = DateTimeCol(notNone=True, default=DateTimeCol.now)
+    inicio          = DateTimeCol(default=None)
     fin             = DateTimeCol(default=None)
     exito           = IntCol(default=None)
     observaciones   = UnicodeCol(notNone=True, default=u'')
index 69e2f3424c6cfbe21d8f84f2385f708b55ef589c..e278417789cd39d28755eed51f126132214ec7f5 100644 (file)
@@ -288,7 +288,7 @@ def ejecutar_caso_de_prueba(self, path, entrega): #{{{
         entrega.shortrepr())
     tareas = [t for t in entrega.instancia.ejercicio.enunciado.tareas
                 if isinstance(t, TareaPrueba)]
-    prueba = entrega.add_prueba(self)
+    prueba = entrega.add_prueba(self, inicio=datetime.now())
     try:
         try:
             for tarea in tareas:
@@ -319,7 +319,7 @@ Tarea.ejecutar = ejecutar_tarea
 def ejecutar_comando_fuente(self, path, entrega): #{{{
     log.debug(_(u'ComandoFuente.ejecutar(path=%s, entrega=%s)'), path,
         entrega.shortrepr())
-    comando_ejecutado = entrega.add_comando_ejecutado(self) # TODO debería rodear solo la ejecución del comando
+    comando_ejecutado = entrega.add_comando_ejecutado(self)
     basetmp = '/tmp/sercom.tester.fuente' # FIXME TODO /var/run/sercom?
     unzip(self.archivos_entrada, path, # TODO try/except
         {self.STDIN: '%s.%s.stdin' % (basetmp, comando_ejecutado.id)})
@@ -353,6 +353,7 @@ def ejecutar_comando_fuente(self, path, entrega): #{{{
         else:
             options['preexec_fn'].close_stderr = True
     comando = self.comando # FIXME Acá tiene que diferenciarse de ComandoPrueba
+    comando_ejecutado.inicio = datetime.now()
     log.debug(_(u'Ejecutando como root: %s'), comando)
     os.seteuid(0) # Dios! (para chroot)
     os.setegid(0)
@@ -369,7 +370,7 @@ def ejecutar_comando_fuente(self, path, entrega): #{{{
             log.error(_(u'Error en el hijo: %s'), e.child_traceback)
         raise
     proc.wait() #TODO un sleep grande nos caga todo, ver sercom viejo
-    comando_ejecutado.fin = datetime.now() # TODO debería rodear solo la ejecución del comando
+    comando_ejecutado.fin = datetime.now()
     retorno = self.retorno
     if retorno != self.RET_ANY:
         if retorno == self.RET_FAIL:
@@ -504,7 +505,7 @@ def ejecutar_comando_prueba(self, path, prueba): #{{{
     log.debug(_(u'ComandoPrueba.ejecutar(path=%s, prueba=%s)'), path,
         prueba.shortrepr())
     caso_de_prueba = prueba.caso_de_prueba
-    comando_ejecutado = prueba.add_comando_ejecutado(self) # TODO debería rodear solo la ejecución del comando
+    comando_ejecutado = prueba.add_comando_ejecutado(self)
     basetmp = '/tmp/sercom.tester.prueba' # FIXME TODO /var/run/sercom?
     #{{{ Código que solo va en ComandoPrueba (setup de directorio)
     rsync = ('rsync', '--stats', '--itemize-changes', '--human-readable',
@@ -557,6 +558,7 @@ def ejecutar_comando_prueba(self, path, prueba): #{{{
         else:
             options['preexec_fn'].close_stderr = True
     comando = self.comando + ' ' + caso_de_prueba.comando # FIXME Esto es propio de ComandoPrueba
+    comando_ejecutado.inicio = datetime.now()
     log.debug(_(u'Ejecutando como root: %s'), comando)
     os.seteuid(0) # Dios! (para chroot)
     os.setegid(0)
@@ -573,7 +575,7 @@ def ejecutar_comando_prueba(self, path, prueba): #{{{
             log.error(_(u'Error en el hijo: %s'), e.child_traceback)
         raise
     proc.wait() #TODO un sleep grande nos caga todo, ver sercom viejo
-    comando_ejecutado.fin_tareas = datetime.now() # TODO debería rodear solo la ejecución del comando
+    comando_ejecutado.fin = datetime.now()
     retorno = self.retorno
     if retorno == self.RET_PRUEBA:                # FIXME Esto es propio de ComandoPrueba
         retorno = caso_de_prueba.retorno   # FIXME Esto es propio de ComandoPrueba