Searched defs:TestBoxData (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuiadminsystemlog.py34 from testmanager.core.testbox import TestBoxData; namespace
62 TestBoxData.ksParam_uuidSystem: sUuid,
63 TestBoxData.ksParam_ip: sAddr });
H A Dwuiadminschedgroup.py37 from testmanager.core.testbox import TestBoxData; namespace
147 TestBoxData.ksParam_idTestBox: oTestBox.idTestBox,
H A Dwuiadmintestbox.py40 from testmanager.core.testbox import TestBoxData; namespace
77 oForm.addIntRO( TestBoxData.ksParam_idTestBox, oData.idTestBox, 'TestBox ID');
78 oForm.addIntRO( TestBoxData.ksParam_idGenTestBox, oData.idGenTestBox, 'TestBox generation ID');
79 oForm.addTimestampRO(TestBoxData.ksParam_tsEffective, oData.tsEffective, 'Last changed');
80 oForm.addTimestampRO(TestBoxData.ksParam_tsExpire, oData.tsExpire, 'Expires (excl)');
81 oForm.addIntRO( TestBoxData.ksParam_uidAuthor, oData.uidAuthor, 'Changed by UID');
83 oForm.addText( TestBoxData.ksParam_ip, oData.ip, 'TestBox IP Address');
84 oForm.addUuid( TestBoxData.ksParam_uuidSystem, oData.uuidSystem, 'TestBox System/Firmware UUID');
85 oForm.addText( TestBoxData.ksParam_sName, oData.sName, 'TestBox Name');
86 oForm.addText( TestBoxData
[all...]
H A Dwuitestresult.py38 from testmanager.core.testbox import TestBoxData; namespace
453 TestBoxData.ksParam_idGenTestBox: oTestSet.idGenTestBox, },
703 TestBoxData.ksParam_idTestBox: oEntry.idTestBox },
H A Dwuimain.py42 from testmanager.core.testbox import TestBoxData namespace
797 oTestBoxData = TestBoxData().initFromDbWithGenId(self._oDb, oTestSetData.idGenTestBox);
H A Dwuiadmin.py45 from testmanager.core.testbox import TestBoxData, TestBoxLogic namespace
215 d[self.ksActionTestBoxAdd] = lambda: self._actionGenericFormAdd(TestBoxData, WuiTestBox);
216 d[self.ksActionTestBoxAddPost] = lambda: self._actionGenericFormAddPost(TestBoxData, TestBoxLogic,
218 d[self.ksActionTestBoxDetails] = lambda: self._actionGenericFormDetails(TestBoxData, TestBoxLogic, WuiTestBox,
220 d[self.ksActionTestBoxEdit] = lambda: self._actionGenericFormEdit(TestBoxData, WuiTestBox,
221 TestBoxData.ksParam_idTestBox);
222 d[self.ksActionTestBoxEditPost] = lambda: self._actionGenericFormEditPost(TestBoxData, TestBoxLogic,
225 TestBoxData.ksParam_idTestBox,
586 aidTestBoxes = self.getListOfIntParams(TestBoxData.ksParam_idTestBox, iMin = 1, aiDefaults = []);
612 aoTestBoxes.append(TestBoxData()
[all...]
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Ddbobjcache.py105 """ Gets the corresponding TestBoxData object. """
109 from testmanager.core.testbox import TestBoxData; namespace
110 oRet = TestBoxData();
H A Dreport.py36 from testmanager.core.testbox import TestBoxData; namespace
561 Returns a list of TestBoxData objects with eligible testboxes for
589 aoRet.append(TestBoxData().initFromDbRow(self._oDb.fetchOne()));
H A Dtestboxstatus.py37 from testmanager.core.testbox import TestBoxData; namespace
159 Returns (TestBoxStatusData, TestBoxData) on success, (None, None) if
180 return (TestBoxStatusData().initFromDbRow(aoRow[0:5]), TestBoxData().initFromDbRow(aoRow[5:]));
H A Dtestset.py41 from testmanager.core.testbox import TestBoxData; namespace
553 Returns an array of TestBoxData object representing the gang for the given testset.
564 aoTestBoxes.append(TestBoxData().initFromDbRow(aoRow));
H A Dschedgroup.py40 from testmanager.core.testbox import TestBoxData, TestBoxLogic; namespace
306 self.aoTestBoxes.append(TestBoxData().initFromDbRow(aoRow));
591 oTbCopy = TestBoxData().initFromOther(oTestBox);
H A Dtestboxcontroller.py47 from testmanager.core.testbox import TestBoxData, TestBoxLogic; namespace
71 kasIdleCmds = [TestBoxData.ksTestBoxCmd_Reboot,
72 TestBoxData.ksTestBoxCmd_Upgrade,
73 TestBoxData.ksTestBoxCmd_UpgradeAndReboot,
74 TestBoxData.ksTestBoxCmd_Special];
76 kasBusyCmds = [TestBoxData.ksTestBoxCmd_Abort, TestBoxData.ksTestBoxCmd_Reboot];
86 TestBoxData.ksTestBoxCmd_Abort: None,
87 TestBoxData.ksTestBoxCmd_Reboot: TestBoxStatusData.ksTestBoxState_Rebooting,
88 TestBoxData
[all...]
H A Dschedulerbase.py46 from testmanager.core.testbox import TestBoxData; namespace
764 oTestBox = TestBoxData().initFromDbWithGenId(oDb, oTestSet.idGenTestBox);
1301 oTestBoxDataCur = TestBoxData().initFromDbWithId(oDb, oTestBoxData.idTestBox, tsNow);
H A Dtestbox.py41 class TestBoxData(ModelDataBase): # pylint: disable=R0902 class in inherits:ModelDataBase
296 oData = TestBoxData();
304 Returns an array (list) of TestBoxData items, empty list if none. The
305 TestBoxData instances have an extra oStatus member that is either None or
335 oTestBox = TestBoxData().initFromDbRow(aoOne);
370 aoRows.append([TestBoxData().initFromDbRow(oRow), oRow[-1],]);
838 aoRet.append(TestBoxData().initFromDbRow(aoRow))
880 self.aoSamples = [TestBoxData(),];
H A Dtestresults.py42 from testmanager.core.testbox import TestBoxData namespace
735 Get list of uniq TestBoxData objects which
759 aoRet.append(TestBoxData().initFromDbRow(aoRow));

Completed in 91 milliseconds