VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/db/tmdb-r02-testboxes-1.pgsql@ 82972

Last change on this file since 82972 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.4 KB
Line 
1-- $Id: tmdb-r02-testboxes-1.pgsql 82968 2020-02-04 10:35:17Z vboxsync $
2--- @file
3-- VBox Test Manager Database - Adds fCpu64BitGuest to TestBoxes
4--
5
6--
7-- Copyright (C) 2013-2020 Oracle Corporation
8--
9-- This file is part of VirtualBox Open Source Edition (OSE), as
10-- available from http://www.virtualbox.org. This file is free software;
11-- you can redistribute it and/or modify it under the terms of the GNU
12-- General Public License (GPL) as published by the Free Software
13-- Foundation, in version 2 as it comes in the "COPYING" file of the
14-- VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15-- hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16--
17-- The contents of this file may alternatively be used under the terms
18-- of the Common Development and Distribution License Version 1.0
19-- (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20-- VirtualBox OSE distribution, in which case the provisions of the
21-- CDDL are applicable instead of those of the GPL.
22--
23-- You may elect to license modified versions of this file under the
24-- terms and conditions of either the GPL or the CDDL or both.
25--
26
27
28DROP TABLE OldTestBoxes;
29DROP TABLE NewTestBoxes;
30
31\d TestBoxes;
32
33\set ON_ERROR_STOP 1
34\set AUTOCOMMIT 0
35
36LOCK TABLE TestBoxStatuses IN ACCESS EXCLUSIVE MODE;
37LOCK TABLE TestSets IN ACCESS EXCLUSIVE MODE;
38LOCK TABLE TestBoxes IN ACCESS EXCLUSIVE MODE;
39
40DROP INDEX TestBoxesUuidIdx;
41
42--
43-- Rename the original table, drop constrains and foreign key references so we
44-- get the right name automatic when creating the new one.
45--
46ALTER TABLE TestBoxes RENAME TO OldTestBoxes;
47
48ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_ccpus_check;
49ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_check;
50ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_cmbmemory_check;
51ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_cmbscratch_check;
52ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_pctscaletimeout_check;
53
54ALTER TABLE TestBoxStatuses DROP CONSTRAINT TestBoxStatuses_idGenTestBox_fkey;
55ALTER TABLE TestSets DROP CONSTRAINT TestSets_idGenTestBox_fkey;
56
57ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_pkey;
58ALTER TABLE OldTestBoxes DROP CONSTRAINT testboxes_idgentestbox_key;
59
60--
61-- Create the new table, filling it with the current TestBoxes content.
62--
63CREATE TABLE TestBoxes (
64 --- The fixed testbox ID.
65 -- This is assigned when the testbox is created and will never change.
66 idTestBox INTEGER DEFAULT NEXTVAL('TestBoxIdSeq') NOT NULL,
67 --- When this row starts taking effect (inclusive).
68 tsEffective TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL,
69 --- When this row stops being tsEffective (exclusive).
70 tsExpire TIMESTAMP WITH TIME ZONE DEFAULT TIMESTAMP WITH TIME ZONE 'infinity' NOT NULL,
71 --- The user id of the one who created/modified this entry.
72 -- When modified automatically by the testbox, NULL is used.
73 -- Non-unique foreign key: Users(uid)
74 uidAuthor INTEGER DEFAULT NULL,
75 --- Generation ID for this row.
76 -- This is primarily for referencing by TestSets.
77 idGenTestBox INTEGER UNIQUE DEFAULT NEXTVAL('TestBoxGenIdSeq') NOT NULL,
78
79 --- The testbox IP.
80 -- This is from the webserver point of view and automatically updated on
81 -- SIGNON. The test setup doesn't permit for IP addresses to change while
82 -- the testbox is operational, because this will break gang tests.
83 ip inet NOT NULL,
84 --- The system or firmware UUID.
85 -- This uniquely identifies the testbox when talking to the server. After
86 -- SIGNON though, the testbox will also provide idTestBox and ip to
87 -- establish its identity beyond doubt.
88 uuidSystem uuid NOT NULL,
89 --- The testbox name.
90 -- Usually similar to the DNS name.
91 sName text NOT NULL,
92 --- Optional testbox description.
93 -- Intended for describing the box as well as making other relevant notes.
94 sDescription text DEFAULT NULL,
95
96 --- Reference to the scheduling group that this testbox is a member of.
97 -- Non-unique foreign key: SchedGroups(idSchedGroup)
98 -- A testbox is always part of a group, the default one nothing else.
99 idSchedGroup INTEGER DEFAULT 1 NOT NULL,
100
101 --- Indicates whether this testbox is enabled.
102 -- A testbox gets disabled when we're doing maintenance, debugging a issue
103 -- that happens only on that testbox, or some similar stuff. This is an
104 -- alternative to deleting the testbox.
105 fEnabled BOOLEAN DEFAULT NULL,
106
107 --- The kind of lights-out-management.
108 enmLomKind LomKind_T DEFAULT 'none'::LomKind_T NOT NULL,
109 --- The IP adress of the lights-out-management.
110 -- This can be NULL if enmLomKind is 'none', otherwise it must contain a valid address.
111 ipLom inet DEFAULT NULL,
112
113 --- Timeout scale factor, given as a percent.
114 -- This is a crude adjustment of the test case timeout for slower hardware.
115 pctScaleTimeout smallint DEFAULT 100 NOT NULL CHECK (pctScaleTimeout > 10 AND pctScaleTimeout < 20000),
116
117 --- @name Scheduling properties (reported by testbox script).
118 -- @{
119 --- Same abbrieviations as kBuild, see KBUILD_OSES.
120 sOs text DEFAULT NULL,
121 --- Informational, no fixed format.
122 sOsVersion text DEFAULT NULL,
123 --- Same as CPUID reports (GenuineIntel, AuthenticAMD, CentaurHauls, ...).
124 sCpuVendor text DEFAULT NULL,
125 --- Same as kBuild - x86, amd64, ... See KBUILD_ARCHES.
126 sCpuArch text DEFAULT NULL,
127 --- Number of CPUs, CPU cores and CPU threads.
128 cCpus smallint DEFAULT NULL CHECK (cCpus IS NULL OR cCpus > 0),
129 --- Set if capable of hardware virtualization.
130 fCpuHwVirt boolean DEFAULT NULL,
131 --- Set if capable of nested paging.
132 fCpuNestedPaging boolean DEFAULT NULL,
133 --- Set if CPU capable of 64-bit (VBox) guests.
134 fCpu64BitGuest boolean DEFAULT NULL,
135 --- Set if chipset with usable IOMMU (VT-d / AMD-Vi).
136 fChipsetIoMmu boolean DEFAULT NULL,
137 --- The (approximate) memory size in megabytes (rounded down to nearest 4 MB).
138 cMbMemory bigint DEFAULT NULL CHECK (cMbMemory IS NULL OR cMbMemory > 0),
139 --- The amount of scratch space in megabytes (rounded down to nearest 64 MB).
140 cMbScratch bigint DEFAULT NULL CHECK (cMbScratch IS NULL OR cMbScratch >= 0),
141 --- @}
142
143 --- The testbox script revision number, serves the purpose of a version number.
144 -- Probably good to have when scheduling upgrades as well for status purposes.
145 iTestBoxScriptRev INTEGER DEFAULT 0 NOT NULL,
146 --- The python sys.hexversion (layed out as of 2.7).
147 -- Good to know which python versions we need to support.
148 iPythonHexVersion INTEGER DEFAULT NULL,
149
150 --- Pending command.
151 -- @note We put it here instead of in TestBoxStatuses to get history.
152 enmPendingCmd TestBoxCmd_T DEFAULT 'none'::TestBoxCmd_T NOT NULL,
153
154 PRIMARY KEY (idTestBox, tsExpire),
155
156 --- Nested paging requires hardware virtualization.
157 CHECK (fCpuNestedPaging IS NULL OR (fCpuNestedPaging <> TRUE OR fCpuHwVirt = TRUE))
158);
159
160
161INSERT INTO TestBoxes ( idTestBox, tsEffective, tsExpire, uidAuthor, idGenTestBox, ip, uuidSystem, sName, sDescription,
162 idSchedGroup, fEnabled, enmLomKind, ipLom, pctScaleTimeout, sOs, sOsVersion, sCpuVendor, sCpuArch, cCpus, fCpuHwVirt,
163 fCpuNestedPaging, fCpu64BitGuest, fChipsetIoMmu, cMbMemory, cMbScratch, iTestBoxScriptRev, iPythonHexVersion,
164 enmPendingCmd )
165 SELECT idTestBox, tsEffective, tsExpire, uidAuthor, idGenTestBox, ip, uuidSystem, sName, sDescription,
166 idSchedGroup, fEnabled, enmLomKind, ipLom, pctScaleTimeout, sOs, sOsVersion, sCpuVendor, sCpuArch, cCpus, fCpuHwVirt,
167 fCpuNestedPaging, TRUE, fChipsetIoMmu, cMbMemory, cMbScratch, iTestBoxScriptRev, iPythonHexVersion,
168 enmPendingCmd
169 FROM OldTestBoxes;
170
171-- Add index.
172CREATE UNIQUE INDEX TestBoxesUuidIdx ON TestBoxes (uuidSystem, tsExpire);
173
174-- Restore foreign key references to the table.
175ALTER TABLE TestBoxStatuses ADD CONSTRAINT TestBoxStatuses_idGenTestBox_fkey FOREIGN KEY (idGenTestBox) REFERENCES TestBoxes(idGenTestBox);
176ALTER TABLE TestSets ADD CONSTRAINT TestSets_idGenTestBox_fkey FOREIGN KEY (idGenTestBox) REFERENCES TestBoxes(idGenTestBox);
177
178-- Drop the old table.
179DROP TABLE OldTestBoxes;
180
181COMMIT;
182
183\d TestBoxes;
184
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette