Hardware
ANTA catalog for hardware tests¶
Test functions related to the hardware or environment
VerifyAdverseDrops ¶
Bases: AntaTest
This test verifies if there are no adverse drops on DCS7280E and DCS7500E.
Expected Results
- success: The test will pass if there are no adverse drops.
- failure: The test will fail if there are adverse drops.
Source code in anta/tests/hardware.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
|
VerifyEnvironmentCooling ¶
Bases: AntaTest
This test verifies the fans status.
Expected Results
- success: The test will pass if the fans status are within the accepted states list.
- failure: The test will fail if some fans status is not within the accepted states list.
Source code in anta/tests/hardware.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
VerifyEnvironmentPower ¶
Bases: AntaTest
This test verifies the power supplies status.
Expected Results
- success: The test will pass if the power supplies status are within the accepted states list.
- failure: The test will fail if some power supplies status is not within the accepted states list.
Source code in anta/tests/hardware.py
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
Input ¶
VerifyEnvironmentSystemCooling ¶
Bases: AntaTest
This test verifies the device’s system cooling.
Expected Results
- success: The test will pass if the system cooling status is OK: ‘coolingOk’.
- failure: The test will fail if the system cooling status is NOT OK.
Source code in anta/tests/hardware.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
VerifyTemperature ¶
Bases: AntaTest
This test verifies if the device temperature is within acceptable limits.
Expected Results
- success: The test will pass if the device temperature is currently OK: ‘temperatureOk’.
- failure: The test will fail if the device temperature is NOT OK.
Source code in anta/tests/hardware.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
VerifyTransceiversManufacturers ¶
Bases: AntaTest
This test verifies if all the transceivers come from approved manufacturers.
Expected Results
- success: The test will pass if all transceivers are from approved manufacturers.
- failure: The test will fail if some transceivers are from unapproved manufacturers.
Source code in anta/tests/hardware.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
Input ¶
Bases: Input
Source code in anta/tests/hardware.py
32 33 34 |
|
manufacturers
instance-attribute
¶
manufacturers: List[str]
List of approved transceivers manufacturers
VerifyTransceiversTemperature ¶
Bases: AntaTest
This test verifies if all the transceivers are operating at an acceptable temperature.
Expected Results
- success: The test will pass if all transceivers status are OK: ‘ok’.
- failure: The test will fail if some transceivers are NOT OK.
Source code in anta/tests/hardware.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|