self.home = home
self.queue = queue
# Ahora somos mortales (oid mortales)
- log.debug(_(u'Cambiando usuario y grupo efectivos a %s:%s (%s:%s)'),
- user_info.user, user_info.group, user_info.uid, user_info.gid)
os.setegid(user_info.gid)
os.seteuid(user_info.uid)
+ log.debug(_(u'usuario y grupo efectivos cambiados a %s:%s (%s:%s)'),
+ user_info.user, user_info.group, user_info.uid, user_info.gid)
@property
def build_path(self):
def test(self, entrega): #{{{
log.debug(_(u'Tester.test(entrega=%s)'), entrega)
- entrega.inicio_tareas = datetime.now()
+ entrega.inicio = datetime.now()
try:
try:
self.setup_chroot(entrega)
self.ejecutar_tareas_prueba(entrega)
self.clean_chroot(entrega)
except ExecutionFailure, e:
- entrega.correcta = False
+ entrega.exito = False
log.info(_(u'Entrega incorrecta: %s'), entrega)
except Exception, e:
if isinstance(e, SystemExit): raise
entrega.observaciones += error_interno
log.exception(_('Hubo una excepcion inesperada desconocida')) # FIXME encoding
else:
- entrega.correcta = True
+ entrega.exito = True
log.debug(_(u'Entrega correcta: %s'), entrega)
finally:
- entrega.fin_tareas = datetime.now()
+ entrega.fin = datetime.now()
#}}}
def setup_chroot(self, entrega): #{{{ y clean_chroot()
try:
sp.check_call(rsync)
finally:
- log.debug(_(u'Cambiando usuario y grupo efectivos a %s:%s (%s:%s)'),
- user_info.user, user_info.group, user_info.uid, user_info.gid)
os.setegid(user_info.gid) # Mortal de nuevo
os.seteuid(user_info.uid)
+ log.debug(_(u'Usuario y grupo efectivos cambiados a %s:%s (%s:%s)'),
+ user_info.user, user_info.group, user_info.uid, user_info.gid)
unzip(entrega.archivos, self.build_path)
def clean_chroot(self, entrega):
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)
+ comando_ejecutado = entrega.add_comando_ejecutado(self) # TODO debería rodear solo la ejecución del comando
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)})
try:
proc = sp.Popen(self.comando, **options)
finally:
- log.debug(_(u'Cambiando usuario y grupo efectivos a %s:%s (%s:%s)'),
- user_info.user, user_info.group, user_info.uid, user_info.gid)
os.setegid(user_info.gid) # Mortal de nuevo
os.seteuid(user_info.uid)
+ log.debug(_(u'Usuario y grupo efectivos cambiados a %s:%s (%s:%s)'),
+ user_info.user, user_info.group, user_info.uid, user_info.gid)
except Exception, e:
if hasattr(e, 'child_traceback'):
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
if self.retorno != self.RET_ANY:
if self.retorno == self.RET_FAIL:
if proc.returncode == 0:
if self.rechazar_si_falla:
- entrega.correcta = False
+ entrega.exito = False
comando_ejecutado.exito = False
comando_ejecutado.observaciones += _(u'Se esperaba que el '
u'programa termine con un error (código de retorno '
u'terminó bien (código de retorno 0).\n'))
elif self.retorno != proc.returncode:
if self.rechazar_si_falla:
- entrega.correcta = False
+ entrega.exito = False
comando_ejecutado.exito = False
if proc.returncode < 0:
comando_ejecutado.observaciones += _(u'Se esperaba terminar '
u'%s pero se obtuvo %s.\n'), self.retorno, proc.returncode)
if comando_ejecutado.exito is None:
log.debug(_(u'Código de retorno OK'))
- comando_ejecutado.fin = datetime.now()
if a_guardar:
buffer = StringIO()
zip = ZipFile(buffer, 'w')
for f in a_guardar:
if not os.path.exists(join(path, f)):
if self.rechazar_si_falla:
- entrega.correcta = False
+ entrega.exito = False
comando_ejecutado.exito = False
comando_ejecutado.observaciones += _(u'Se esperaba un archivo '
u'"%s" para guardar pero no fue encontrado.\n') % f
else:
zip.write(join(path, f), f)
zip.close()
- comando_ejecutado.archivos_guardados = buffer.getvalue()
+ comando_ejecutado.archivos = buffer.getvalue()
def diff(new, zip_in, zip_out, name, longname=None, origname='correcto',
newname='entregado'):
if longname is None:
tofile=name+'.'+newname)))
if udiff:
if self.rechazar_si_falla:
- entrega.correcta = False
+ entrega.exito = False
comando_ejecutado.exito = False
comando_ejecutado.observaciones += _(u'%s no coincide con lo '
u'esperado (archivo "%s.diff").\n') % (longname, name)
for f in a_comparar:
if not os.path.exists(join(path, f)):
if self.rechazar_si_falla:
- entrega.correcta = False
+ entrega.exito = False
comando_ejecutado.exito = False
comando_ejecutado.observaciones += _(u'Se esperaba un archivo '
u'"%s" para comparar pero no fue encontrado') % f
else:
diff(join(path, f), zip_a_comparar, zip, f)
zip.close()
- comando_ejecutado.archivos_guardados = buffer.getvalue()
+ comando_ejecutado.diferencias = buffer.getvalue()
if comando_ejecutado.exito is None:
comando_ejecutado.exito = True
elif self.terminar_si_falla: