forked from softlayer/softlayer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock_tests.py
814 lines (669 loc) · 33.8 KB
/
block_tests.py
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
"""
SoftLayer.tests.CLI.modules.block_tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:license: MIT, see LICENSE for more details.
"""
from SoftLayer.CLI import exceptions
from SoftLayer.CLI import formatting
from SoftLayer import SoftLayerAPIError
from SoftLayer import testing
import json
from unittest import mock as mock
class BlockTests(testing.TestCase):
def test_access_list(self):
result = self.run_command(['block', 'access-list', '1234'])
self.assert_no_fail(result)
self.assert_called_with('SoftLayer_Network_Storage', 'getObject')
def test_volume_cancel(self):
result = self.run_command([
'--really', 'block', 'volume-cancel', '1234'])
self.assert_no_fail(result)
self.assertEqual('Block volume with id 1234 has been marked'
' for cancellation\n', result.output)
self.assert_called_with('SoftLayer_Billing_Item', 'cancelItem',
args=(False, True, None))
def test_volume_set_lun_id_in_range(self):
lun_mock = self.set_mock('SoftLayer_Network_Storage', 'createOrUpdateLunId')
lun_mock.return_value = dict(volumeId=1234, value='42')
result = self.run_command('block volume-set-lun-id 1234 42'.split())
self.assert_no_fail(result)
self.assertEqual('Block volume with id 1234 is reporting LUN ID 42\n',
result.output)
def test_volume_set_lun_id_in_range_missing_value(self):
lun_mock = self.set_mock('SoftLayer_Network_Storage', 'createOrUpdateLunId')
lun_mock.return_value = dict(volumeId=1234)
result = self.run_command('block volume-set-lun-id 1234 42'.split())
self.assert_no_fail(result)
self.assertEqual('Failed to confirm the new LUN ID on volume 1234\n',
result.output)
def test_volume_set_lun_id_not_in_range(self):
value = '-1'
lun_mock = self.set_mock('SoftLayer_Network_Storage', 'createOrUpdateLunId')
lun_mock.side_effect = SoftLayerAPIError(
'SoftLayer_Exception_Network_Storage_Iscsi_InvalidLunId',
'The LUN ID specified is out of the valid range: %s [min: 0 max: 4095]' % (value))
result = self.run_command('block volume-set-lun-id 1234 42'.split())
self.assertIsNotNone(result.exception)
self.assertIn('The LUN ID specified is out of the valid range', result.exception.faultString)
def test_volume_detail(self):
result = self.run_command(['block', 'volume-detail', '1234'])
self.assert_no_fail(result)
isinstance(json.loads(result.output)['IOPs'], float)
self.assert_called_with('SoftLayer_Network_Storage', 'getObject', identifier=1234)
self.assertEqual({
'Username': 'username',
'LUN Id': '2',
'Notes': "{'status': 'available'}",
'Endurance Tier': 'READHEAVY_TIER',
'IOPs': 1000,
'Snapshot Capacity (GB)': '10',
'Snapshot Used (Bytes)': 1024,
'Capacity (GB)': '20GB',
'Target IP': '10.1.2.3',
'Data Center': 'dal05',
'Type': 'ENDURANCE',
'ID': 100,
'# of Active Transactions': '1',
'Ongoing Transaction': 'This is a buffer time in which the customer may cancel the server',
'Replicant Count': '1',
'Replication Status': 'Replicant Volume Provisioning '
'has completed.',
'Replicant Volumes': [[
{'Replicant ID': 'Volume Name', '1784': 'TEST_REP_1'},
{'Replicant ID': 'Target IP', '1784': '10.3.174.79'},
{'Replicant ID': 'Data Center', '1784': 'wdc01'},
{'Replicant ID': 'Schedule', '1784': 'REPLICATION_HOURLY'},
], [
{'Replicant ID': 'Volume Name', '1785': 'TEST_REP_2'},
{'Replicant ID': 'Target IP', '1785': '10.3.177.84'},
{'Replicant ID': 'Data Center', '1785': 'dal01'},
{'Replicant ID': 'Schedule', '1785': 'REPLICATION_DAILY'},
]],
'Original Volume Properties': [
{'Property': 'Original Volume Size',
'Value': '20'},
{'Property': 'Original Volume Name',
'Value': 'test-original-volume-name'},
{'Property': 'Original Snapshot Name',
'Value': 'test-original-snapshot-name'}
]
}, json.loads(result.output))
def test_volume_detail_name_identifier(self):
result = self.run_command(['block', 'volume-detail', 'SL-12345'])
expected_filter = {
'iscsiNetworkStorage': {
'serviceResource': {
'type': {
'type': {'operation': '!~ ISCSI'}
}
},
'storageType': {
'keyName': {'operation': '*= BLOCK_STORAGE'}
},
'username': {'operation': '_= SL-12345'}
}
}
self.assert_called_with('SoftLayer_Account', 'getIscsiNetworkStorage', filter=expected_filter)
self.assert_called_with('SoftLayer_Network_Storage', 'getObject', identifier=100)
self.assert_no_fail(result)
def test_volume_list(self):
result = self.run_command(['block', 'volume-list'])
self.assert_no_fail(result)
self.assertEqual([
{
'bytes_used': None,
'capacity_gb': 20,
'datacenter': 'dal05',
'id': 100,
'IOPs': None,
'ip_addr': '10.1.2.3',
'lunId': None,
'notes': "{'status': 'available'}",
'rep_partner_count': None,
'storage_type': 'ENDURANCE',
'username': 'username',
'active_transactions': None
}],
json.loads(result.output))
@mock.patch('SoftLayer.BlockStorageManager.list_block_volumes')
def test_volume_list_notes_format_output_json(self, list_mock):
note_mock = 'test ' * 5
list_mock.return_value = [
{'notes': note_mock}
]
result = self.run_command(['--format', 'json', 'block', 'volume-list', '--columns', 'notes'])
self.assert_no_fail(result)
self.assertEqual(
[{
'notes': note_mock,
}],
json.loads(result.output))
@mock.patch('SoftLayer.BlockStorageManager.list_block_volumes')
def test_volume_list_reduced_notes_format_output_table(self, list_mock):
note_mock = 'test ' * 10
expected_reduced_note = 'test ' * 4
list_mock.return_value = [
{'notes': note_mock}
]
expected_table = formatting.Table(['notes'])
expected_table.add_row([expected_reduced_note])
expected_output = formatting.format_output(expected_table)+'\n'
result = self.run_command(['--format', 'table', 'block', 'volume-list', '--columns', 'notes'])
self.assert_no_fail(result)
self.assertEqual(expected_output, result.output)
def test_volume_list_order(self):
result = self.run_command(['block', 'volume-list', '--order=1234567'])
self.assert_no_fail(result)
json_result = json.loads(result.output)
self.assertEqual(json_result[0]['id'], 100)
@mock.patch('SoftLayer.BlockStorageManager.list_block_volumes')
def test_volume_count(self, list_mock):
list_mock.return_value = [
{'serviceResource': {'datacenter': {'name': 'dal05'}}},
{'serviceResource': {'datacenter': {'name': 'ams01'}}},
{'serviceResource': {'datacenter': {'name': 'dal05'}}}
]
result = self.run_command(['block', 'volume-count'])
self.assert_no_fail(result)
self.assertEqual(
{
'dal05': 2,
'ams01': 1
},
json.loads(result.output))
def test_volume_order_performance_iops_not_given(self):
result = self.run_command(['block', 'volume-order',
'--storage-type=performance', '--size=20',
'--os-type=linux', '--location=dal05'])
self.assertEqual(2, result.exit_code)
def test_volume_order_performance_snapshot_error(self):
result = self.run_command(['block', 'volume-order',
'--storage-type=performance', '--size=20',
'--iops=100', '--os-type=linux',
'--location=dal05', '--snapshot-size=10',
'--service-offering=performance'])
self.assertEqual(2, result.exit_code)
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_performance(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 478,
'items': [
{'description': 'Performance Storage'},
{'description': 'Block Storage'},
{'description': '0.25 IOPS per GB'},
{'description': '20 GB Storage Space'},
{'description': '10 GB Storage Space (Snapshot Space)'}]
}
}
result = self.run_command(['block', 'volume-order',
'--storage-type=performance', '--size=20',
'--iops=100', '--os-type=linux',
'--location=dal05', '--snapshot-size=10'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #478 placed successfully!\n'
' > Performance Storage\n > Block Storage\n'
' > 0.25 IOPS per GB\n > 20 GB Storage Space\n'
' > 10 GB Storage Space (Snapshot Space)\n'
'\nYou may run "slcli block volume-list --order 478" to find this block volume '
'after it is ready.\n')
def test_volume_order_endurance_tier_not_given(self):
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--os-type=linux', '--location=dal05'])
self.assertEqual(2, result.exit_code)
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_endurance(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 478,
'items': [
{'description': 'Endurance Storage'},
{'description': 'Block Storage'},
{'description': '0.25 IOPS per GB'},
{'description': '20 GB Storage Space'},
{'description': '10 GB Storage Space (Snapshot Space)'}]
}
}
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--tier=0.25', '--os-type=linux',
'--location=dal05', '--snapshot-size=10'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #478 placed successfully!\n'
' > Endurance Storage\n > Block Storage\n'
' > 0.25 IOPS per GB\n > 20 GB Storage Space\n'
' > 10 GB Storage Space (Snapshot Space)\n'
'\nYou may run "slcli block volume-list --order 478" to find this block volume '
'after it is ready.\n')
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_order_not_placed(self, order_mock):
order_mock.return_value = {}
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--tier=0.25', '--os-type=linux',
'--location=dal05'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order could not be placed! Please verify '
'your options and try again.\n')
def test_volume_order_hourly_billing_not_available(self):
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--tier=0.25', '--os-type=linux',
'--location=dal10', '--billing=hourly',
'--service-offering=enterprise'])
self.assertEqual(2, result.exit_code)
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_hourly_billing(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 10983647,
'items': [
{'description': 'Storage as a Service'},
{'description': 'Block Storage'},
{'description': '20 GB Storage Space'},
{'description': '200 IOPS'}]
}
}
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--tier=0.25', '--os-type=linux',
'--location=dal10', '--billing=hourly',
'--service-offering=storage_as_a_service'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #10983647 placed successfully!\n'
' > Storage as a Service\n'
' > Block Storage\n'
' > 20 GB Storage Space\n'
' > 200 IOPS\n'
'\nYou may run "slcli block volume-list --order 10983647" to find this block volume '
'after it is ready.\n')
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_performance_manager_error(self, order_mock):
order_mock.side_effect = ValueError('failure!')
result = self.run_command(['block', 'volume-order',
'--storage-type=performance', '--size=20',
'--iops=100', '--os-type=linux',
'--location=dal05'])
self.assertEqual(2, result.exit_code)
self.assertEqual('Argument Error: failure!', result.exception.message)
@mock.patch('SoftLayer.BlockStorageManager.order_block_volume')
def test_volume_order_endurance_manager_error(self, order_mock):
order_mock.side_effect = ValueError('failure!')
result = self.run_command(['block', 'volume-order',
'--storage-type=endurance', '--size=20',
'--tier=0.25', '--os-type=linux',
'--location=dal05'])
self.assertEqual(2, result.exit_code)
self.assertEqual('Argument Error: failure!', result.exception.message)
def test_enable_snapshots(self):
result = self.run_command(['block', 'snapshot-enable', '12345678',
'--schedule-type=HOURLY', '--minute=10',
'--retention-count=5'])
self.assert_no_fail(result)
def test_disable_snapshots(self):
result = self.run_command(['block', 'snapshot-disable', '12345678',
'--schedule-type=HOURLY'])
self.assert_no_fail(result)
def test_list_volume_schedules(self):
result = self.run_command([
'block', 'snapshot-schedule-list', '12345678'])
self.assert_no_fail(result)
self.assertEqual([
{
"week": None,
"maximum_snapshots": None,
"hour": None,
"day_of_week": None,
"day": None,
"replication": None,
"date_of_month": None,
"month_of_year": None,
"active": "",
"date_created": "",
"type": "WEEKLY",
"id": 978,
"minute": '30'
},
{
"week": None,
"maximum_snapshots": None,
"hour": None,
"day_of_week": None,
"day": None,
"replication": '*',
"date_of_month": None,
"month_of_year": None,
"active": "",
"date_created": "",
"type": "INTERVAL",
"id": 988,
"minute": '*'
}
], json.loads(result.output))
def test_create_snapshot(self):
result = self.run_command(['block', 'snapshot-create', '12345678'])
self.assert_no_fail(result)
@mock.patch('SoftLayer.BlockStorageManager.create_snapshot')
def test_create_snapshot_unsuccessful(self, snapshot_mock):
snapshot_mock.return_value = []
result = self.run_command(['block', 'snapshot-create', '8', '-n=note'])
self.assertEqual('Error occurred while creating snapshot.\n'
'Ensure volume is not failed over or in another '
'state which prevents taking snapshots.\n',
result.output)
def test_snapshot_list(self):
result = self.run_command(['block', 'snapshot-list', '12345678'])
self.assert_no_fail(result)
self.assertEqual([
{
'id': 470,
'name': 'unit_testing_note',
'created': '2016-07-06T07:41:19-05:00',
'size_bytes': '42',
}],
json.loads(result.output))
def test_snapshot_cancel(self):
result = self.run_command(['--really',
'block', 'snapshot-cancel', '1234'])
self.assert_no_fail(result)
self.assertEqual('Block volume with id 1234 has been marked'
' for snapshot cancellation\n', result.output)
self.assert_called_with('SoftLayer_Billing_Item', 'cancelItem',
args=(False, True, None))
def test_snapshot_restore(self):
result = self.run_command(['block', 'snapshot-restore', '12345678',
'--snapshot-id=87654321'])
self.assert_no_fail(result)
self.assertEqual(result.output, 'Block volume 12345678 is being'
' restored using snapshot 87654321\n')
@mock.patch('SoftLayer.BlockStorageManager.order_snapshot_space')
def test_snapshot_order_order_not_placed(self, order_mock):
order_mock.return_value = {}
result = self.run_command(['block', 'snapshot-order', '1234',
'--capacity=10', '--tier=0.25'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order could not be placed! Please verify '
'your options and try again.\n')
@mock.patch('SoftLayer.BlockStorageManager.order_snapshot_space')
def test_snapshot_order_performance_manager_error(self, order_mock):
order_mock.side_effect = ValueError('failure!')
result = self.run_command(['block', 'snapshot-order', '1234',
'--capacity=10', '--tier=0.25'])
self.assertEqual(2, result.exit_code)
self.assertEqual('Argument Error: failure!', result.exception.message)
@mock.patch('SoftLayer.BlockStorageManager.order_snapshot_space')
def test_snapshot_order(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 8702,
'items': [{'description':
'10 GB Storage Space (Snapshot Space)'}],
'status': 'PENDING_APPROVAL',
}
}
result = self.run_command(['block', 'snapshot-order', '1234',
'--capacity=10', '--tier=0.25'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #8702 placed successfully!\n'
' > 10 GB Storage Space (Snapshot Space)\n'
' > Order status: PENDING_APPROVAL\n')
def test_authorize_host_to_volume(self):
result = self.run_command(['block', 'access-authorize', '12345678',
'--hardware-id=100', '--virtual-id=10',
'--ip-address-id=192',
'--ip-address=192.3.2.1'])
self.assert_no_fail(result)
def test_deauthorize_host_to_volume(self):
result = self.run_command(['block', 'access-revoke', '12345678',
'--hardware-id=100', '--virtual-id=10',
'--ip-address-id=192',
'--ip-address=192.3.2.1'])
self.assert_no_fail(result)
def test_assign_subnets_to_acl(self):
result = self.run_command(['block', 'subnets-assign', '12345',
'--subnet-id=12345678'])
self.assert_no_fail(result)
def test_remove_subnets_from_acl(self):
result = self.run_command(['block', 'subnets-remove', '12345',
'--subnet-id=12345678'])
self.assert_no_fail(result)
def test_get_subnets_in_acl(self):
result = self.run_command(['block', 'subnets-list', '12345'])
self.assert_no_fail(result)
def test_replicant_failover(self):
result = self.run_command(['block', 'replica-failover', '12345678',
'--replicant-id=5678'])
self.assert_no_fail(result)
self.assertEqual('Failover to replicant is now in progress.\n', result.output)
@mock.patch('SoftLayer.CLI.formatting.confirm')
@mock.patch('SoftLayer.BlockStorageManager.disaster_recovery_failover_to_replicant')
def test_disaster_recovery_failover(self, disaster_recovery_failover_mock, confirm_mock):
confirm_mock.return_value = True
disaster_recovery_failover_mock.return_value = True
result = self.run_command(['block', 'disaster-recovery-failover', '12345678',
'--replicant-id=5678'])
self.assert_no_fail(result)
self.assertIn('Disaster Recovery Failover to replicant is now in progress.\n', result.output)
def test_replication_locations(self):
result = self.run_command(['block', 'replica-locations', '1234'])
self.assert_no_fail(result)
self.assertEqual(
{
'12345': 'Dallas 05',
},
json.loads(result.output))
@mock.patch('SoftLayer.BlockStorageManager.get_replication_locations')
def test_replication_locations_unsuccessful(self, locations_mock):
locations_mock.return_value = False
result = self.run_command(['block', 'replica-locations', '1234'])
self.assert_no_fail(result)
self.assertEqual('No data centers compatible for replication.\n',
result.output)
def test_replication_partners(self):
result = self.run_command(['block', 'replica-partners', '1234'])
self.assert_no_fail(result)
self.assertEqual([
{
'ID': 1784,
'Account ID': 3000,
'Capacity (GB)': 20,
'Host ID': None,
'Guest ID': None,
'Hardware ID': None,
'Username': 'TEST_REP_1',
},
{
'ID': 1785,
'Account ID': 3001,
'Host ID': None,
'Guest ID': None,
'Hardware ID': None,
'Capacity (GB)': 20,
'Username': 'TEST_REP_2',
}],
json.loads(result.output))
@mock.patch('SoftLayer.BlockStorageManager.get_replication_partners')
def test_replication_partners_unsuccessful(self, partners_mock):
partners_mock.return_value = False
result = self.run_command(['block', 'replica-partners', '1234'])
self.assertEqual(
'There are no replication partners for the given volume.\n',
result.output)
@mock.patch('SoftLayer.BlockStorageManager.failover_to_replicant')
def test_replicant_failover_unsuccessful(self, failover_mock):
failover_mock.return_value = False
result = self.run_command(['block', 'replica-failover', '12345678',
'--replicant-id=5678'])
self.assertEqual('Failover operation could not be initiated.\n',
result.output)
@mock.patch('SoftLayer.CLI.formatting.confirm')
def test_disaster_recovery_failover_aborted(self, confirm_mock):
confirm_mock.return_value = False
result = self.run_command(['block', 'disaster-recovery-failover', '12345678',
'--replicant-id=5678'])
self.assertEqual(result.exit_code, 2)
self.assertIsInstance(result.exception, exceptions.CLIAbort)
def test_replicant_failback(self):
result = self.run_command(['block', 'replica-failback', '12345678'])
self.assert_no_fail(result)
self.assertEqual('Failback from replicant is now in progress.\n',
result.output)
@mock.patch('SoftLayer.BlockStorageManager.failback_from_replicant')
def test_replicant_failback_unsuccessful(self, failback_mock):
failback_mock.return_value = False
result = self.run_command(['block', 'replica-failback', '12345678'])
self.assertEqual('Failback operation could not be initiated.\n',
result.output)
@mock.patch('SoftLayer.BlockStorageManager.order_replicant_volume')
def test_replicant_order_order_not_placed(self, order_mock):
order_mock.return_value = {}
result = self.run_command(['block', 'replica-order', '100',
'--snapshot-schedule=DAILY',
'--location=dal05'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order could not be placed! Please verify '
'your options and try again.\n')
@mock.patch('SoftLayer.BlockStorageManager.order_replicant_volume')
def test_replicant_order(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 91604,
'items': [
{'description': 'Endurance Storage'},
{'description': '2 IOPS per GB'},
{'description': 'Block Storage'},
{'description': '20 GB Storage Space'},
{'description': '10 GB Storage Space (Snapshot Space)'},
{'description': '20 GB Storage Space Replicant of: TEST'},
],
}
}
result = self.run_command(['block', 'replica-order', '100',
'--snapshot-schedule=DAILY',
'--location=dal05', '--tier=2'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #91604 placed successfully!\n'
' > Endurance Storage\n'
' > 2 IOPS per GB\n'
' > Block Storage\n'
' > 20 GB Storage Space\n'
' > 10 GB Storage Space (Snapshot Space)\n'
' > 20 GB Storage Space Replicant of: TEST\n')
@mock.patch('SoftLayer.BlockStorageManager.order_duplicate_volume')
def test_duplicate_order_exception_caught(self, order_mock):
order_mock.side_effect = ValueError('order attempt failed, oh noooo!')
result = self.run_command(['block', 'volume-duplicate', '102'])
self.assertEqual(2, result.exit_code)
self.assertEqual('Argument Error: order attempt failed, oh noooo!',
result.exception.message)
@mock.patch('SoftLayer.BlockStorageManager.order_duplicate_volume')
def test_duplicate_order_order_not_placed(self, order_mock):
order_mock.return_value = {}
result = self.run_command(['block', 'volume-duplicate', '102',
'--duplicate-iops=1400'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order could not be placed! Please verify '
'your options and try again.\n')
@mock.patch('SoftLayer.BlockStorageManager.order_duplicate_volume')
def test_duplicate_order(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 24601,
'items': [{'description': 'Storage as a Service'}]
}
}
result = self.run_command(['block', 'volume-duplicate', '102',
'--origin-snapshot-id=470',
'--duplicate-size=250',
'--duplicate-tier=2',
'--duplicate-snapshot-size=20'])
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #24601 placed successfully!\n'
' > Storage as a Service\n')
@mock.patch('SoftLayer.BlockStorageManager.order_duplicate_volume')
def test_duplicate_order_hourly_billing(self, order_mock):
order_mock.return_value = {
'placedOrder': {
'id': 24602,
'items': [{'description': 'Storage as a Service'}]
}
}
result = self.run_command(['block', 'volume-duplicate', '100',
'--origin-snapshot-id=470',
'--duplicate-size=250',
'--duplicate-tier=2', '--billing=hourly',
'--duplicate-snapshot-size=20'])
order_mock.assert_called_with('100', origin_snapshot_id=470,
duplicate_size=250, duplicate_iops=None,
duplicate_tier_level=2,
duplicate_snapshot_size=20,
hourly_billing_flag=True,
dependent_duplicate=False)
self.assert_no_fail(result)
self.assertEqual(result.output,
'Order #24602 placed successfully!\n'
' > Storage as a Service\n')
@mock.patch('SoftLayer.BlockStorageManager.order_modified_volume')
def test_modify_order_exception_caught(self, order_mock):
order_mock.side_effect = ValueError('order attempt failed, noooo!')
result = self.run_command(['block', 'volume-modify', '102', '--new-size=1000'])
self.assertEqual(2, result.exit_code)
self.assertEqual('Argument Error: order attempt failed, noooo!', result.exception.message)
@mock.patch('SoftLayer.BlockStorageManager.order_modified_volume')
def test_modify_order_order_not_placed(self, order_mock):
order_mock.return_value = {}
result = self.run_command(['block', 'volume-modify', '102', '--new-iops=1400'])
self.assert_no_fail(result)
self.assertEqual('Order could not be placed! Please verify your options and try again.\n', result.output)
@mock.patch('SoftLayer.BlockStorageManager.order_modified_volume')
def test_modify_order(self, order_mock):
order_mock.return_value = {'placedOrder': {'id': 24602, 'items': [{'description': 'Storage as a Service'},
{'description': '1000 GBs'},
{'description': '4 IOPS per GB'}]}}
result = self.run_command(['block', 'volume-modify', '102', '--new-size=1000', '--new-tier=4'])
order_mock.assert_called_with('102', new_size=1000, new_iops=None, new_tier_level=4)
self.assert_no_fail(result)
self.assertEqual('Order #24602 placed successfully!\n > Storage as a Service\n > 1000 GBs\n > 4 IOPS per GB\n',
result.output)
def test_set_password(self):
result = self.run_command(['block', 'access-password', '1234', '--password=AAAAA'])
self.assert_no_fail(result)
@mock.patch('SoftLayer.BlockStorageManager.list_block_volume_limit')
def test_volume_limit(self, list_mock):
list_mock.return_value = [
{
"datacenterName": "global",
"maximumAvailableCount": 300,
"provisionedCount": 100
}]
result = self.run_command(['block', 'volume-limits'])
self.assert_no_fail(result)
def test_dupe_refresh(self):
result = self.run_command(['block', 'volume-refresh', '102', '103'])
self.assert_no_fail(result)
def test_dep_dupe_convert(self):
result = self.run_command(['block', 'volume-convert', '102'])
self.assert_no_fail(result)
@mock.patch('SoftLayer.BlockStorageManager.volume_set_note')
def test_volume_set_note(self, set_note):
set_note.return_value = True
result = self.run_command(['block', 'volume-set-note', '102', '--note=testing'])
self.assert_no_fail(result)
self.assertIn("successfully!", result.output)
@mock.patch('SoftLayer.BlockStorageManager.volume_set_note')
def test_volume_not_set_note(self, set_note):
set_note.return_value = False
result = self.run_command(['block', 'volume-set-note', '102', '--note=testing'])
self.assert_no_fail(result)
self.assertIn("Note could not be set!", result.output)