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
|
"""
SoftLayer.tests.managers.vs.vs_tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:license: MIT, see LICENSE for more details.
"""
from unittest import mock as mock
import SoftLayer
from SoftLayer import exceptions
from SoftLayer import fixtures
from SoftLayer import testing
class VSTests(testing.TestCase):
def set_up(self):
self.vs = SoftLayer.VSManager(self.client, SoftLayer.OrderingManager(self.client))
def test_list_instances(self):
results = self.vs.list_instances(hourly=True, monthly=True)
for result in results:
self.assertIn(result['id'], [100, 104])
self.assert_called_with('SoftLayer_Account', 'getVirtualGuests')
def test_list_instances_neither(self):
results = self.vs.list_instances(hourly=False, monthly=False)
for result in results:
self.assertIn(result['id'], [100, 104])
self.assert_called_with('SoftLayer_Account', 'getVirtualGuests')
def test_list_instances_monthly(self):
results = self.vs.list_instances(hourly=False, monthly=True)
for result in results:
self.assertIn(result['id'], [100])
self.assert_called_with('SoftLayer_Account', 'getMonthlyVirtualGuests')
def test_list_instances_hourly(self):
results = self.vs.list_instances(hourly=True, monthly=False)
for result in results:
self.assertIn(result['id'], [104])
self.assert_called_with('SoftLayer_Account', 'getHourlyVirtualGuests')
def test_list_instances_with_filters(self):
self.vs.list_instances(
hourly=True,
monthly=True,
tags=['tag1', 'tag2'],
cpus=2,
memory=1024,
hostname='hostname',
domain='example.com',
local_disk=True,
datacenter='dal05',
nic_speed=100,
public_ip='1.2.3.4',
private_ip='4.3.2.1',
transient=False,
)
_filter = {
'virtualGuests': {
'datacenter': {
'name': {'operation': '_= dal05'}},
'domain': {'operation': '_= example.com'},
'tagReferences': {
'tag': {'name': {
'operation': 'in',
'options': [{
'name': 'data', 'value': ['tag1', 'tag2']}]}}},
'maxCpu': {'operation': 2},
'localDiskFlag': {'operation': True},
'maxMemory': {'operation': 1024},
'hostname': {'operation': '_= hostname'},
'networkComponents': {'maxSpeed': {'operation': 100}},
'primaryIpAddress': {'operation': '_= 1.2.3.4'},
'primaryBackendIpAddress': {'operation': '_= 4.3.2.1'},
'transientGuestFlag': {'operation': False},
}
}
self.assert_called_with('SoftLayer_Account', 'getVirtualGuests',
filter=_filter)
def test_resolve_ids_ip(self):
_id = self.vs._get_ids_from_ip('172.16.240.2')
self.assertEqual(_id, [100, 104])
def test_resolve_ids_ip_private(self):
# Now simulate a private IP test
mock = self.set_mock('SoftLayer_Account', 'getVirtualGuests')
mock.side_effect = [[], [{'id': 99}]]
_id = self.vs._get_ids_from_ip('10.0.1.87')
self.assertEqual(_id, [99])
def test_resolve_ids_ip_invalid(self):
_id = self.vs._get_ids_from_ip('nope')
self.assertEqual(_id, [])
def test_resolve_ids_hostname(self):
_id = self.vs._get_ids_from_hostname('vs-test1')
self.assertEqual(_id, [100, 104])
def test_get_instance(self):
result = self.vs.get_instance(100)
self.assertEqual(fixtures.SoftLayer_Virtual_Guest.getObject, result)
self.assert_called_with('SoftLayer_Virtual_Guest', 'getObject',
identifier=100)
def test_get_create_options(self):
options = self.vs.get_create_options()
extras = {'key': '1_IPV6_ADDRESS', 'name': '1 IPv6 Address'}
locations = {'key': 'wdc07', 'name': 'Washington 7'}
operating_systems = {
'key': 'OS_UBUNTU_14_04_LTS_TRUSTY_TAHR_64_BIT',
'name': 'Ubuntu / 14.04-64',
'referenceCode': 'UBUNTU_14_64'
}
port_speeds = {
'key': '10',
'name': '10 Mbps Public & Private Network Uplinks'
}
sizes = {
'key': 'M1_64X512X25',
'name': 'M1.64x512x25',
'hourlyRecurringFee': 0.0,
'recurringFee': 0.0
}
self.assertEqual(options['extras'][0]['key'], extras['key'])
self.assertEqual(options['locations'][0], locations)
self.assertEqual(options['operating_systems'][0]['referenceCode'],
operating_systems['referenceCode'])
self.assertEqual(options['port_speed'][0]['name'], port_speeds['name'])
self.assertEqual(options['sizes'][0], sizes)
def test_get_create_options_prices_by_location(self):
options = self.vs.get_create_options('wdc07')
extras = {'key': '1_IPV6_ADDRESS', 'name': '1 IPv6 Address',
'prices': [
{
'hourlyRecurringFee': '0',
'id': 272,
'locationGroupId': '',
'recurringFee': '0',
}
]
}
locations = {'key': 'wdc07', 'name': 'Washington 7'}
operating_systems = {
'key': 'OS_UBUNTU_14_04_LTS_TRUSTY_TAHR_64_BIT',
'name': 'Ubuntu / 14.04-64',
'referenceCode': 'UBUNTU_14_64',
'prices': [
{
'hourlyRecurringFee': '0',
'id': 272,
'locationGroupId': '',
'recurringFee': '0',
}
]
}
port_speeds = {
'key': '10',
'name': '10 Mbps Public & Private Network Uplinks',
'prices': [
{
'hourlyRecurringFee': '0',
'id': 272,
'locationGroupId': '',
'recurringFee': '0',
}
]
}
sizes = {
'key': 'M1_64X512X25',
'name': 'M1.64x512x25',
'hourlyRecurringFee': 0.0,
'recurringFee': 0.0
}
self.assertEqual(options['extras'][0]['prices'][0]['hourlyRecurringFee'],
extras['prices'][0]['hourlyRecurringFee'])
self.assertEqual(options['locations'][0], locations)
self.assertEqual(options['operating_systems'][0]['prices'][0]['locationGroupId'],
operating_systems['prices'][0]['locationGroupId'])
self.assertEqual(options['port_speed'][0]['prices'][0]['id'], port_speeds['prices'][0]['id'])
self.assertEqual(options['sizes'][0], sizes)
def test_cancel_instance(self):
result = self.vs.cancel_instance(1)
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest', 'deleteObject',
identifier=1)
def test_reload_instance(self):
self.vs.reload_instance(1)
self.assert_called_with('SoftLayer_Virtual_Guest',
'reloadOperatingSystem',
args=('FORCE', {}),
identifier=1)
def test_reload_instance_posturi_sshkeys(self):
post_uri = 'http://test.sftlyr.ws/test.sh'
self.vs.reload_instance(1, post_uri=post_uri, ssh_keys=[1701])
args = ('FORCE', {'customProvisionScriptUri': post_uri,
'sshKeyIds': [1701]})
self.assert_called_with('SoftLayer_Virtual_Guest',
'reloadOperatingSystem',
args=args,
identifier=1)
def test_reload_instance_with_new_os(self):
self.vs.reload_instance(1, image_id=1234)
args = ('FORCE', {'imageTemplateId': 1234})
self.assert_called_with('SoftLayer_Virtual_Guest',
'reloadOperatingSystem',
args=args,
identifier=1)
@mock.patch('SoftLayer.managers.vs.VSManager._generate_create_dict')
def test_create_instance(self, create_dict):
create_dict.return_value = {'test': 1, 'verify': 1}
self.vs.create_instance(test=1, verify=1, tags='dev,green')
create_dict.assert_called_once_with(test=1, verify=1)
self.assert_called_with('SoftLayer_Virtual_Guest', 'createObject',
args=({'test': 1, 'verify': 1},))
self.assert_called_with('SoftLayer_Virtual_Guest', 'setTags',
args=('dev,green',),
identifier=100)
def test_create_instances(self):
self.vs.create_instances([{'cpus': 1,
'memory': 1024,
'hostname': 'server',
'domain': 'example.com',
'tags': 'dev,green'}])
args = ([{'domain': 'example.com',
'hourlyBillingFlag': True,
'localDiskFlag': True,
'maxMemory': 1024,
'hostname': 'server',
'startCpus': 1,
'supplementalCreateObjectOptions': {'bootMode': None}}],)
self.assert_called_with('SoftLayer_Virtual_Guest', 'createObjects',
args=args)
self.assert_called_with('SoftLayer_Virtual_Guest', 'setTags',
args=('dev,green',),
identifier=100)
def test_generate_os_and_image(self):
self.assertRaises(
ValueError,
self.vs._generate_create_dict,
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code=1,
image_id=1,
)
def test_generate_missing(self):
self.assertRaises(ValueError, self.vs._generate_create_dict)
self.assertRaises(ValueError, self.vs._generate_create_dict, cpus=1)
def test_generate_basic(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_monthly(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
hourly=False,
)
assert_data = {
'hourlyBillingFlag': False,
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_image_id(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
image_id="45",
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'blockDeviceTemplateGroup': {"globalIdentifier": "45"},
'hourlyBillingFlag': True,
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_dedicated(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
dedicated=True,
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'dedicatedAccountHostOnlyFlag': True,
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_datacenter(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
datacenter="sng01",
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'datacenter': {"name": 'sng01'},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_public_vlan(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
public_vlan=1,
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'primaryNetworkComponent': {"networkVlan": {"id": 1}},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_public_vlan_with_public_subnet(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
public_vlan=1,
public_subnet=1
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'primaryNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_private_vlan_with_private_subnet(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_vlan=1,
private_subnet=1
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'primaryBackendNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_private_vlan_subnet_public_vlan_subnet(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_vlan=1,
private_subnet=1,
public_vlan=1,
public_subnet=1,
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'primaryBackendNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
'primaryNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_private_subnet(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._generate_create_dict,
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_subnet=1,
)
self.assertEqual(str(actual), "You need to specify a private_vlan with private_subnet")
def test_generate_public_subnet(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._generate_create_dict,
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
public_subnet=1,
)
self.assertEqual(str(actual), "You need to specify a public_vlan with public_subnet")
def test_generate_private_vlan(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_vlan=1,
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'primaryBackendNetworkComponent': {'networkVlan': {'id': 1}},
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_by_router_and_vlan(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._generate_create_dict,
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_router=1,
private_vlan=1
)
self.assertEqual(str(actual), "You have to select network vlan or network vlan with a subnet or only router, "
"not all options")
def test_generate_by_router_and_subnet(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._generate_create_dict,
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
private_router=1,
private_subnet=1
)
self.assertEqual(str(actual), "You have to select network vlan or network vlan with a subnet or only router, "
"not all options")
def test_generate_sec_group(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='test.com',
os_code="OS",
public_security_groups=[1, 2, 3],
private_security_groups=[4, 5, 6]
)
pub_sec_binding = data['primaryNetworkComponent']['securityGroupBindings']
prv_sec_binding = data['primaryBackendNetworkComponent']['securityGroupBindings']
# Public
self.assertEqual(pub_sec_binding[0]['securityGroup']['id'], 1)
self.assertEqual(pub_sec_binding[1]['securityGroup']['id'], 2)
self.assertEqual(pub_sec_binding[2]['securityGroup']['id'], 3)
# Private
self.assertEqual(prv_sec_binding[0]['securityGroup']['id'], 4)
self.assertEqual(prv_sec_binding[1]['securityGroup']['id'], 5)
self.assertEqual(prv_sec_binding[2]['securityGroup']['id'], 6)
def test_create_network_components_vlan_subnet_private_vlan_subnet_public(self):
data = self.vs._create_network_components(
private_vlan=1,
private_subnet=1,
public_vlan=1,
public_subnet=1,
)
assert_data = {
'primaryBackendNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
'primaryNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
}
self.assertEqual(data, assert_data)
def test_create_network_components_by_routers(self):
data = self.vs._create_network_components(
private_router=1,
public_router=1
)
assert_data = {
'primaryBackendNetworkComponent': {'router': {'id': 1}},
'primaryNetworkComponent': {'router': {'id': 1}},
}
self.assertEqual(data, assert_data)
def test_create_network_components_by_routers_and_vlan(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._create_network_components,
private_router=1,
public_router=1,
private_vlan=1
)
self.assertEqual(str(actual), "You have to select network vlan or network vlan with a subnet or only router, "
"not all options")
def test_create_network_components_vlan_subnet_private(self):
data = self.vs._create_network_components(
private_vlan=1,
private_subnet=1,
)
assert_data = {
'primaryBackendNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
}
self.assertEqual(data, assert_data)
def test_create_network_components_vlan_subnet_public(self):
data = self.vs._create_network_components(
public_vlan=1,
public_subnet=1,
)
assert_data = {
'primaryNetworkComponent': {'networkVlan': {'id': 1,
'primarySubnet': {'id': 1}}},
}
self.assertEqual(data, assert_data)
def test_create_network_components_private_subnet(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._create_network_components,
private_subnet=1,
)
self.assertEqual(str(actual), "You need to specify a private_vlan with private_subnet")
def test_create_network_components_public_subnet(self):
actual = self.assertRaises(
exceptions.SoftLayerError,
self.vs._create_network_components,
public_subnet=1,
)
self.assertEqual(str(actual), "You need to specify a public_vlan with public_subnet")
def test_generate_userdata(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
userdata="ICANHAZVSI",
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'userData': [{'value': "ICANHAZVSI"}],
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_network(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
nic_speed=9001,
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'networkComponents': [{'maxSpeed': 9001}],
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_private_network_only(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
nic_speed=9001,
private=True
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'privateNetworkOnlyFlag': True,
'hourlyBillingFlag': True,
'networkComponents': [{'maxSpeed': 9001}],
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_post_uri(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
post_uri='https://example.com/boostrap.sh',
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'postInstallScriptUri': 'https://example.com/boostrap.sh',
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_sshkey(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
ssh_keys=[543],
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'sshKeys': [{'id': 543}],
'supplementalCreateObjectOptions': {'bootMode': None},
}
self.assertEqual(data, assert_data)
def test_generate_no_disks(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING"
)
self.assertEqual(data.get('blockDevices'), None)
def test_generate_single_disk(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
disks=[50]
)
assert_data = {
'blockDevices': [
{"device": "0", "diskImage": {"capacity": 50}}]
}
self.assertTrue(data.get('blockDevices'))
self.assertEqual(data['blockDevices'], assert_data['blockDevices'])
def test_generate_multi_disk(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
disks=[50, 70, 100]
)
assert_data = {
'blockDevices': [
{"device": "0", "diskImage": {"capacity": 50}},
{"device": "2", "diskImage": {"capacity": 70}},
{"device": "3", "diskImage": {"capacity": 100}}]
}
self.assertTrue(data.get('blockDevices'))
self.assertEqual(data['blockDevices'], assert_data['blockDevices'])
def test_generate_boot_mode(self):
data = self.vs._generate_create_dict(
cpus=1,
memory=1,
hostname='test',
domain='example.com',
os_code="STRING",
boot_mode="HVM"
)
assert_data = {
'startCpus': 1,
'maxMemory': 1,
'hostname': 'test',
'domain': 'example.com',
'localDiskFlag': True,
'operatingSystemReferenceCode': "STRING",
'hourlyBillingFlag': True,
'supplementalCreateObjectOptions': {'bootMode': 'HVM'},
}
self.assertEqual(data, assert_data)
def test_change_port_speed_public(self):
result = self.vs.change_port_speed(1, True, 100)
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest',
'setPublicNetworkInterfaceSpeed',
identifier=1,
args=(100,))
def test_change_port_speed_private(self):
result = self.vs.change_port_speed(2, False, 10)
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest',
'setPrivateNetworkInterfaceSpeed',
identifier=2,
args=(10,))
def test_rescue(self):
# Test rescue environment
result = self.vs.rescue(1234)
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest',
'executeRescueLayer',
identifier=1234)
def test_edit_metadata(self):
# Test editing user data
result = self.vs.edit(100, userdata='my data')
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest', 'setUserMetadata',
identifier=100,
args=(['my data'],))
def test_edit_blank(self):
# Now test a blank edit
self.assertTrue(self.vs.edit, 100)
def test_edit_full(self):
result = self.vs.edit(100,
hostname='new-host',
domain='new.sftlyr.ws',
notes='random notes')
self.assertEqual(result, True)
args = ({
'hostname': 'new-host',
'domain': 'new.sftlyr.ws',
'notes': 'random notes',
},)
self.assert_called_with('SoftLayer_Virtual_Guest', 'editObject',
identifier=100,
args=args)
def test_edit_tags(self):
# Test tag support
result = self.vs.edit(100, tags='dev,green')
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest', 'setTags',
identifier=100,
args=('dev,green',))
def test_edit_tags_blank(self):
result = self.vs.edit(100, tags='')
self.assertEqual(result, True)
self.assert_called_with('SoftLayer_Virtual_Guest', 'setTags',
identifier=100,
args=('',))
def test_captures(self):
# capture only the OS disk
result = self.vs.capture(1, 'a')
expected = fixtures.SoftLayer_Virtual_Guest.createArchiveTemplate
self.assertEqual(result, expected)
args = ('a', [{'device': 0, 'uuid': 1, 'mountType': 'Disk'}], None)
self.assert_called_with('SoftLayer_Virtual_Guest',
'createArchiveTemplate',
args=args,
identifier=1)
def test_capture_additional_disks(self):
# capture all the disks, minus the swap
# make sure the data is carried along with it
result = self.vs.capture(1, 'a', additional_disks=True)
expected = fixtures.SoftLayer_Virtual_Guest.createArchiveTemplate
self.assertEqual(result, expected)
args = ('a', [{'device': 0, 'mountType': 'Disk', 'uuid': 1},
{'device': 3, 'mountType': 'Disk', 'uuid': 3}], None)
self.assert_called_with('SoftLayer_Virtual_Guest',
'createArchiveTemplate',
args=args,
identifier=1)
def test_usage_vs_cpu(self):
result = self.vs.get_summary_data_usage('100',
start_date='2019-3-4',
end_date='2019-4-2',
valid_type='CPU0',
summary_period=300)
expected = fixtures.SoftLayer_Metric_Tracking_Object.getSummaryData
self.assertEqual(result, expected)
args = ('2019-3-4', '2019-4-2', [{"keyName": "CPU0", "summaryType": "max"}], 300)
self.assert_called_with('SoftLayer_Metric_Tracking_Object',
'getSummaryData', args=args, identifier=1000)
def test_usage_vs_memory(self):
result = self.vs.get_summary_data_usage('100',
start_date='2019-3-4',
end_date='2019-4-2',
valid_type='MEMORY_USAGE',
summary_period=300)
expected = fixtures.SoftLayer_Metric_Tracking_Object.getSummaryData
self.assertEqual(result, expected)
args = ('2019-3-4', '2019-4-2', [{"keyName": "MEMORY_USAGE", "summaryType": "max"}], 300)
self.assert_called_with('SoftLayer_Metric_Tracking_Object', 'getSummaryData', args=args, identifier=1000)
def test_get_tracking_id(self):
result = self.vs.get_tracking_id(1234)
self.assert_called_with('SoftLayer_Virtual_Guest', 'getMetricTrackingObjectId')
self.assertEqual(result, 1000)
def test_get_bandwidth_data(self):
result = self.vs.get_bandwidth_data(1234, '2019-01-01', '2019-02-01', 'public', 1000)
self.assert_called_with('SoftLayer_Metric_Tracking_Object',
'getBandwidthData',
args=('2019-01-01', '2019-02-01', 'public', 1000),
identifier=1000)
self.assertEqual(result[0]['type'], 'cpu0')
def test_get_bandwidth_allocation(self):
result = self.vs.get_bandwidth_allocation(1234)
self.assert_called_with('SoftLayer_Virtual_Guest', 'getBandwidthAllotmentDetail', identifier=1234)
self.assert_called_with('SoftLayer_Virtual_Guest', 'getBillingCycleBandwidthUsage', identifier=1234)
self.assertEqual(result['allotment']['amount'], '250')
self.assertEqual(result['usage'][0]['amountIn'], '.448')
def test_get_bandwidth_allocation_no_allotment(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getBandwidthAllotmentDetail')
mock.return_value = None
result = self.vs.get_bandwidth_allocation(1234)
self.assertEqual(None, result['allotment'])
def test_get_bandwidth_allocation_with_allotment(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getBandwidthAllotmentDetail')
mock.return_value = {
"allocationId": 11111,
"id": 22222,
"allocation": {
"amount": "2000"
}
}
result = self.vs.get_bandwidth_allocation(1234)
self.assertEqual(2000, int(result['allotment']['amount']))
def test_get_storage_iscsi_details(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAttachedNetworkStorages')
mock.return_value = [
{
"accountId": 11111,
"capacityGb": 12000,
"id": 3777123,
"nasType": "ISCSI",
"username": "SL02SEL31111-9",
}
]
result = self.vs.get_storage_details(1234, 'ISCSI')
self.assertEqual([{
"accountId": 11111,
"capacityGb": 12000,
"id": 3777123,
"nasType": "ISCSI",
"username": "SL02SEL31111-9",
}], result)
def test_get_storage_iscsi_empty_details(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAttachedNetworkStorages')
mock.return_value = []
result = self.vs.get_storage_details(1234, 'ISCSI')
self.assertEqual([], result)
def test_get_storage_nas_details(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAttachedNetworkStorages')
mock.return_value = [
{
"accountId": 11111,
"capacityGb": 12000,
"id": 3777111,
"nasType": "NAS",
"username": "SL02SEL32222-9",
}
]
result = self.vs.get_storage_details(1234, 'NAS')
self.assertEqual([{
"accountId": 11111,
"capacityGb": 12000,
"id": 3777111,
"nasType": "NAS",
"username": "SL02SEL32222-9",
}], result)
def test_get_storage_nas_empty_details(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAttachedNetworkStorages')
mock.return_value = []
result = self.vs.get_storage_details(1234, 'NAS')
self.assertEqual([], result)
def test_get_storage_credentials(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAllowedHost')
mock.return_value = {
"accountId": 11111,
"id": 33333,
"name": "iqn.2020-03.com.ibm:sl02su11111-v62941551",
"resourceTableName": "VIRTUAL_GUEST",
"credential": {
"accountId": "11111",
"id": 44444,
"password": "SjFDCpHrjskfj",
"username": "SL02SU11111-V62941551"
}
}
result = self.vs.get_storage_credentials(1234)
self.assertEqual({
"accountId": 11111,
"id": 33333,
"name": "iqn.2020-03.com.ibm:sl02su11111-v62941551",
"resourceTableName": "VIRTUAL_GUEST",
"credential": {
"accountId": "11111",
"id": 44444,
"password": "SjFDCpHrjskfj",
"username": "SL02SU11111-V62941551"
}
}, result)
def test_get_none_storage_credentials(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getAllowedHost')
mock.return_value = None
result = self.vs.get_storage_credentials(1234)
self.assertEqual(None, result)
def test_get_portable_storage(self):
result = self.vs.get_portable_storage(1234)
self.assert_called_with('SoftLayer_Account',
'getPortableStorageVolumes')
self.assertEqual([
{
"capacity": 200,
"createDate": "2018-10-06T04:27:59-06:00",
"description": "Disk 2",
"id": 11111,
"modifyDate": "",
"name": "Disk 2",
"parentId": "",
"storageRepositoryId": 22222,
"typeId": 241,
"units": "GB",
"uuid": "fd477feb-bf32-408e-882f-02540gghgh111"
}
], result)
def test_get_portable_storage_empty(self):
mock = self.set_mock('SoftLayer_Account', 'getPortableStorageVolumes')
mock.return_value = []
result = self.vs.get_portable_storage(1234)
self.assertEqual([], result)
def test_get_local_disks_system(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getBlockDevices')
mock.return_value = [
{
"createDate": "2018-10-06T04:27:35-06:00",
"device": "0",
"id": 11111,
"mountType": "Disk",
"diskImage": {
"capacity": 100,
"description": "adns.vmware.com",
"id": 72222,
"name": "adns.vmware.com",
"units": "GB",
}
}
]
result = self.vs.get_local_disks(1234)
self.assertEqual([
{
"createDate": "2018-10-06T04:27:35-06:00",
"device": "0",
"id": 11111,
"mountType": "Disk",
"diskImage": {
"capacity": 100,
"description": "adns.vmware.com",
"id": 72222,
"name": "adns.vmware.com",
"units": "GB",
}
}
], result)
def test_get_local_disks_empty(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getBlockDevices')
mock.return_value = []
result = self.vs.get_local_disks(1234)
self.assertEqual([], result)
def test_get_local_disks_swap(self):
mock = self.set_mock('SoftLayer_Virtual_Guest', 'getBlockDevices')
mock.return_value = [
{
"device": "1",
"id": 22222,
"mountType": "Disk",
"statusId": 1,
"diskImage": {
"capacity": 2,
"description": "6211111-SWAP",
"id": 33333,
"name": "6211111-SWAP",
"units": "GB",
}
}
]
result = self.vs.get_local_disks(1234)
self.assertEqual([
{
"device": "1",
"id": 22222,
"mountType": "Disk",
"statusId": 1,
"diskImage": {
"capacity": 2,
"description": "6211111-SWAP",
"id": 33333,
"name": "6211111-SWAP",
"units": "GB",
}
}
], result)
def test_migrate(self):
result = self.vs.migrate(1234)
self.assertTrue(result)
self.assert_called_with('SoftLayer_Virtual_Guest', 'migrate', identifier=1234)
def test_migrate_dedicated(self):
result = self.vs.migrate_dedicated(1234, 5555)
self.assertTrue(result)
self.assert_called_with('SoftLayer_Virtual_Guest', 'migrateDedicatedHost', args=(5555,), identifier=1234)
def test_authorize_storage(self):
options = self.vs.authorize_storage(1234, "SL01SEL301234-11")
self.assertEqual(True, options)
def test_authorize_storage_empty(self):
mock = self.set_mock('SoftLayer_Account', 'getNetworkStorage')
mock.return_value = []
self.assertRaises(SoftLayer.exceptions.SoftLayerError,
self.vs.authorize_storage,
1234, "#")
def test_authorize_portable_storage(self):
options = self.vs.attach_portable_storage(1234, 1234567)
self.assertEqual(1234567, options['id'])
def test_browser_access_log(self):
result = self.vs.browser_access_log(1234)
self.assertTrue(result)
self.assert_called_with('SoftLayer_Virtual_Guest', 'getBrowserConsoleAccessLogs', identifier=1234)
def test_notification(self):
self.vs.get_notifications(100)
self.assert_called_with('SoftLayer_User_Customer_Notification_Virtual_Guest', 'findByGuestId')
def test_add_notification(self):
self.vs.add_notification(100, 123456)
self.assert_called_with('SoftLayer_User_Customer_Notification_Virtual_Guest', 'createObject')
def test_notification_del(self):
self.vs.remove_notification(100)
self.assert_called_with('SoftLayer_User_Customer_Notification_Virtual_Guest', 'deleteObjects')
|