# -*- coding: utf-8 -*- # "$Id: wuiadminschedqueue.py 83362 2020-03-21 17:06:38Z vboxsync $" """ Test Manager WUI - Admin - Scheduling Queue. """ __copyright__ = \ """ Copyright (C) 2012-2020 Oracle Corporation This file is part of VirtualBox Open Source Edition (OSE), as available from http://www.virtualbox.org. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation, in version 2 as it comes in the "COPYING" file of the VirtualBox OSE distribution. VirtualBox OSE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. The contents of this file may alternatively be used under the terms of the Common Development and Distribution License Version 1.0 (CDDL) only, as it comes in the "COPYING.CDDL" file of the VirtualBox OSE distribution, in which case the provisions of the CDDL are applicable instead of those of the GPL. You may elect to license modified versions of this file under the terms and conditions of either the GPL or the CDDL or both. """ __version__ = "$Revision: 83362 $" # Validation Kit imports from testmanager.webui.wuicontentbase import WuiListContentBase class WuiAdminSchedQueueList(WuiListContentBase): """ WUI Scheduling Queue Content Generator. """ def __init__(self, aoEntries, iPage, cItemsPerPage, tsEffective, fnDPrint, oDisp, aiSelectedSortColumns = None): tsEffective = None; # Not relevant, no history on the scheduling queue. WuiListContentBase.__init__(self, aoEntries, iPage, cItemsPerPage, tsEffective, 'Scheduling Queue', fnDPrint = fnDPrint, oDisp = oDisp, aiSelectedSortColumns = aiSelectedSortColumns, fTimeNavigation = False); self._asColumnHeaders = [ 'Last Run', 'Scheduling Group', 'Test Group', 'Test Case', 'Config State', 'Item ID' ]; self._asColumnAttribs = [ 'align="center"', 'align="center"', 'align="center"', 'align="center"', 'align="center"', 'align="center"' ]; self._iPrevPerSchedGroupRowNumber = 0; def _formatListEntry(self, iEntry): oEntry = self._aoEntries[iEntry] # type: SchedQueueEntry sState = 'up-to-date' if oEntry.fUpToDate else 'outdated'; return [ oEntry.tsLastScheduled, oEntry.sSchedGroup, oEntry.sTestGroup, oEntry.sTestCase, sState, oEntry.idItem ]; def _formatListEntryHtml(self, iEntry): sHtml = WuiListContentBase._formatListEntryHtml(self, iEntry); # Insert separator row? if iEntry < len(self._aoEntries): oEntry = self._aoEntries[iEntry] # type: SchedQueueEntry if oEntry.iPerSchedGroupRowNumber != self._iPrevPerSchedGroupRowNumber: if iEntry > 0 and iEntry + 1 < min(len(self._aoEntries), self._cItemsPerPage): sHtml += '