1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 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 164 165 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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
|
# Copyright 2022 Hewlett Packard Enterprise Development LP
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""Test class for Client Module."""
from unittest import mock
import testtools
from proliantutils import exception
from proliantutils.ilo import client
from proliantutils.ilo import ipmi
from proliantutils.ilo import ribcl
from proliantutils.ilo import ris
from proliantutils.ilo.snmp import snmp_cpqdisk_sizes
from proliantutils.redfish import redfish
def get_cls_wrapper(cls, cache=True):
original_cls = cls
cls = client.cache_node(cache)(cls)
return (original_cls, cls)
class IloCacheNodeTestCase(testtools.TestCase):
def test_cache_node_cache_true(self):
class Dummyclass1(object):
pass
original_cls, decorated_cls = get_cls_wrapper(Dummyclass1)
self.assertNotEqual(id(original_cls), id(decorated_cls))
def test_cache_node_cache_false(self):
class Dummyclass2(object):
pass
original_cls, decorated_cls = get_cls_wrapper(Dummyclass2,
cache=False)
self.assertEqual(id(original_cls), id(decorated_cls))
class IloClientWrapperTestCase(testtools.TestCase):
class DummyClass(object):
def __init__(self, ip, name, password):
self._ip = ip
self._name = name
self._password = password
original_cls, decorated_cls = get_cls_wrapper(DummyClass)
wrapper_cls = decorated_cls.__class__
@mock.patch.object(wrapper_cls, '_create_instance')
@mock.patch.object(wrapper_cls, '_if_not_exists')
def test___call___already_created(self, exists_mock, create_mock):
exists_mock.return_value = True
try:
wrapper_obj = IloClientWrapperTestCase.wrapper_cls(
IloClientWrapperTestCase.original_cls)
wrapper_obj('a.b.c.d', 'abcd', 'deaf')
except KeyError:
pass
exists_mock.assert_called_once_with(('a.b.c.d', 'abcd', 'deaf'))
create_mock.assert_called_once_with('a.b.c.d', 'abcd', 'deaf')
@mock.patch.object(wrapper_cls, '_create_instance')
@mock.patch.object(wrapper_cls, '_if_not_exists')
def test___call___new(self, exists_mock, create_mock):
exists_mock.return_value = False
try:
wrapper_obj = IloClientWrapperTestCase.wrapper_cls(
IloClientWrapperTestCase.original_cls)
wrapper_obj('a.b.c.d', 'abcd', 'deaf')
except KeyError:
pass
exists_mock.assert_called_once_with(('a.b.c.d', 'abcd', 'deaf'))
create_mock.assert_not_called()
@mock.patch.object(original_cls, '__init__')
@mock.patch.object(wrapper_cls, '_pop_oldest_node')
def test__create_instance(self, pop_mock, init_mock):
init_mock.return_value = None
wrapper_obj = IloClientWrapperTestCase.wrapper_cls(
IloClientWrapperTestCase.original_cls)
wrapper_obj.MAX_CACHE_SIZE = 2
wrapper_obj._create_instance('a.b.c.d', 'abcd', 'defe')
init_mock.assert_called_once_with('a.b.c.d', 'abcd', 'defe')
pop_mock.assert_not_called()
@mock.patch.object(original_cls, '__init__')
@mock.patch.object(wrapper_cls, '_pop_oldest_node')
def test__create_instance_max_size(self, pop_mock, init_mock):
init_mock.return_value = None
wrapper_obj = IloClientWrapperTestCase.wrapper_cls(
IloClientWrapperTestCase.original_cls)
wrapper_obj.MAX_CACHE_SIZE = 2
wrapper_obj._create_instance('a.b.c.d', 'abcd', 'deaf')
wrapper_obj._create_instance('e.f.g.h', 'efgh', 'deaf')
wrapper_obj._create_instance('i.j.k.l', 'ijkl', 'deaf')
pop_mock.assert_called_once_with()
def test__pop_oldest_node(self):
wrapper_obj = IloClientWrapperTestCase.wrapper_cls(
IloClientWrapperTestCase.original_cls)
wrapper_obj.MAX_CACHE_SIZE = 2
wrapper_obj('a.b.c.d', 'abcd', 'deaf')
wrapper_obj('e.f.g.h', 'efgh', 'deaf')
wrapper_obj('i.j.k.l', 'ijkl', 'deaf')
self.assertIn(('i.j.k.l', 'ijkl', 'deaf'), wrapper_obj._instances)
self.assertIn(('e.f.g.h', 'efgh', 'deaf'), wrapper_obj._instances)
self.assertNotIn(('a.b.c.d', 'ijkl', 'deaf'), wrapper_obj._instances)
class IloClientInitTestCase(testtools.TestCase):
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(ris, 'RISOperations')
def test_init(self, ris_mock, ribcl_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'product'
c = client.IloClient.cls("1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere')
ris_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
self.assertEqual(
{'address': "1.2.3.4", 'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertEqual('product', c.model)
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(ris, 'RISOperations')
def test_init_for_ipv6_link_address(self, ris_mock, ribcl_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'product'
c = client.IloClient.cls("FE80::9AF2:B3FF:FEEE:F884%eth0", "admin",
"Admin", timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere')
ris_mock.assert_called_once_with(
"[FE80::9AF2:B3FF:FEEE:F884%eth0]",
"admin", "Admin", bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"[FE80::9AF2:B3FF:FEEE:F884%eth0]",
"admin", "Admin", 120, 4430, cacert='/somewhere')
self.assertEqual(
{'address': "FE80::9AF2:B3FF:FEEE:F884%eth0",
'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertEqual('product', c.model)
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(ris, 'RISOperations')
def test_init_for_ipv6_global_address(self, ris_mock, ribcl_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'product'
c = client.IloClient.cls("2001:0db8:85a3::8a2e:0370:7334", "admin",
"Admin", timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere')
ris_mock.assert_called_once_with(
"[2001:0db8:85a3::8a2e:0370:7334]",
"admin", "Admin", bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"[2001:0db8:85a3::8a2e:0370:7334]",
"admin", "Admin", 120, 4430, cacert='/somewhere')
self.assertEqual(
{'address': "2001:0db8:85a3::8a2e:0370:7334",
'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertEqual('product', c.model)
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(redfish, 'RedfishOperations')
def test_init_for_redfish_with_ribcl_enabled(
self, redfish_mock, ribcl_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'ProLiant DL180 Gen10'
c = client.IloClient.cls("1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
redfish_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
self.assertEqual(
{'address': "1.2.3.4", 'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertEqual('ProLiant DL180 Gen10', c.model)
self.assertIsNotNone(c.redfish)
self.assertTrue(c.is_ribcl_enabled)
self.assertFalse(hasattr(c, 'ris'))
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(redfish, 'RedfishOperations')
def test_init_for_redfish_with_ribcl_disabled(
self, redfish_mock, ribcl_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.side_effect = (
exception.IloError('RIBCL is disabled'))
c = client.IloClient.cls("1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
redfish_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
self.assertEqual(
{'address': "1.2.3.4", 'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertIsNotNone(c.model)
self.assertIsNotNone(c.redfish)
self.assertFalse(c.is_ribcl_enabled)
self.assertFalse(hasattr(c, 'ris'))
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(redfish, 'RedfishOperations')
def test_init_with_use_redfish_only_set(
self, redfish_mock, ribcl_mock):
c = client.IloClient.cls("1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo', cacert='/somewhere',
use_redfish_only=True)
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
redfish_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
self.assertEqual(
{'address': "1.2.3.4", 'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertIsNotNone(c.model)
self.assertIsNotNone(c.redfish)
self.assertIsNone(c.is_ribcl_enabled)
self.assertFalse(hasattr(c, 'ris'))
self.assertTrue(c.use_redfish_only)
@mock.patch.object(client.IloClient.cls, '_validate_snmp')
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(ris, 'RISOperations')
def test_init_snmp(self, ris_mock, ribcl_mock, snmp_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'product'
snmp_credentials = {'auth_user': 'user',
'auth_protocol': 'SHA',
'auth_prot_pp': '1234',
'priv_protocol': 'AES',
'auth_priv_pp': '4321',
'snmp_inspection': 'true'}
c = client.IloClient.cls("1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere',
snmp_credentials=snmp_credentials)
ris_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
self.assertEqual(
{'address': "1.2.3.4", 'username': "admin", 'password': "Admin"},
c.ipmi_host_info)
self.assertEqual('product', c.model)
self.assertTrue(snmp_mock.called)
@mock.patch.object(client.IloClient.cls, '_validate_snmp')
@mock.patch.object(ribcl, 'RIBCLOperations')
@mock.patch.object(ris, 'RISOperations')
def test_init_snmp_raises(self, ris_mock, ribcl_mock, snmp_mock):
ribcl_obj_mock = mock.MagicMock()
ribcl_mock.return_value = ribcl_obj_mock
ribcl_obj_mock.get_product_name.return_value = 'product'
snmp_mock.side_effect = exception.IloInvalidInputError("msg")
snmp_credentials = {'auth_user': 'user',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'snmp_inspection': 'true'}
self.assertRaises(exception.IloInvalidInputError, client.IloClient.cls,
"1.2.3.4", "admin", "Admin",
timeout=120, port=4430,
bios_password='foo',
cacert='/somewhere',
snmp_credentials=snmp_credentials)
ris_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", bios_password='foo',
cacert='/somewhere')
ribcl_mock.assert_called_once_with(
"1.2.3.4", "admin", "Admin", 120, 4430, cacert='/somewhere')
self.assertTrue(snmp_mock.called)
class IloClientSNMPValidateTestCase(testtools.TestCase):
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_validate_snmp(self, product_mock):
cred = {'auth_user': 'user',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'auth_prot_pp': '1234',
'auth_priv_pp': '4321',
'snmp_inspection': True}
self.snmp_credentials = cred
self.client = client.IloClient.cls("1.2.3.4", "admin", "Admin",
snmp_credentials=cred)
self.assertEqual(self.client.snmp_credentials, cred)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_validate_snmp_fail_auth_priv_pp_missing(self, product_mock):
cred = {'auth_user': 'user',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'auth_prot_pp': '1234',
'snmp_inspection': True}
self.assertRaises(exception.IloInvalidInputError,
client.IloClient.cls,
"1.2.3.4", "admin", "Admin",
snmp_credentials=cred)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_validate_snmp_auth_prot_pp_missing(self, product_mock):
cred = {'auth_user': 'user',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'auth_priv_pp': '4321',
'snmp_inspection': True}
self.assertRaises(exception.IloInvalidInputError,
client.IloClient.cls,
"1.2.3.4", "admin", "Admin",
snmp_credentials=cred)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_validate_snmp_auth_prot_priv_prot_missing(self, product_mock):
cred = {'auth_user': 'user',
'auth_prot_pp': '1234',
'auth_priv_pp': '4321',
'snmp_inspection': True}
self.client = client.IloClient.cls("1.2.3.4", "admin", "Admin",
snmp_credentials=cred)
self.assertEqual(self.client.snmp_credentials, cred)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_validate_snmp_auth_user_missing(self, product_mock):
cred = {'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'auth_priv_pp': '4321',
'auth_prot_pp': '1234',
'snmp_inspection': True}
self.assertRaises(exception.IloInvalidInputError,
client.IloClient.cls,
"1.2.3.4", "admin", "Admin",
snmp_credentials=cred)
class IloClientTestCase(testtools.TestCase):
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def setUp(self, product_mock):
super(IloClientTestCase, self).setUp()
product_mock.return_value = 'Gen8'
self.client = client.IloClient.cls("1.2.3.4", "admin", "Admin")
@mock.patch.object(ribcl.RIBCLOperations, 'get_all_licenses')
def test__call_method_ribcl(self, license_mock):
self.client._call_method('get_all_licenses')
license_mock.assert_called_once_with()
@mock.patch.object(ris.RISOperations, 'get_host_power_status')
def test__call_method_ris(self, power_mock):
self.client.model = 'Gen9'
self.client._call_method('get_host_power_status')
power_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'reset_ilo')
def test__call_method_gen9_ribcl(self, ilo_mock):
self.client.model = 'Gen9'
self.client._call_method('reset_ilo')
ilo_mock.assert_called_once_with()
"""
Testing ``_call_method`` with Redfish support.
Testing the redfish methods based on the following scenarios,
which are depicted in this table::
redfish | ribcl | method implemented | name of test method
supported? | enabled? | on redfish? |
===========|==========|====================|=============================
true | true | true | test__call_method_redfish_1
true | true | false | test__call_method_redfish_2
true | false | true | test__call_method_redfish_3
true | false | false | test__call_method_redfish_4
===========|==========|====================|=============================
"""
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
@mock.patch.object(redfish, 'RedfishOperations')
def test__call_method_redfish_1(self, redfish_mock,
ribcl_product_name_mock):
ribcl_product_name_mock.return_value = 'Gen10'
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret")
redfish_get_host_power_mock = (redfish.RedfishOperations.return_value.
get_host_power_status)
self.client._call_method('get_host_power_status')
redfish_get_host_power_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
@mock.patch.object(redfish, 'RedfishOperations')
@mock.patch.object(ribcl.RIBCLOperations, 'reset_ilo')
def test__call_method_redfish_2(self, ribcl_reset_ilo_mock,
redfish_mock, ribcl_product_name_mock):
ribcl_product_name_mock.return_value = 'Gen10'
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret")
self.client._call_method('reset_ilo')
ribcl_reset_ilo_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
@mock.patch.object(redfish, 'RedfishOperations')
def test__call_method_redfish_3(self, redfish_mock,
ribcl_product_name_mock):
ribcl_product_name_mock.side_effect = (
exception.IloError('RIBCL is disabled'))
redfish_mock.return_value.get_product_name.return_value = 'Gen10'
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret")
redfish_get_host_power_mock = (redfish.RedfishOperations.return_value.
get_host_power_status)
self.client._call_method('get_host_power_status')
redfish_get_host_power_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
@mock.patch.object(redfish, 'RedfishOperations')
def test__call_method_redfish_4(self, redfish_mock,
ribcl_product_name_mock):
ribcl_product_name_mock.side_effect = (
exception.IloError('RIBCL is disabled'))
redfish_mock.return_value.get_product_name.return_value = 'Gen10'
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret")
self.assertRaises(NotImplementedError,
self.client._call_method, 'reset_ilo')
@mock.patch.object(redfish, 'RedfishOperations',
spec_set=True, autospec=True)
def test__call_method_with_use_redfish_only_set(self, redfish_mock):
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret",
use_redfish_only=True)
redfish_get_host_power_mock = (
redfish.RedfishOperations.return_value.get_host_power_status)
self.client._call_method('get_host_power_status')
redfish_get_host_power_mock.assert_called_once_with()
@mock.patch.object(redfish, 'RedfishOperations',
spec_set=True, autospec=True)
def test__call_method_use_redfish_only_set_but_not_implemented(
self, redfish_mock):
self.client = client.IloClient.cls("1.2.3.4", "admin", "secret",
use_redfish_only=True)
self.assertRaises(NotImplementedError,
self.client._call_method, 'reset_ilo')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_http_boot_url(self, call_mock):
self.client.set_http_boot_url('fake-url')
call_mock.assert_called_once_with('set_http_boot_url', 'fake-url')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_iscsi_info(self, call_mock):
self.client.set_iscsi_info('iqn.2011-07.com:example:123',
'1', '10.10.1.23', '3260', 'CHAP',
'user', 'password')
call_mock.assert_called_once_with('set_iscsi_info',
'iqn.2011-07.com:example:123',
'1', '10.10.1.23', '3260',
'CHAP', 'user', 'password', [])
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_iscsi_initiator_info(self, call_mock):
self.client.get_iscsi_initiator_info()
call_mock.assert_called_once_with('get_iscsi_initiator_info')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_unset_iscsi_info(self, call_mock):
self.client.unset_iscsi_info()
call_mock.assert_called_once_with('unset_iscsi_info', [])
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_iscsi_initiator_info(self, call_mock):
self.client.set_iscsi_initiator_info('iqn.2011-07.com:example:123')
call_mock.assert_called_once_with('set_iscsi_initiator_info',
'iqn.2011-07.com:example:123')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_product_name(self, call_mock):
self.client.get_product_name()
call_mock.assert_called_once_with('get_product_name')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_all_licenses(self, call_mock):
self.client.get_all_licenses()
call_mock.assert_called_once_with('get_all_licenses')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_power_status(self, call_mock):
self.client.get_host_power_status()
call_mock.assert_called_once_with('get_host_power_status')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_http_boot_url(self, call_mock):
self.client.get_http_boot_url()
call_mock.assert_called_once_with('get_http_boot_url')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_one_time_boot(self, call_mock):
self.client.get_one_time_boot()
call_mock.assert_called_once_with('get_one_time_boot')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_vm_status(self, call_mock):
self.client.get_vm_status('CDROM')
call_mock.assert_called_once_with('get_vm_status', 'CDROM')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_press_pwr_btn(self, call_mock):
self.client.press_pwr_btn()
call_mock.assert_called_once_with('press_pwr_btn')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_reset_server(self, call_mock):
self.client.reset_server()
call_mock.assert_called_once_with('reset_server')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_hold_pwr_btn(self, call_mock):
self.client.hold_pwr_btn()
call_mock.assert_called_once_with('hold_pwr_btn')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_host_power(self, call_mock):
self.client.set_host_power('ON')
call_mock.assert_called_once_with('set_host_power', 'ON')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_one_time_boot(self, call_mock):
self.client.set_one_time_boot('CDROM')
call_mock.assert_called_once_with('set_one_time_boot', 'CDROM')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_insert_virtual_media(self, call_mock):
self.client.insert_virtual_media(url='fake-url', device='FLOPPY')
call_mock.assert_called_once_with('insert_virtual_media', 'fake-url',
'FLOPPY')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_eject_virtual_media(self, call_mock):
self.client.eject_virtual_media(device='FLOPPY')
call_mock.assert_called_once_with('eject_virtual_media', 'FLOPPY')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_vm_status(self, call_mock):
self.client.set_vm_status(device='FLOPPY', boot_option='BOOT_ONCE',
write_protect='YES')
call_mock.assert_called_once_with('set_vm_status', 'FLOPPY',
'BOOT_ONCE', 'YES')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_current_boot_mode(self, call_mock):
self.client.get_current_boot_mode()
call_mock.assert_called_once_with('get_current_boot_mode')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_pending_boot_mode(self, call_mock):
self.client.get_pending_boot_mode()
call_mock.assert_called_once_with('get_pending_boot_mode')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_supported_boot_mode(self, call_mock):
self.client.get_supported_boot_mode()
call_mock.assert_called_once_with('get_supported_boot_mode')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_pending_boot_mode(self, call_mock):
self.client.set_pending_boot_mode('UEFI')
call_mock.assert_called_once_with('set_pending_boot_mode', 'UEFI')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_persistent_boot_device(self, call_mock):
self.client.get_persistent_boot_device()
call_mock.assert_called_once_with('get_persistent_boot_device')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_update_persistent_boot(self, call_mock):
self.client.update_persistent_boot(['HDD'])
call_mock.assert_called_once_with('update_persistent_boot', ['HDD'])
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_secure_boot_mode(self, call_mock):
self.client.get_secure_boot_mode()
call_mock.assert_called_once_with('get_secure_boot_mode')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_set_secure_boot_mode(self, call_mock):
self.client.set_secure_boot_mode(True)
call_mock.assert_called_once_with('set_secure_boot_mode', True)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_reset_secure_boot_keys(self, call_mock):
self.client.reset_secure_boot_keys()
call_mock.assert_called_once_with('reset_secure_boot_keys')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_clear_secure_boot_keys(self, call_mock):
self.client.clear_secure_boot_keys()
call_mock.assert_called_once_with('clear_secure_boot_keys')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_reset_ilo_credential(self, call_mock):
self.client.reset_ilo_credential('password')
call_mock.assert_called_once_with('reset_ilo_credential', 'password')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_reset_ilo(self, call_mock):
self.client.reset_ilo()
call_mock.assert_called_once_with('reset_ilo')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_reset_bios_to_default(self, call_mock):
self.client.reset_bios_to_default()
call_mock.assert_called_once_with('reset_bios_to_default')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_uuid(self, call_mock):
self.client.get_host_uuid()
call_mock.assert_called_once_with('get_host_uuid')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_data(self, call_mock):
self.client.get_host_health_data('fake-data')
call_mock.assert_called_once_with('get_host_health_data', 'fake-data')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_present_power_reading(self, call_mock):
self.client.get_host_health_present_power_reading('fake-data')
call_mock.assert_called_once_with(
'get_host_health_present_power_reading', 'fake-data')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_power_supplies(self, call_mock):
self.client.get_host_health_power_supplies('fake-data')
call_mock.assert_called_once_with('get_host_health_power_supplies',
'fake-data')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_fan_sensors(self, call_mock):
self.client.get_host_health_fan_sensors('fake-data')
call_mock.assert_called_once_with('get_host_health_fan_sensors',
'fake-data')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_temperature_sensors(self, call_mock):
self.client.get_host_health_temperature_sensors('fake-data')
call_mock.assert_called_once_with(
'get_host_health_temperature_sensors', 'fake-data')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_health_at_a_glance(self, call_mock):
self.client.get_host_health_at_a_glance('fake-data')
call_mock.assert_called_once_with('get_host_health_at_a_glance',
'fake-data')
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ribcl.RIBCLOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ribcl.RIBCLOperations, 'get_server_capabilities')
def test_get_server_capabilities(self, cap_mock, maj_min_mock, nic_mock):
info = {'address': "1.2.3.4", 'username': "admin", 'password': "Admin"}
str_val = maj_min_mock.return_value = "2.10"
nic_mock.return_value = '10Gb'
cap_mock.return_value = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
capabilities = self.client.get_server_capabilities()
expected_capabilities = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2',
'nic_capacity': '10Gb'}
cap_mock.assert_called_once_with()
nic_mock.assert_called_once_with(self.client.ipmi_host_info, str_val)
self.assertEqual(expected_capabilities, capabilities)
self.assertEqual(info, self.client.ipmi_host_info)
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ribcl.RIBCLOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ribcl.RIBCLOperations, 'get_server_capabilities')
def test_get_server_capabilities_no_nic(self, cap_mock, maj_min_mock,
nic_mock):
info = {'address': "1.2.3.4", 'username': "admin", 'password': "Admin"}
str_val = maj_min_mock.return_value = '2.10'
nic_mock.return_value = None
cap_mock.return_value = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
capabilities = self.client.get_server_capabilities()
expected_capabilities = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
cap_mock.assert_called_once_with()
nic_mock.assert_called_once_with(self.client.ipmi_host_info, str_val)
self.assertEqual(expected_capabilities, capabilities)
self.assertEqual(info, self.client.ipmi_host_info)
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ribcl.RIBCLOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ribcl.RIBCLOperations, 'get_server_capabilities')
def test_get_server_capabilities_no_firmware(self, cap_mock, maj_min_mock,
nic_mock):
maj_min_mock.return_value = None
nic_mock.return_value = None
cap_mock.return_value = {'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
expected_capabilities = {'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
capabilities = self.client.get_server_capabilities()
self.assertEqual(expected_capabilities, capabilities)
nic_mock.assert_called_once_with(self.client.ipmi_host_info, None)
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ribcl.RIBCLOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ribcl.RIBCLOperations, 'get_server_capabilities')
def test_get_server_capabilities_no_boot_modes(
self, cap_mock, maj_min_mock, nic_mock):
maj_min_mock.return_value = None
nic_mock.return_value = None
cap_mock.return_value = {'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
expected_capabilities = {'rom_firmware_version': 'x',
'server_model': 'Gen8',
'pci_gpu_devices': '2'}
capabilities = self.client.get_server_capabilities()
self.assertEqual(expected_capabilities, capabilities)
nic_mock.assert_called_once_with(self.client.ipmi_host_info, None)
@mock.patch.object(ris.RISOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ris.RISOperations, 'get_server_capabilities')
def test_get_server_capabilities_no_nic_Gen9(self, cap_mock, nic_mock,
mm_mock):
str_val = mm_mock.return_value = '2.10'
self.client.model = 'Gen9'
nic_mock.return_value = None
cap_mock.return_value = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'pci_gpu_devices': 2,
'secure_boot': 'true'}
capabilities = self.client.get_server_capabilities()
cap_mock.assert_called_once_with()
nic_mock.assert_called_once_with(self.client.ipmi_host_info, str_val)
expected_capabilities = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'pci_gpu_devices': 2,
'secure_boot': 'true'}
self.assertEqual(expected_capabilities, capabilities)
@mock.patch.object(ris.RISOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ris.RISOperations, 'get_server_capabilities')
def test_get_server_capabilities_Gen9(self, cap_mock, nic_mock, mm_mock):
str_val = mm_mock.return_value = '2.10'
self.client.model = 'Gen9'
nic_mock.return_value = '10Gb'
cap_mock.return_value = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'pci_gpu_devices': 2,
'secure_boot': 'true'}
capabilities = self.client.get_server_capabilities()
cap_mock.assert_called_once_with()
nic_mock.assert_called_once_with(self.client.ipmi_host_info, str_val)
expected_capabilities = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'pci_gpu_devices': 2,
'secure_boot': 'true',
'nic_capacity': '10Gb'}
self.assertEqual(expected_capabilities, capabilities)
@mock.patch.object(redfish, 'RedfishOperations')
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
@mock.patch.object(ipmi, 'get_nic_capacity')
def test_get_server_capabilities_Gen10(self, ipmi_mock,
ribcl_product_name_mock,
redfish_mock):
ribcl_product_name_mock.return_value = 'Gen10'
self.client = client.IloClient("1.2.3.4", "admin", "secret")
cap_mock = (redfish_mock.return_value.get_server_capabilities)
self.client.get_server_capabilities()
self.assertFalse(ipmi_mock.called)
self.assertTrue(cap_mock.called)
@mock.patch.object(ris.RISOperations,
'get_ilo_firmware_version_as_major_minor')
@mock.patch.object(ribcl.RIBCLOperations, 'get_host_health_data')
@mock.patch.object(ris.RISOperations,
'_get_number_of_gpu_devices_connected')
@mock.patch.object(ipmi, 'get_nic_capacity')
@mock.patch.object(ris.RISOperations, 'get_server_capabilities')
def test_get_server_capabilities_no_boot_modes_Gen9(
self, cap_mock, nic_mock, gpu_mock,
host_mock, mm_mock):
str_val = mm_mock.return_value = '2.10'
self.client.model = 'Gen9'
nic_mock.return_value = None
gpu_mock.return_value = None
cap_mock.return_value = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'secure_boot': 'true'}
capabilities = self.client.get_server_capabilities()
cap_mock.assert_called_once_with()
nic_mock.assert_called_once_with(self.client.ipmi_host_info, str_val)
expected_capabilities = {'ilo_firmware_version': '2.10',
'rom_firmware_version': 'x',
'server_model': 'Gen9',
'secure_boot': 'true'}
self.assertEqual(expected_capabilities, capabilities)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_activate_license(self, call_mock):
self.client.activate_license('fake-key')
call_mock.assert_called_once_with('activate_license', 'fake-key')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_delete_raid_configuration(self, call_mock):
self.client.delete_raid_configuration()
call_mock.assert_called_once_with('delete_raid_configuration')
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_delete_raid_configuration_gen9(self, get_product_mock):
self.client.model = 'Gen9'
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`delete_raid_configuration` is not supported '
'on ProLiant BL460c Gen9',
self.client.delete_raid_configuration)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_delete_raid_configuration_gen8(self, get_product_mock):
self.client.model = 'Gen8'
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`delete_raid_configuration` is not supported '
'on ProLiant DL380 G8',
self.client.delete_raid_configuration)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_do_disk_erase(self, call_mock):
self.client.do_disk_erase('SSD', None)
call_mock.assert_called_once_with(
'do_disk_erase', 'SSD', None)
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_do_disk_erase_gen9(self, get_product_mock):
self.client.model = 'Gen9'
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.do_disk_erase,
'SSD', None)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_do_disk_erase_gen8(self, get_product_mock):
self.client.model = 'Gen8'
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.do_disk_erase,
'SSD', None)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_do_one_button_secure_erase(self, call_mock):
self.client.do_one_button_secure_erase()
self.assertTrue(call_mock.called)
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_do_one_button_secure_erase_gen9(self, get_product_mock):
self.client.model = 'Gen9'
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.do_one_button_secure_erase)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_do_one_button_secure_erase_gen8(self, get_product_mock):
self.client.model = 'Gen8'
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.do_one_button_secure_erase)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_has_disk_erase_completed(self, call_mock):
self.client.has_disk_erase_completed()
call_mock.assert_called_once_with('has_disk_erase_completed')
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_has_disk_erase_completed_gen9(self, get_product_mock):
self.client.model = 'Gen9'
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.has_disk_erase_completed)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_has_disk_erase_completed_gen8(self, get_product_mock):
self.client.model = 'Gen8'
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'The specified operation is not supported '
'on current platform.',
self.client.has_disk_erase_completed)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_create_raid_configuration(self, call_mock):
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
self.client.create_raid_configuration(raid_config)
call_mock.assert_called_once_with('create_raid_configuration',
raid_config)
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_create_raid_configuration_gen9(self, get_product_mock):
self.client.model = 'Gen9'
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`create_raid_configuration` is not supported '
'on ProLiant BL460c Gen9',
self.client.create_raid_configuration,
raid_config)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_create_raid_configuration_gen8(self, get_product_mock):
self.client.model = 'Gen8'
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`create_raid_configuration` is not supported '
'on ProLiant DL380 G8',
self.client.create_raid_configuration,
raid_config)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_read_raid_configuration(self, call_mock):
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
self.client.read_raid_configuration(raid_config)
call_mock.assert_called_once_with('read_raid_configuration',
raid_config)
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_read_raid_configuration_gen9(self, get_product_mock):
self.client.model = 'Gen9'
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`read_raid_configuration` is not supported '
'on ProLiant BL460c Gen9',
self.client.read_raid_configuration,
raid_config)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_read_raid_configuration_gen8(self, get_product_mock):
self.client.model = 'Gen8'
ld1 = {"size_gb": 150, "raid_level": '0', "is_root_volume": True}
raid_config = {"logical_disks": [ld1]}
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'`read_raid_configuration` is not supported '
'on ProLiant DL380 G8',
self.client.read_raid_configuration,
raid_config)
@mock.patch.object(ris.RISOperations, 'eject_virtual_media')
def test_eject_virtual_media_gen9(self, eject_virtual_media_mock):
self.client.model = 'Gen9'
self.client.eject_virtual_media(device='FLOPPY')
eject_virtual_media_mock.assert_called_once_with('FLOPPY')
@mock.patch.object(ribcl.RIBCLOperations, 'eject_virtual_media')
def test_eject_virtual_media_gen8(self, eject_virtual_media_mock):
self.client.model = 'Gen8'
self.client.eject_virtual_media(device='FLOPPY')
eject_virtual_media_mock.assert_called_once_with('FLOPPY')
@mock.patch.object(ris.RISOperations, 'get_vm_status')
def test_get_vm_status_gen9(self, get_vm_status_mock):
self.client.model = 'Gen9'
self.client.get_vm_status(device='FLOPPY')
get_vm_status_mock.assert_called_once_with('FLOPPY')
@mock.patch.object(ribcl.RIBCLOperations, 'get_vm_status')
def test_get_vm_status_gen8(self, get_vm_status_mock):
self.client.model = 'Gen8'
self.client.get_vm_status(device='FLOPPY')
get_vm_status_mock.assert_called_once_with('FLOPPY')
@mock.patch.object(ris.RISOperations, 'set_vm_status')
def test_set_vm_status_gen9(self, set_vm_status_mock):
self.client.model = 'Gen9'
self.client.set_vm_status(device='FLOPPY', boot_option='BOOT_ONCE',
write_protect='YES')
set_vm_status_mock.assert_called_once_with('FLOPPY', 'BOOT_ONCE',
'YES')
@mock.patch.object(ribcl.RIBCLOperations, 'set_vm_status')
def test_set_vm_status_gen8(self, set_vm_status_mock):
self.client.model = 'Gen8'
self.client.set_vm_status(device='FLOPPY', boot_option='BOOT_ONCE',
write_protect='YES')
set_vm_status_mock.assert_called_once_with('FLOPPY', 'BOOT_ONCE',
'YES')
@mock.patch.object(ris.RISOperations, 'insert_virtual_media')
def test_insert_virtual_media_gen9(self, insert_virtual_media_mock):
self.client.model = 'Gen9'
self.client.insert_virtual_media(url="http://ilo/fpy.iso",
device='FLOPPY')
insert_virtual_media_mock.assert_called_once_with("http://ilo/fpy.iso",
"FLOPPY")
@mock.patch.object(ribcl.RIBCLOperations, 'insert_virtual_media')
def test_insert_virtual_media_gen8(self, insert_virtual_media_mock):
self.client.model = 'Gen8'
self.client.insert_virtual_media(url="http://ilo/fpy.iso",
device='FLOPPY')
insert_virtual_media_mock.assert_called_once_with("http://ilo/fpy.iso",
"FLOPPY")
@mock.patch.object(ris.RISOperations, 'get_one_time_boot')
def test_get_one_time_boot_gen9(self, get_one_time_boot_mock):
self.client.model = 'Gen9'
self.client.get_one_time_boot()
get_one_time_boot_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_one_time_boot')
def test_get_one_time_boot_gen8(self, get_one_time_boot_mock):
self.client.model = 'Gen8'
self.client.get_one_time_boot()
get_one_time_boot_mock.assert_called_once_with()
@mock.patch.object(ris.RISOperations, 'set_one_time_boot')
def test_set_one_time_boot_gen9(self, set_one_time_boot_mock):
self.client.model = 'Gen9'
self.client.set_one_time_boot('cdrom')
set_one_time_boot_mock.assert_called_once_with('cdrom')
@mock.patch.object(ribcl.RIBCLOperations, 'set_one_time_boot')
def test_set_one_time_boot_gen8(self, set_one_time_boot_mock):
self.client.model = 'Gen8'
self.client.set_one_time_boot('cdrom')
set_one_time_boot_mock.assert_called_once_with('cdrom')
@mock.patch.object(ris.RISOperations, 'update_persistent_boot')
def test_update_persistent_boot_gen9(self, update_persistent_boot_mock):
self.client.model = 'Gen9'
self.client.update_persistent_boot(['cdrom'])
update_persistent_boot_mock.assert_called_once_with(['cdrom'])
@mock.patch.object(ribcl.RIBCLOperations, 'update_persistent_boot')
def test_update_persistent_boot_gen8(self, update_persistent_boot_mock):
self.client.model = 'Gen8'
self.client.update_persistent_boot(['cdrom'])
update_persistent_boot_mock.assert_called_once_with(['cdrom'])
@mock.patch.object(ris.RISOperations, 'get_persistent_boot_device')
def test_get_persistent_boot_device_gen9(self, get_pers_boot_device_mock):
self.client.model = 'Gen9'
self.client.get_persistent_boot_device()
get_pers_boot_device_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_persistent_boot_device')
def test_get_persistent_boot_device_gen8(self, get_pers_boot_device_mock):
self.client.model = 'Gen8'
self.client.get_persistent_boot_device()
get_pers_boot_device_mock.assert_called_once_with()
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_update_firmware(self, _call_method_mock):
# | GIVEN |
some_url = 'some-url'
some_component_type = 'ilo'
# | WHEN |
self.client.update_firmware(some_url, some_component_type)
# | THEN |
_call_method_mock.assert_called_once_with('update_firmware',
some_url,
some_component_type)
@mock.patch.object(ris.RISOperations, 'hold_pwr_btn')
def test_hold_pwr_btn_gen9(self, hold_pwr_btn_mock):
self.client.model = 'Gen9'
self.client.hold_pwr_btn()
self.assertTrue(hold_pwr_btn_mock.called)
@mock.patch.object(ribcl.RIBCLOperations, 'hold_pwr_btn')
def test_hold_pwr_btn_gen8(self, hold_pwr_btn_mock):
self.client.model = 'Gen8'
self.client.hold_pwr_btn()
self.assertTrue(hold_pwr_btn_mock.called)
@mock.patch.object(ris.RISOperations, 'set_host_power')
def test_set_host_power_gen9(self, set_host_power_mock):
self.client.model = 'Gen9'
self.client.set_host_power('ON')
set_host_power_mock.assert_called_once_with('ON')
@mock.patch.object(ribcl.RIBCLOperations, 'set_host_power')
def test_set_host_power_gen8(self, set_host_power_mock):
self.client.model = 'Gen8'
self.client.set_host_power('ON')
set_host_power_mock.assert_called_once_with('ON')
@mock.patch.object(ris.RISOperations, 'press_pwr_btn')
def test_press_pwr_btn_gen9(self, press_pwr_btn_mock):
self.client.model = 'Gen9'
self.client.press_pwr_btn()
self.assertTrue(press_pwr_btn_mock.called)
@mock.patch.object(ribcl.RIBCLOperations, 'press_pwr_btn')
def test_press_pwr_btn_gen8(self, press_pwr_btn_mock):
self.client.model = 'Gen8'
self.client.press_pwr_btn()
self.assertTrue(press_pwr_btn_mock.called)
@mock.patch.object(ris.RISOperations, 'reset_server')
def test_reset_server_gen9(self, reset_server_mock):
self.client.model = 'Gen9'
self.client.reset_server()
self.assertTrue(reset_server_mock.called)
@mock.patch.object(ribcl.RIBCLOperations, 'reset_server')
def test_reset_server_gen8(self, reset_server_mock):
self.client.model = 'Gen8'
self.client.reset_server()
self.assertTrue(reset_server_mock.called)
@mock.patch.object(ris.RISOperations, 'get_current_bios_settings')
def test_get_current_bios_settings_gen9(self, cur_bios_settings_mock):
self.client.model = 'Gen9'
apply_filter = True
self.client.get_current_bios_settings(apply_filter)
cur_bios_settings_mock.assert_called_once_with(True)
@mock.patch.object(ris.RISOperations, 'get_pending_bios_settings')
def test_get_pending_bios_settings_gen9(self, pending_bios_settings_mock):
self.client.model = 'Gen9'
apply_filter = True
self.client.get_pending_bios_settings(apply_filter)
pending_bios_settings_mock.assert_called_once_with(True)
@mock.patch.object(ris.RISOperations, 'get_default_bios_settings')
def test_get_default_bios_settings_gen9(self, def_bios_settings_mock):
self.client.model = 'Gen9'
apply_filter = False
self.client.get_default_bios_settings(apply_filter)
def_bios_settings_mock.assert_called_once_with(False)
@mock.patch.object(ris.RISOperations, 'set_bios_settings')
def test_set_bios_settings_gen9(self, bios_settings_mock):
self.client.model = 'Gen9'
apply_filter = False
d = {'a': 'blah', 'b': 'blah blah'}
self.client.set_bios_settings(d, apply_filter)
bios_settings_mock.assert_called_once_with(d, False)
@mock.patch.object(client.IloClient.cls, '_call_method')
@mock.patch.object(snmp_cpqdisk_sizes, 'get_local_gb')
def test_get_essential_prop_no_snmp_ris(self,
snmp_mock,
call_mock):
self.client.model = 'Gen9'
properties = {'local_gb': 250}
data = {'properties': properties}
call_mock.return_value = data
self.client.get_essential_properties()
call_mock.assert_called_once_with('get_essential_properties')
self.assertFalse(snmp_mock.called)
@mock.patch.object(client.IloClient.cls, '_call_method')
@mock.patch.object(snmp_cpqdisk_sizes, 'get_local_gb')
def test_get_essential_prop_no_snmp_local_gb_0(self,
snmp_mock,
call_mock):
self.client.model = 'Gen9'
properties = {'local_gb': 0}
data = {'properties': properties}
call_mock.return_value = data
self.client.get_essential_properties()
call_mock.assert_called_once_with('get_essential_properties')
self.assertFalse(snmp_mock.called)
@mock.patch.object(client.IloClient.cls, '_call_method')
@mock.patch.object(snmp_cpqdisk_sizes, 'get_local_gb')
def test_get_essential_prop_snmp_true(self,
snmp_mock,
call_mock):
self.client.model = 'Gen9'
snmp_credentials = {'auth_user': 'user',
'auth_prot_pp': '1234',
'auth_priv_pp': '4321',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'snmp_inspection': 'true'}
self.client.snmp_credentials = snmp_credentials
properties = {'local_gb': 0}
data = {'properties': properties}
call_mock.return_value = data
snmp_mock.return_value = 250
self.client.get_essential_properties()
call_mock.assert_called_once_with('get_essential_properties')
snmp_mock.assert_called_once_with(
self.client.ipmi_host_info['address'], snmp_credentials)
@mock.patch.object(client.IloClient.cls, '_call_method')
@mock.patch.object(snmp_cpqdisk_sizes, 'get_local_gb')
def test_get_essential_prop_snmp_true_local_gb_0(self,
snmp_mock,
call_mock):
self.client.model = 'Gen9'
snmp_credentials = {'auth_user': 'user',
'auth_prot_pp': '1234',
'auth_priv_pp': '4321',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'snmp_inspection': 'true'}
self.client.snmp_credentials = snmp_credentials
properties = {'local_gb': 0}
data = {'properties': properties}
call_mock.return_value = data
snmp_mock.return_value = 0
self.client.get_essential_properties()
call_mock.assert_called_once_with('get_essential_properties')
snmp_mock.assert_called_once_with(
self.client.ipmi_host_info['address'], snmp_credentials)
@mock.patch.object(snmp_cpqdisk_sizes, 'get_local_gb')
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_essential_prop_snmp_false_local_gb_0(self, call_mock,
snmp_mock):
self.client.model = 'Gen9'
snmp_credentials = {'auth_user': 'user',
'auth_prot_pp': '1234',
'auth_priv_pp': '4321',
'auth_protocol': 'SHA',
'priv_protocol': 'AES',
'snmp_inspection': False}
self.client.snmp_inspection = False
self.client.snmp_credentials = snmp_credentials
properties = {'local_gb': 0}
data = {'properties': properties}
call_mock.return_value = data
self.client.get_essential_properties()
call_mock.assert_called_once_with('get_essential_properties')
self.assertFalse(snmp_mock.called)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_inject_nmi(self, call_mock):
self.client.inject_nmi()
call_mock.assert_called_once_with('inject_nmi')
@mock.patch.object(ris.RISOperations, 'inject_nmi')
def test_inject_nmi_gen9(self, inject_nmi_mock):
self.client.model = 'Gen9'
self.client.inject_nmi()
inject_nmi_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_inject_nmi_gen8(self, product_mock):
self.client.model = 'Gen8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'not supported',
self.client.inject_nmi)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_host_post_state(self, call_mock):
self.client.get_host_post_state()
call_mock.assert_called_once_with('get_host_post_state')
@mock.patch.object(ris.RISOperations, 'get_host_post_state')
def test_get_host_post_state_gen9(self, get_host_post_state_mock):
self.client.model = 'Gen9'
self.client.get_host_post_state()
get_host_post_state_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_host_post_state')
def test_get_host_post_state_gen8(self, get_host_post_state_mock):
self.client.model = 'Gen8'
self.client.get_host_post_state()
get_host_post_state_mock.assert_called_once_with()
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_bios_settings_result(self, call_mock):
self.client.get_bios_settings_result()
call_mock.assert_called_once_with('get_bios_settings_result')
@mock.patch.object(ris.RISOperations, 'get_bios_settings_result')
def test_get_bios_settings_result_gen9(self, get_bios_settings_mock):
self.client.model = 'Gen9'
self.client.get_bios_settings_result()
get_bios_settings_mock.assert_called_once_with()
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_get_bios_settings_result_gen8(self, product_mock):
self.client.model = 'Gen8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'not supported',
self.client.get_bios_settings_result)
@mock.patch.object(client.IloClient.cls, '_call_method')
def test_get_available_disk_types(self, call_mock):
self.client.get_available_disk_types()
call_mock.assert_called_once_with('get_available_disk_types')
@mock.patch.object(ris.RISOperations, 'get_product_name')
def test_get_available_disk_types_gen9(self, get_product_mock):
self.client.model = 'Gen9'
get_product_mock.return_value = 'ProLiant BL460c Gen9'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'not supported',
self.client.get_available_disk_types)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def test_get_available_disk_types_gen8(self, get_product_mock):
self.client.model = 'Gen8'
get_product_mock.return_value = 'ProLiant DL380 G8'
self.assertRaisesRegex(exception.IloCommandNotSupportedError,
'not supported',
self.client.get_available_disk_types)
class IloRedfishClientTestCase(testtools.TestCase):
@mock.patch.object(redfish, 'RedfishOperations',
spec_set=True, autospec=True)
@mock.patch.object(ribcl.RIBCLOperations, 'get_product_name')
def setUp(self, product_mock, redfish_mock):
super(IloRedfishClientTestCase, self).setUp()
self.redfish_mock = redfish_mock
product_mock.return_value = 'Gen10'
self.client = client.IloClient.cls("1.2.3.4", "Admin", "admin")
def test_calling_redfish_operations_gen10(self):
self.client.model = 'Gen10'
def validate_method_calls(methods, method_args, missed_ops):
for redfish_method_name in methods:
try:
if method_args:
eval('self.client.' + redfish_method_name)(
*method_args)
else:
eval('self.client.' + redfish_method_name)()
if redfish_method_name not in ('unset_iscsi_boot_info',
'set_iscsi_boot_info'):
self.assertTrue(eval(
'self.redfish_mock.return_value.'
+ redfish_method_name).called)
validate_method_calls.no_test_cases += 1
except TypeError:
missed_ops.append(redfish_method_name)
validate_method_calls.no_test_cases = 0
missed_operations = []
validate_method_calls(
client.SUPPORTED_REDFISH_METHODS, (), missed_operations)
more_missed_operations = []
validate_method_calls(
missed_operations, ('arg',), more_missed_operations)
even_more_missed_operations = []
validate_method_calls(
more_missed_operations, ('arg1', 'arg2'),
even_more_missed_operations)
if (len(even_more_missed_operations) == 1):
self.assertEqual('set_iscsi_info',
even_more_missed_operations[0])
else:
self.assertEqual(2, len(even_more_missed_operations))
self.assertEqual(len(client.SUPPORTED_REDFISH_METHODS) - 2,
validate_method_calls.no_test_cases)
|