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 | ======================================================================
FAIL: tempest.api.object_storage.test_crossdomain.CrossdomainTest.test_get_crossdomain_policy[id-d1b8b031-b622-4010-82f9-ff78a9e915c7]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 16:21:29,900 29362 INFO [tempest.lib.common.rest_client] Request (CrossdomainTest:test_get_crossdomain_policy): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 16:21:30,508 29362 INFO [tempest.lib.common.rest_client] Request (CrossdomainTest:test_get_crossdomain_policy): 412 GET http://10.5.14.232:8080/crossdomain.xml 0.607s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 151, in wrapper
return func(*func_args, **func_kwargs)
File "tempest/api/object_storage/test_crossdomain.py", line 42, in test_get_crossdomain_policy
resp, body = self.account_client.get("crossdomain.xml", {})
File "tempest/lib/common/rest_client.py", line 285, in get
return self.request('GET', url, extra_headers, headers)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 832, in _error_checker
resp=resp)
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 412
======================================================================
FAIL: setUpClass (tempest.api.orchestration.stacks.test_non_empty_stack.StacksTestJSON)
tags: worker-0
----------------------------------------------------------------------
Traceback (most recent call last):
File "tempest/test.py", line 273, in setUpClass
six.reraise(etype, value, trace)
File "tempest/test.py", line 266, in setUpClass
cls.resource_setup()
File "tempest/api/orchestration/stacks/test_non_empty_stack.py", line 38, in resource_setup
'flavor': flavor
File "tempest/api/orchestration/base.py", line 77, in create_stack
files=files)
File "tempest/services/orchestration/json/orchestration_client.py", line 56, in create_stack
resp, body = self.post(uri, headers=headers, body=body)
File "tempest/lib/common/rest_client.py", line 270, in post
return self.request('POST', url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 767, in _error_checker
raise exceptions.BadRequest(resp_body, resp=resp)
tempest.lib.exceptions.BadRequest: Bad request
Details: {u'explanation': u'The server could not comply with the request since it is either malformed or otherwise incorrect.', u'error': {u'message': u"Property error: : Resources.fluffy.Properties.InstanceType: : Error validating value 'm1.small': No Flavor matching {'name': u'm1.small'}. (HTTP 404)", u'type': u'StackValidationFailed', u'traceback': None}, u'title': u'Bad Request', u'code': 400}
======================================================================
FAIL: setUpClass (tempest.api.orchestration.stacks.test_templates.TemplateAWSTestJSON)
tags: worker-0
----------------------------------------------------------------------
Traceback (most recent call last):
File "tempest/test.py", line 273, in setUpClass
six.reraise(etype, value, trace)
File "tempest/test.py", line 266, in setUpClass
cls.resource_setup()
File "tempest/api/orchestration/stacks/test_templates.py", line 34, in resource_setup
'CREATE_COMPLETE')
File "tempest/services/orchestration/json/orchestration_client.py", line 174, in wait_for_stack_status
stack_status_reason=body['stack_status_reason'])
tempest.exceptions.StackBuildErrorException: Stack tempest-heat-1979664029/450972ef-483d-4099-b13f-9c7f51760bec is in CREATE_FAILED status due to 'Resource CREATE failed: AuthorizationFailure: resources.CfnUser: Authorization failed.'
======================================================================
FAIL: setUpClass (tempest.api.orchestration.stacks.test_templates.TemplateYAMLTestJSON)
tags: worker-0
----------------------------------------------------------------------
Traceback (most recent call last):
File "tempest/test.py", line 273, in setUpClass
six.reraise(etype, value, trace)
File "tempest/test.py", line 266, in setUpClass
cls.resource_setup()
File "tempest/api/orchestration/stacks/test_templates.py", line 34, in resource_setup
'CREATE_COMPLETE')
File "tempest/services/orchestration/json/orchestration_client.py", line 174, in wait_for_stack_status
stack_status_reason=body['stack_status_reason'])
tempest.exceptions.StackBuildErrorException: Stack tempest-heat-1214961569/d5800ac1-9d00-4003-abc4-3723e9a62d09 is in CREATE_FAILED status due to 'Resource CREATE failed: AuthorizationFailure: resources.CfnUser: Authorization failed.'
======================================================================
FAIL: tempest.api.orchestration.stacks.test_templates_negative.TemplateAWSNegativeTestJSON.test_validate_template_url[id-5586cbca-ddc4-4152-9db8-fa1ce5fc1876,negative]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 16:27:37,843 29362 INFO [tempest.lib.common.rest_client] Request (TemplateAWSNegativeTestJSON:test_validate_template_url): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 16:28:07,852 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:28:37,857 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:29:07,862 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:29:37,868 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:30:07,872 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:30:37,877 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:31:07,882 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:31:37,888 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:32:07,896 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
2016-07-19 16:32:37,901 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/3eae1f58af754317a5576b322a376045/validate
}}}
Traceback (most recent call last):
File "tempest/api/orchestration/stacks/test_templates_negative.py", line 44, in test_validate_template_url
parameters=self.parameters)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 485, in assertRaises
self.assertThat(our_callable, matcher)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 496, in assertThat
mismatch_error = self._matchHelper(matchee, matcher, message, verbose)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 547, in _matchHelper
mismatch = matcher.match(matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_exception.py", line 108, in match
mismatch = self.exception_matcher.match(exc_info)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_higherorder.py", line 62, in match
mismatch = matcher.match(matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 475, in match
reraise(*matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_exception.py", line 101, in match
result = matchee()
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 1049, in __call__
return self._callable_object(*self._args, **self._kwargs)
File "tempest/services/orchestration/json/orchestration_client.py", line 253, in validate_template_url
return self._validate_template(post_body)
File "tempest/services/orchestration/json/orchestration_client.py", line 230, in _validate_template
resp, body = self.post('validate', post_body)
File "tempest/lib/common/rest_client.py", line 270, in post
return self.request('POST', url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 648, in request
body=body, chunked=chunked)
File "tempest/lib/common/rest_client.py", line 545, in _request
chunked=chunked
File "tempest/lib/common/rest_client.py", line 578, in raw_request
body=body, chunked=chunked)
File "tempest/lib/common/http.py", line 54, in request
*args, **new_kwargs)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/request.py", line 73, in request
**urlopen_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/request.py", line 151, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/poolmanager.py", line 165, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 623, in urlopen
_stacktrace=sys.exc_info()[2])
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/util/retry.py", line 281, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='10.5.14.218', port=8004): Max retries exceeded with url: /v1/3eae1f58af754317a5576b322a376045/validate (Caused by ProtocolError('Connection aborted.', BadStatusLine("''",)))
======================================================================
FAIL: tempest.api.orchestration.stacks.test_templates_negative.TemplateYAMLNegativeTestJSON.test_validate_template_url[id-5586cbca-ddc4-4152-9db8-fa1ce5fc1876,negative]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 16:33:30,425 29362 INFO [tempest.lib.common.rest_client] Request (TemplateYAMLNegativeTestJSON:test_validate_template_url): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 16:34:00,433 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:34:30,457 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:35:00,480 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:35:30,486 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:36:00,492 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:36:30,500 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:37:00,509 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:37:30,514 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:38:00,532 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
2016-07-19 16:38:30,545 29362 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5)) after connection broken by 'ProtocolError('Connection aborted.', BadStatusLine("''",))': /v1/0bd3453ca696471b87e62ec610407ccd/validate
}}}
Traceback (most recent call last):
File "tempest/api/orchestration/stacks/test_templates_negative.py", line 44, in test_validate_template_url
parameters=self.parameters)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 485, in assertRaises
self.assertThat(our_callable, matcher)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 496, in assertThat
mismatch_error = self._matchHelper(matchee, matcher, message, verbose)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 547, in _matchHelper
mismatch = matcher.match(matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_exception.py", line 108, in match
mismatch = self.exception_matcher.match(exc_info)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_higherorder.py", line 62, in match
mismatch = matcher.match(matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 475, in match
reraise(*matchee)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/matchers/_exception.py", line 101, in match
result = matchee()
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/testtools/testcase.py", line 1049, in __call__
return self._callable_object(*self._args, **self._kwargs)
File "tempest/services/orchestration/json/orchestration_client.py", line 253, in validate_template_url
return self._validate_template(post_body)
File "tempest/services/orchestration/json/orchestration_client.py", line 230, in _validate_template
resp, body = self.post('validate', post_body)
File "tempest/lib/common/rest_client.py", line 270, in post
return self.request('POST', url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 648, in request
body=body, chunked=chunked)
File "tempest/lib/common/rest_client.py", line 545, in _request
chunked=chunked
File "tempest/lib/common/rest_client.py", line 578, in raw_request
body=body, chunked=chunked)
File "tempest/lib/common/http.py", line 54, in request
*args, **new_kwargs)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/request.py", line 73, in request
**urlopen_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/request.py", line 151, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/poolmanager.py", line 165, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 651, in urlopen
release_conn=release_conn, **response_kw)
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/connectionpool.py", line 623, in urlopen
_stacktrace=sys.exc_info()[2])
File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/urllib3/util/retry.py", line 281, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='10.5.14.218', port=8004): Max retries exceeded with url: /v1/0bd3453ca696471b87e62ec610407ccd/validate (Caused by ProtocolError('Connection aborted.', BadStatusLine("''",)))
======================================================================
FAIL: tempest.scenario.test_encrypted_cinder_volumes.TestEncryptedCinderVolumes.test_encrypted_cinder_volumes_cryptsetup[compute,id-cbc752ed-b716-4717-910f-956cce965722,image,volume]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:17:19,302 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:test_encrypted_cinder_volumes_cryptsetup): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 17:17:20,597 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:test_encrypted_cinder_volumes_cryptsetup): 201 POST http://10.5.14.217:9292/v1/images 1.292s
2016-07-19 17:17:21,746 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:test_encrypted_cinder_volumes_cryptsetup): 201 POST http://10.5.14.217:9292/v1/images 1.147s
2016-07-19 17:17:21,908 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/98972484-6e07-441f-a36d-855db0ad9ec1 0.159s
2016-07-19 17:17:22,056 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/ec088d79-c6cc-4849-b18f-faf924d7f67c 0.145s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_encrypted_cinder_volumes.py", line 77, in test_encrypted_cinder_volumes_cryptsetup
server = self.launch_instance()
File "tempest/scenario/test_encrypted_cinder_volumes.py", line 45, in launch_instance
image = self.glance_image_create()
File "tempest/scenario/manager.py", line 425, in glance_image_create
kernel = self._image_create('scenario-aki', 'aki', aki_img_path)
File "tempest/scenario/manager.py", line 398, in _image_create
with open(path, 'rb') as image_file:
IOError: [Errno 2] No such file or directory: '/home/ubuntu/images/cirros-0.3.1-x86_64-vmlinuz'
======================================================================
FAIL: tempest.scenario.test_encrypted_cinder_volumes.TestEncryptedCinderVolumes.test_encrypted_cinder_volumes_luks[compute,id-79165fb4-5534-4b9d-8429-97ccffb8f86e,image,volume]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:17:22,115 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:test_encrypted_cinder_volumes_luks): 201 POST http://10.5.14.217:9292/v1/images 0.047s
2016-07-19 17:17:22,170 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:test_encrypted_cinder_volumes_luks): 201 POST http://10.5.14.217:9292/v1/images 0.054s
2016-07-19 17:17:22,312 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/a2cba62b-c81a-4965-8611-edfea30a11a9 0.139s
2016-07-19 17:17:22,453 29362 INFO [tempest.lib.common.rest_client] Request (TestEncryptedCinderVolumes:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/d30df387-8a56-4935-b825-4ae308b89776 0.139s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_encrypted_cinder_volumes.py", line 68, in test_encrypted_cinder_volumes_luks
server = self.launch_instance()
File "tempest/scenario/test_encrypted_cinder_volumes.py", line 45, in launch_instance
image = self.glance_image_create()
File "tempest/scenario/manager.py", line 425, in glance_image_create
kernel = self._image_create('scenario-aki', 'aki', aki_img_path)
File "tempest/scenario/manager.py", line 398, in _image_create
with open(path, 'rb') as image_file:
IOError: [Errno 2] No such file or directory: '/home/ubuntu/images/cirros-0.3.1-x86_64-vmlinuz'
======================================================================
FAIL: tempest.scenario.test_minimum_basic.TestMinimumBasicScenario.test_minimum_basic_scenario[compute,id-bdbb5441-9204-419d-a225-b4fdbfb1a1a8,image,network,volume]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:17:36,581 29362 INFO [tempest.lib.common.rest_client] Request (TestMinimumBasicScenario:test_minimum_basic_scenario): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 17:17:37,713 29362 INFO [tempest.lib.common.rest_client] Request (TestMinimumBasicScenario:test_minimum_basic_scenario): 201 POST http://10.5.14.217:9292/v1/images 1.130s
2016-07-19 17:17:38,910 29362 INFO [tempest.lib.common.rest_client] Request (TestMinimumBasicScenario:test_minimum_basic_scenario): 201 POST http://10.5.14.217:9292/v1/images 1.195s
2016-07-19 17:17:39,059 29362 INFO [tempest.lib.common.rest_client] Request (TestMinimumBasicScenario:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/de645158-b571-4b12-8d65-061ce45fc4e4 0.146s
2016-07-19 17:17:39,207 29362 INFO [tempest.lib.common.rest_client] Request (TestMinimumBasicScenario:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/0c75a050-f5cc-4163-8b1a-c21dc753b10f 0.146s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_minimum_basic.py", line 101, in test_minimum_basic_scenario
image = self.glance_image_create()
File "tempest/scenario/manager.py", line 425, in glance_image_create
kernel = self._image_create('scenario-aki', 'aki', aki_img_path)
File "tempest/scenario/manager.py", line 398, in _image_create
with open(path, 'rb') as image_file:
IOError: [Errno 2] No such file or directory: '/home/ubuntu/images/cirros-0.3.1-x86_64-vmlinuz'
======================================================================
FAIL: tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_rebuild[compute,id-88a529c2-1daa-4c85-9aec-d541ba3eb699,network]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:20:18,039 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 POST http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/os-keypairs 0.280s
2016-07-19 17:20:18,220 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-groups 0.176s
2016-07-19 17:20:18,390 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.169s
2016-07-19 17:20:18,539 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.147s
2016-07-19 17:20:18,711 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.170s
2016-07-19 17:20:18,851 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.136s
2016-07-19 17:20:19,154 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.302s
2016-07-19 17:20:19,308 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.152s
2016-07-19 17:20:19,497 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/networks 0.186s
2016-07-19 17:20:19,601 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/routers 0.102s
2016-07-19 17:20:20,798 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 PUT http://10.5.14.222:9696/v2.0/routers/956498c8-d18a-4ccf-921a-17a3c5fcf480 1.196s
2016-07-19 17:20:20,930 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/subnets?tenant_id=04a3557f98d74223843ea42aef6ab38f&cidr=192.168.21.0%2F28 0.130s
2016-07-19 17:20:21,836 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/subnets 0.904s
2016-07-19 17:20:23,945 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 PUT http://10.5.14.222:9696/v2.0/routers/956498c8-d18a-4ccf-921a-17a3c5fcf480/add_router_interface 2.107s
2016-07-19 17:20:23,952 29362 INFO [tempest.common.fixed_network] (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild) Found network None available for tenant
2016-07-19 17:20:24,940 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 202 POST http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers 0.986s
2016-07-19 17:20:25,319 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.374s
2016-07-19 17:20:26,692 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.357s
2016-07-19 17:20:26,703 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/networking" after 1 second wait
2016-07-19 17:20:28,173 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.466s
2016-07-19 17:20:28,184 29362 INFO [tempest.common.waiters] State transition "BUILD/networking" ==> "BUILD/spawning" after 3 second wait
2016-07-19 17:20:29,747 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.560s
2016-07-19 17:20:31,069 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.308s
2016-07-19 17:20:32,469 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.386s
2016-07-19 17:20:33,833 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.350s
2016-07-19 17:20:35,157 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.313s
2016-07-19 17:20:36,564 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.390s
2016-07-19 17:20:37,877 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.300s
2016-07-19 17:20:39,227 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.339s
2016-07-19 17:20:40,691 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.445s
2016-07-19 17:20:42,154 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.451s
2016-07-19 17:20:43,801 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.635s
2016-07-19 17:20:43,811 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 18 second wait
2016-07-19 17:20:44,132 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.320s
2016-07-19 17:20:44,219 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=c51bf9df-f98c-474b-9fbe-1c0ab0f54828&fixed_ip=None 0.073s
2016-07-19 17:20:45,560 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 201 POST http://10.5.14.222:9696/v2.0/floatingips 1.340s
2016-07-19 17:20:45,876 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.313s
2016-07-19 17:20:45,888 29362 INFO [tempest.scenario.manager] Tenant networks not configured to be reachable.
2016-07-19 17:20:45,912 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.023s
2016-07-19 17:20:46,940 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.025s
2016-07-19 17:20:47,969 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.026s
2016-07-19 17:20:48,999 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.028s
2016-07-19 17:20:50,026 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.023s
2016-07-19 17:20:51,051 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.022s
2016-07-19 17:20:52,088 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.034s
2016-07-19 17:20:53,119 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.028s
2016-07-19 17:20:54,150 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.027s
2016-07-19 17:20:54,182 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.031s
2016-07-19 17:20:54,183 29362 INFO [tempest.scenario.manager] FloatingIP: {u'floating_ip_address': u'10.5.150.7', u'status': u'ACTIVE', u'id': u'3d2dde96-a248-4bc0-9632-4e6fd48fc8f7', u'floating_network_id': u'342ce130-96ad-4216-a5a1-51c873c618c4', u'port_id': u'cb015901-50ac-41eb-8818-da2a4467c3d8', u'tenant_id': u'04a3557f98d74223843ea42aef6ab38f', u'router_id': u'956498c8-d18a-4ccf-921a-17a3c5fcf480', u'description': u'', u'fixed_ip_address': u'192.168.21.6'} is at status: ACTIVE
2016-07-19 17:21:02,307 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.7' as 'cirros' with public key authentication
2016-07-19 17:21:02,314 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:21:02,423 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:21:02,444 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.7 successfully created
2016-07-19 17:21:03,413 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 202 POST http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828/action 0.851s
2016-07-19 17:21:03,779 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.355s
2016-07-19 17:21:05,141 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.349s
2016-07-19 17:21:06,496 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.342s
2016-07-19 17:21:07,789 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.278s
2016-07-19 17:21:09,123 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.321s
2016-07-19 17:21:09,135 29362 INFO [tempest.common.waiters] State transition "REBUILD/rebuilding" ==> "REBUILD/rebuild_spawning" after 6 second wait
2016-07-19 17:21:10,428 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.290s
2016-07-19 17:21:11,749 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.306s
2016-07-19 17:21:13,163 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.400s
2016-07-19 17:21:14,542 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.365s
2016-07-19 17:21:14,555 29362 INFO [tempest.common.waiters] State transition "REBUILD/rebuild_spawning" ==> "ACTIVE/None" after 11 second wait
2016-07-19 17:21:14,556 29362 INFO [tempest.scenario.manager] Tenant networks not configured to be reachable.
2016-07-19 17:21:14,594 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.036s
2016-07-19 17:21:14,635 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild): 200 GET http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 0.040s
2016-07-19 17:21:14,637 29362 INFO [tempest.scenario.manager] FloatingIP: {u'floating_ip_address': u'10.5.150.7', u'status': u'ACTIVE', u'id': u'3d2dde96-a248-4bc0-9632-4e6fd48fc8f7', u'floating_network_id': u'342ce130-96ad-4216-a5a1-51c873c618c4', u'port_id': u'cb015901-50ac-41eb-8818-da2a4467c3d8', u'tenant_id': u'04a3557f98d74223843ea42aef6ab38f', u'router_id': u'956498c8-d18a-4ccf-921a-17a3c5fcf480', u'description': u'', u'fixed_ip_address': u'192.168.21.6'} is at status: ACTIVE
2016-07-19 17:21:34,872 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.7' as 'cirros' with public key authentication
2016-07-19 17:21:34,874 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 ([Errno None] Unable to connect to port 22 on 10.5.150.7). Number attempts: 1. Retry after 2 seconds.
2016-07-19 17:21:37,379 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 ([Errno None] Unable to connect to port 22 on 10.5.150.7). Number attempts: 2. Retry after 3 seconds.
2016-07-19 17:21:40,886 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 ([Errno None] Unable to connect to port 22 on 10.5.150.7). Number attempts: 3. Retry after 4 seconds.
2016-07-19 17:21:45,515 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:21:45,589 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:21:45,593 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 4. Retry after 5 seconds.
2016-07-19 17:21:51,110 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:21:51,214 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:21:51,231 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 5. Retry after 6 seconds.
2016-07-19 17:21:57,755 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:21:57,874 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:21:57,876 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 6. Retry after 7 seconds.
2016-07-19 17:22:05,397 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:05,500 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:05,506 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 7. Retry after 8 seconds.
2016-07-19 17:22:14,027 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:14,138 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:14,149 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 8. Retry after 9 seconds.
2016-07-19 17:22:23,672 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:23,773 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:23,795 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 9. Retry after 10 seconds.
2016-07-19 17:22:34,312 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:34,422 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:34,439 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 10. Retry after 11 seconds.
2016-07-19 17:22:45,963 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:46,072 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:46,084 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 11. Retry after 12 seconds.
2016-07-19 17:22:58,613 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:22:58,718 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:22:58,735 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 12. Retry after 13 seconds.
2016-07-19 17:23:12,254 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:23:12,359 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:23:12,380 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 13. Retry after 14 seconds.
2016-07-19 17:23:26,896 29362 ERROR [paramiko.transport] Exception: Error reading SSH protocol banner
2016-07-19 17:23:26,898 29362 ERROR [paramiko.transport] Traceback (most recent call last):
2016-07-19 17:23:26,898 29362 ERROR [paramiko.transport] File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/transport.py", line 1723, in run
2016-07-19 17:23:26,899 29362 ERROR [paramiko.transport] self._check_banner()
2016-07-19 17:23:26,899 29362 ERROR [paramiko.transport] File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/transport.py", line 1871, in _check_banner
2016-07-19 17:23:26,900 29362 ERROR [paramiko.transport] raise SSHException('Error reading SSH protocol banner' + str(e))
2016-07-19 17:23:26,901 29362 ERROR [paramiko.transport] SSHException: Error reading SSH protocol banner
2016-07-19 17:23:26,901 29362 ERROR [paramiko.transport]
2016-07-19 17:23:26,910 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Error reading SSH protocol banner). Number attempts: 14. Retry after 15 seconds.
2016-07-19 17:23:42,433 29362 ERROR [paramiko.transport] Exception: Error reading SSH protocol banner
2016-07-19 17:23:42,434 29362 ERROR [paramiko.transport] Traceback (most recent call last):
2016-07-19 17:23:42,435 29362 ERROR [paramiko.transport] File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/transport.py", line 1723, in run
2016-07-19 17:23:42,435 29362 ERROR [paramiko.transport] self._check_banner()
2016-07-19 17:23:42,436 29362 ERROR [paramiko.transport] File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/transport.py", line 1871, in _check_banner
2016-07-19 17:23:42,436 29362 ERROR [paramiko.transport] raise SSHException('Error reading SSH protocol banner' + str(e))
2016-07-19 17:23:42,437 29362 ERROR [paramiko.transport] SSHException: Error reading SSH protocol banner
2016-07-19 17:23:42,438 29362 ERROR [paramiko.transport]
2016-07-19 17:23:42,440 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Error reading SSH protocol banner). Number attempts: 15. Retry after 16 seconds.
2016-07-19 17:23:58,960 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:23:59,067 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:23:59,082 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 16. Retry after 17 seconds.
2016-07-19 17:24:16,614 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:24:16,716 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:24:16,738 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 17. Retry after 18 seconds.
2016-07-19 17:24:35,262 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:24:35,369 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:24:35,371 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 18. Retry after 19 seconds.
2016-07-19 17:24:54,904 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:24:55,010 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:24:55,026 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 19. Retry after 20 seconds.
2016-07-19 17:25:15,547 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:25:15,663 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:25:15,683 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 20. Retry after 21 seconds.
2016-07-19 17:25:37,219 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:25:37,329 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:25:37,344 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 21. Retry after 22 seconds.
2016-07-19 17:25:59,879 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:25:59,987 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:25:59,994 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 22. Retry after 23 seconds.
2016-07-19 17:26:23,511 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:26:23,621 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:26:23,639 29362 WARNING [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 (Authentication failed.). Number attempts: 23. Retry after 24 seconds.
2016-07-19 17:26:48,181 29362 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_5.9p1)
2016-07-19 17:26:48,290 29362 INFO [paramiko.transport] Authentication (publickey) failed.
2016-07-19 17:26:48,303 29362 ERROR [tempest.lib.common.ssh] Failed to establish authenticated ssh connection to cirros@10.5.150.7 after 23 attempts
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh Traceback (most recent call last):
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh File "tempest/lib/common/ssh.py", line 75, in _get_ssh_connection
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh timeout=self.channel_timeout, pkey=self.pkey)
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/client.py", line 380, in connect
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh look_for_keys, gss_auth, gss_kex, gss_deleg_creds, gss_host)
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh File "/home/ubuntu/tools/openstack-charm-testing/tempest/.tox/tempest/local/lib/python2.7/site-packages/paramiko/client.py", line 597, in _auth
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh raise saved_exception
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh AuthenticationException: Authentication failed.
2016-07-19 17:26:48.303 29362 ERROR tempest.lib.common.ssh
2016-07-19 17:26:48,308 29362 ERROR [tempest.scenario.manager] (TestNetworkAdvancedServerOps:test_server_connectivity_rebuild) Initializing SSH connection to 10.5.150.7 failed. Error: Connection to the 10.5.150.7 via SSH timed out.
User: cirros, Password: None
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager Traceback (most recent call last):
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/scenario/manager.py", line 362, in get_remote_client
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager linux_client.validate_authentication()
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 55, in wrapper
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager six.reraise(*original_exception)
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 36, in wrapper
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager return function(self, *args, **kwargs)
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 100, in validate_authentication
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager self.ssh_client.test_connection_auth()
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/lib/common/ssh.py", line 173, in test_connection_auth
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager connection = self._get_ssh_connection()
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager File "tempest/lib/common/ssh.py", line 88, in _get_ssh_connection
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager password=self.password)
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager SSHTimeout: Connection to the 10.5.150.7 via SSH timed out.
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager User: cirros, Password: None
2016-07-19 17:26:48.308 29362 ERROR tempest.scenario.manager
2016-07-19 17:26:48,312 29362 ERROR [tempest.scenario.manager] Public network connectivity check failed
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager Traceback (most recent call last):
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/scenario/manager.py", line 601, in check_public_network_connectivity
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager should_connect=should_connect)
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/scenario/manager.py", line 588, in check_vm_connectivity
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager self.get_remote_client(ip_address, username, private_key)
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/scenario/manager.py", line 362, in get_remote_client
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager linux_client.validate_authentication()
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 55, in wrapper
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager six.reraise(*original_exception)
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 36, in wrapper
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager return function(self, *args, **kwargs)
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/common/utils/linux/remote_client.py", line 100, in validate_authentication
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager self.ssh_client.test_connection_auth()
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/lib/common/ssh.py", line 173, in test_connection_auth
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager connection = self._get_ssh_connection()
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager File "tempest/lib/common/ssh.py", line 88, in _get_ssh_connection
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager password=self.password)
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager SSHTimeout: Connection to the 10.5.150.7 via SSH timed out.
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager User: cirros, Password: None
2016-07-19 17:26:48.312 29362 ERROR tempest.scenario.manager
2016-07-19 17:26:49,446 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/floatingips/3d2dde96-a248-4bc0-9632-4e6fd48fc8f7 1.130s
2016-07-19 17:26:50,283 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.835s
2016-07-19 17:26:51,061 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.777s
2016-07-19 17:26:52,981 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.907s
2016-07-19 17:26:54,421 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.426s
2016-07-19 17:26:55,593 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.160s
2016-07-19 17:26:56,639 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 200 PUT http://10.5.14.222:9696/v2.0/routers/956498c8-d18a-4ccf-921a-17a3c5fcf480/remove_router_interface 1.043s
2016-07-19 17:26:57,809 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/subnets/df032097-bca9-4b60-8744-24b4a4a26b5e 1.168s
2016-07-19 17:26:58,704 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/routers/956498c8-d18a-4ccf-921a-17a3c5fcf480 0.894s
2016-07-19 17:26:59,246 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/networks/cf15eff5-23fb-4757-85fb-22310a7cd845 0.539s
2016-07-19 17:26:59,384 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/security-groups/f104c8b4-0ff0-4481-aa43-f575da783104 0.137s
2016-07-19 17:26:59,420 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 202 DELETE http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/os-keypairs/tempest-TestNetworkAdvancedServerOps-1385541848 0.034s
2016-07-19 17:26:59,567 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkAdvancedServerOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/04a3557f98d74223843ea42aef6ab38f/servers/c51bf9df-f98c-474b-9fbe-1c0ab0f54828 0.145s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_network_advanced_server_ops.py", line 128, in test_server_connectivity_rebuild
server, keypair, floating_ip)
File "tempest/scenario/test_network_advanced_server_ops.py", line 96, in _wait_server_status_and_check_network_connectivity
self._check_network_connectivity(server, keypair, floating_ip)
File "tempest/scenario/test_network_advanced_server_ops.py", line 89, in _check_network_connectivity
servers=[server])
File "tempest/scenario/manager.py", line 601, in check_public_network_connectivity
should_connect=should_connect)
File "tempest/scenario/manager.py", line 588, in check_vm_connectivity
self.get_remote_client(ip_address, username, private_key)
File "tempest/scenario/manager.py", line 362, in get_remote_client
linux_client.validate_authentication()
File "tempest/common/utils/linux/remote_client.py", line 55, in wrapper
six.reraise(*original_exception)
File "tempest/common/utils/linux/remote_client.py", line 36, in wrapper
return function(self, *args, **kwargs)
File "tempest/common/utils/linux/remote_client.py", line 100, in validate_authentication
self.ssh_client.test_connection_auth()
File "tempest/lib/common/ssh.py", line 173, in test_connection_auth
connection = self._get_ssh_connection()
File "tempest/lib/common/ssh.py", line 88, in _get_ssh_connection
password=self.password)
tempest.lib.exceptions.SSHTimeout: Connection to the 10.5.150.7 via SSH timed out.
User: cirros, Password: None
======================================================================
FAIL: tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_port_security_macspoofing_port[compute,id-7c0bb1a2-d053-49a4-98f9-ca1a1d849f63,network]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:34:03,116 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-groups 0.117s
2016-07-19 17:34:03,248 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.130s
2016-07-19 17:34:03,380 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.129s
2016-07-19 17:34:03,509 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.127s
2016-07-19 17:34:03,643 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.132s
2016-07-19 17:34:03,767 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.122s
2016-07-19 17:34:03,888 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.120s
2016-07-19 17:34:04,054 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/networks 0.163s
2016-07-19 17:34:04,144 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/routers 0.089s
2016-07-19 17:34:05,412 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 PUT http://10.5.14.222:9696/v2.0/routers/d6121c78-08e7-41f8-8324-592867cdefa0 1.266s
2016-07-19 17:34:05,535 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/subnets?tenant_id=41ff723da38e4c7daf4be1276056fbd2&cidr=192.168.21.0%2F28 0.121s
2016-07-19 17:34:06,387 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/subnets 0.850s
2016-07-19 17:34:08,197 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 PUT http://10.5.14.222:9696/v2.0/routers/d6121c78-08e7-41f8-8324-592867cdefa0/add_router_interface 1.808s
2016-07-19 17:34:08,276 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/networks 0.077s
2016-07-19 17:34:08,356 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/subnets 0.077s
2016-07-19 17:34:08,420 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/routers 0.062s
2016-07-19 17:34:08,767 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 POST http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/os-keypairs 0.344s
2016-07-19 17:34:08,777 29362 INFO [tempest.common.fixed_network] (TestNetworkBasicOps:test_port_security_macspoofing_port) Found network None available for tenant
2016-07-19 17:34:09,670 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 202 POST http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers 0.892s
2016-07-19 17:34:10,055 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.381s
2016-07-19 17:34:11,443 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.374s
2016-07-19 17:34:11,463 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/block_device_mapping" after 1 second wait
2016-07-19 17:34:12,797 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.330s
2016-07-19 17:34:12,808 29362 INFO [tempest.common.waiters] State transition "BUILD/block_device_mapping" ==> "BUILD/spawning" after 2 second wait
2016-07-19 17:34:14,128 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.317s
2016-07-19 17:34:15,535 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.394s
2016-07-19 17:34:16,907 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.361s
2016-07-19 17:34:18,354 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.435s
2016-07-19 17:34:19,656 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.290s
2016-07-19 17:34:20,982 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.313s
2016-07-19 17:34:22,303 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.307s
2016-07-19 17:34:23,877 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.560s
2016-07-19 17:34:25,252 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.360s
2016-07-19 17:34:26,602 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.332s
2016-07-19 17:34:26,615 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 16 second wait
2016-07-19 17:34:27,312 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.695s
2016-07-19 17:34:27,333 29362 INFO [tempest.scenario.manager] Tenant networks not configured to be reachable.
2016-07-19 17:34:27,418 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=78791da9-aa5f-4359-8369-0f719ae4f90a&fixed_ip=None 0.082s
2016-07-19 17:34:28,468 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/floatingips 1.047s
2016-07-19 17:34:28,496 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.027s
2016-07-19 17:34:29,527 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.027s
2016-07-19 17:34:30,565 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.034s
2016-07-19 17:34:31,593 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.025s
2016-07-19 17:34:32,629 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.032s
2016-07-19 17:34:33,662 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.030s
2016-07-19 17:34:34,700 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.035s
2016-07-19 17:34:35,732 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.028s
2016-07-19 17:34:36,776 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.040s
2016-07-19 17:34:37,832 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.051s
2016-07-19 17:34:38,859 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.023s
2016-07-19 17:34:39,892 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.029s
2016-07-19 17:34:39,924 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.029s
2016-07-19 17:34:39,926 29362 INFO [tempest.scenario.manager] FloatingIP: {u'floating_ip_address': u'10.5.150.11', u'status': u'ACTIVE', u'id': u'5198c261-be03-4d7d-89aa-d223a505dc12', u'floating_network_id': u'342ce130-96ad-4216-a5a1-51c873c618c4', u'port_id': u'af8ef390-3445-4cac-a136-a6e7b1cd3010', u'tenant_id': u'41ff723da38e4c7daf4be1276056fbd2', u'router_id': u'd6121c78-08e7-41f8-8324-592867cdefa0', u'description': u'', u'fixed_ip_address': u'192.168.21.5'} is at status: ACTIVE
2016-07-19 17:34:48,047 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:48,055 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:48,174 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:48,186 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:48,480 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/networks 0.178s
2016-07-19 17:34:48,556 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/subnets?tenant_id=41ff723da38e4c7daf4be1276056fbd2&cidr=192.168.21.0%2F28 0.074s
2016-07-19 17:34:48,621 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/subnets?tenant_id=41ff723da38e4c7daf4be1276056fbd2&cidr=192.168.21.16%2F28 0.062s
2016-07-19 17:34:49,282 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 201 POST http://10.5.14.222:9696/v2.0/subnets 0.658s
2016-07-19 17:34:49,283 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:49,288 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:49,403 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:49,423 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:49,539 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:49,543 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:49,666 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:49,675 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:49,752 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=78791da9-aa5f-4359-8369-0f719ae4f90a 0.062s
2016-07-19 17:34:56,272 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 POST http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a/os-interface 6.517s
2016-07-19 17:34:56,335 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=78791da9-aa5f-4359-8369-0f719ae4f90a 0.056s
2016-07-19 17:34:56,336 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:56,343 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:56,465 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:56,475 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:56,484 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:56,491 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:56,606 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:56,620 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:56,643 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:56,650 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:56,755 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:56,779 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:56,964 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=78791da9-aa5f-4359-8369-0f719ae4f90a&network_id=fc544959-3450-472e-aa0c-4612a9055f87 0.054s
2016-07-19 17:34:56,967 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:56,971 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:57,086 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:57,106 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:57,222 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:34:57,228 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:34:57,348 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:34:57,363 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:34:57,814 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 POST http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/os-keypairs 0.440s
2016-07-19 17:34:57,824 29362 INFO [tempest.common.fixed_network] (TestNetworkBasicOps:test_port_security_macspoofing_port) Found network None available for tenant
2016-07-19 17:34:58,823 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 202 POST http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers 0.996s
2016-07-19 17:34:59,223 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.396s
2016-07-19 17:35:00,604 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.366s
2016-07-19 17:35:00,623 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/block_device_mapping" after 1 second wait
2016-07-19 17:35:02,219 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.593s
2016-07-19 17:35:02,233 29362 INFO [tempest.common.waiters] State transition "BUILD/block_device_mapping" ==> "BUILD/spawning" after 3 second wait
2016-07-19 17:35:03,580 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.344s
2016-07-19 17:35:04,878 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.284s
2016-07-19 17:35:06,260 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.366s
2016-07-19 17:35:07,629 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.355s
2016-07-19 17:35:08,934 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.290s
2016-07-19 17:35:10,330 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.383s
2016-07-19 17:35:11,632 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.289s
2016-07-19 17:35:11,643 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 12 second wait
2016-07-19 17:35:11,949 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.304s
2016-07-19 17:35:11,960 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:11,968 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:12,075 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:12,102 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:13,114 29362 WARNING [tempest.scenario.manager] Failed to ping IP: 192.168.21.25 via a ssh connection from: 10.5.150.11.
2016-07-19 17:35:14,117 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:14,123 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:14,230 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:14,258 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:15,270 29362 WARNING [tempest.scenario.manager] Failed to ping IP: 192.168.21.25 via a ssh connection from: 10.5.150.11.
2016-07-19 17:35:16,273 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:16,280 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:16,395 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:16,415 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:17,428 29362 WARNING [tempest.scenario.manager] Failed to ping IP: 192.168.21.25 via a ssh connection from: 10.5.150.11.
2016-07-19 17:35:18,432 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:18,438 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:18,552 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:18,553 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:18,569 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:18,574 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:18,688 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:18,704 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:18,717 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:18,723 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:18,835 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:18,852 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:18,864 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:18,869 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:18,987 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:19,002 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:19,020 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:19,028 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:19,144 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:19,156 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:19,172 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:35:19,183 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:35:19,301 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:35:19,314 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:35:20,327 29362 WARNING [tempest.scenario.manager] Failed to ping IP: 192.168.21.25 via a ssh connection from: 10.5.150.11.
2016-07-19 17:35:20,989 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:test_port_security_macspoofing_port): 400 PUT http://10.5.14.222:9696/v2.0/ports/8b4928a8-9e70-4568-9069-7ca33920fbf9 0.658s
2016-07-19 17:35:21,725 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.729s
2016-07-19 17:35:22,587 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.861s
2016-07-19 17:35:24,448 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.847s
2016-07-19 17:35:25,629 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.158s
2016-07-19 17:35:26,228 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 202 DELETE http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/os-keypairs/tempest-TestNetworkBasicOps-1092458218 0.597s
2016-07-19 17:35:26,442 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 202 DELETE http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a/os-interface/8b4928a8-9e70-4568-9069-7ca33920fbf9 0.211s
2016-07-19 17:35:26,508 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.222:9696/v2.0/ports/8b4928a8-9e70-4568-9069-7ca33920fbf9 0.064s
2016-07-19 17:35:27,571 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.222:9696/v2.0/ports/8b4928a8-9e70-4568-9069-7ca33920fbf9 0.060s
2016-07-19 17:35:28,618 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 404 GET http://10.5.14.222:9696/v2.0/ports/8b4928a8-9e70-4568-9069-7ca33920fbf9 0.044s
2016-07-19 17:35:29,992 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/subnets/50850446-c7c1-462b-8bcc-04b0bb15da9f 1.372s
2016-07-19 17:35:31,452 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/networks/fc544959-3450-472e-aa0c-4612a9055f87 1.458s
2016-07-19 17:35:31,932 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/floatingips/5198c261-be03-4d7d-89aa-d223a505dc12 0.477s
2016-07-19 17:35:32,346 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.411s
2016-07-19 17:35:32,651 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.303s
2016-07-19 17:35:34,279 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.610s
2016-07-19 17:35:35,550 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.257s
2016-07-19 17:35:35,579 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 202 DELETE http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/os-keypairs/tempest-TestNetworkBasicOps-305382005 0.028s
2016-07-19 17:35:36,504 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 200 PUT http://10.5.14.222:9696/v2.0/routers/d6121c78-08e7-41f8-8324-592867cdefa0/remove_router_interface 0.923s
2016-07-19 17:35:37,751 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/subnets/1ee6bec6-0338-4651-b0f7-58e444d446ad 1.245s
2016-07-19 17:35:38,608 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/routers/d6121c78-08e7-41f8-8324-592867cdefa0 0.855s
2016-07-19 17:35:39,276 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/networks/a5e2f298-6665-4854-bcc4-92556ec5a579 0.667s
2016-07-19 17:35:39,451 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/security-groups/bf83cea3-0b14-487f-9a63-d4ec97c69056 0.172s
2016-07-19 17:35:39,619 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/78791da9-aa5f-4359-8369-0f719ae4f90a 0.164s
2016-07-19 17:35:39,762 29362 INFO [tempest.lib.common.rest_client] Request (TestNetworkBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/41ff723da38e4c7daf4be1276056fbd2/servers/8c578567-2d26-475b-a666-0b659338ffc8 0.141s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 151, in wrapper
return func(*func_args, **func_kwargs)
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_network_basic_ops.py", line 814, in test_port_security_macspoofing_port
security_groups=[])
File "tempest/lib/services/network/ports_client.py", line 37, in update_port
return self.update_resource(uri, post_data)
File "tempest/lib/services/network/base.py", line 68, in update_resource
resp, body = self.put(req_uri, req_post_data)
File "tempest/lib/common/rest_client.py", line 334, in put
return self.request('PUT', url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 767, in _error_checker
raise exceptions.BadRequest(resp_body, resp=resp)
tempest.lib.exceptions.BadRequest: Bad request
Details: {u'detail': u'', u'message': u"Unrecognized attribute(s) 'port_security_enabled'", u'type': u'HTTPBadRequest'}
======================================================================
FAIL: tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_port_security_disable_security_group[compute,id-7c811dcc-263b-49a3-92d2-1b4d8405f50c,network]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:45:12,683 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 POST http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/os-keypairs 0.484s
2016-07-19 17:45:12,911 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/networks 0.222s
2016-07-19 17:45:13,045 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/routers 0.132s
2016-07-19 17:45:14,542 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 PUT http://10.5.14.222:9696/v2.0/routers/e7f59330-0343-4920-a04e-c20cb9effef5 1.495s
2016-07-19 17:45:14,652 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/subnets?tenant_id=b2dc5efb60fb4419a0327f4d39977abc&cidr=192.168.21.0%2F28 0.108s
2016-07-19 17:45:15,800 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/subnets 1.147s
2016-07-19 17:45:17,836 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 PUT http://10.5.14.222:9696/v2.0/routers/e7f59330-0343-4920-a04e-c20cb9effef5/add_router_interface 2.033s
2016-07-19 17:45:17,972 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/security-groups 0.132s
2016-07-19 17:45:18,103 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/security-groups 0.130s
2016-07-19 17:45:18,288 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/security-group-rules 0.184s
2016-07-19 17:45:18,295 29362 INFO [tempest.common.fixed_network] (TestSecurityGroupsBasicOps:setUp) Found network None available for tenant
2016-07-19 17:45:19,572 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 202 POST http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers 1.275s
2016-07-19 17:45:20,036 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.460s
2016-07-19 17:45:21,563 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.512s
2016-07-19 17:45:21,581 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/networking" after 1 second wait
2016-07-19 17:45:22,965 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.381s
2016-07-19 17:45:22,980 29362 INFO [tempest.common.waiters] State transition "BUILD/networking" ==> "BUILD/spawning" after 2 second wait
2016-07-19 17:45:24,371 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.389s
2016-07-19 17:45:25,810 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.426s
2016-07-19 17:45:27,235 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.412s
2016-07-19 17:45:28,703 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.431s
2016-07-19 17:45:30,073 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.357s
2016-07-19 17:45:31,443 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.344s
2016-07-19 17:45:32,778 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.311s
2016-07-19 17:45:34,428 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.608s
2016-07-19 17:45:35,743 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.300s
2016-07-19 17:45:37,153 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.396s
2016-07-19 17:45:38,495 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.327s
2016-07-19 17:45:39,864 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.355s
2016-07-19 17:45:41,239 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.357s
2016-07-19 17:45:41,250 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 21 second wait
2016-07-19 17:45:41,605 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.354s
2016-07-19 17:45:41,694 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=8e92d4f9-7a35-4a26-ac6d-2c396f87f03f&fixed_ip=None 0.073s
2016-07-19 17:45:42,816 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 201 POST http://10.5.14.222:9696/v2.0/floatingips 1.119s
2016-07-19 17:45:42,915 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/networks 0.097s
2016-07-19 17:45:43,459 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/subnets 0.541s
2016-07-19 17:45:43,605 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/routers 0.144s
2016-07-19 17:45:43,710 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/ports 0.103s
2016-07-19 17:45:43,712 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:45:58,738 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:45:58,862 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:45:58,874 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:45:58,989 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:45:59,007 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:45:59,136 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:45:59,164 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:45:59,256 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:setUp): 200 GET http://10.5.14.222:9696/v2.0/ports?fields=fixed_ips&fields=mac_address 0.075s
2016-07-19 17:45:59,264 29362 INFO [tempest.common.fixed_network] (TestSecurityGroupsBasicOps:test_port_security_disable_security_group) Found network None available for tenant
2016-07-19 17:46:00,799 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 202 POST http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers 1.532s
2016-07-19 17:46:03,171 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 2.366s
2016-07-19 17:46:05,916 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 1.729s
2016-07-19 17:46:05,932 29362 INFO [tempest.common.waiters] State transition "BUILD/None" ==> "BUILD/spawning" after 2 second wait
2016-07-19 17:46:07,559 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.623s
2016-07-19 17:46:09,257 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.674s
2016-07-19 17:46:10,758 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.486s
2016-07-19 17:46:12,179 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.408s
2016-07-19 17:46:13,532 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.338s
2016-07-19 17:46:14,999 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.453s
2016-07-19 17:46:15,021 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 12 second wait
2016-07-19 17:46:15,381 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.357s
2016-07-19 17:46:15,396 29362 INFO [tempest.lib.common.ssh] Creating ssh connection to '10.5.150.11' as 'cirros' with public key authentication
2016-07-19 17:46:15,407 29362 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2012.55)
2016-07-19 17:46:15,531 29362 INFO [paramiko.transport] Authentication (publickey) successful!
2016-07-19 17:46:15,536 29362 INFO [tempest.lib.common.ssh] ssh connection to cirros@10.5.150.11 successfully created
2016-07-19 17:46:15,706 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 200 GET http://10.5.14.222:9696/v2.0/ports?device_id=a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.054s
2016-07-19 17:46:15,720 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:test_port_security_disable_security_group): 400 PUT http://10.5.14.222:9696/v2.0/ports/af34e1fd-d5ff-4b17-9925-dee0f0b44863 0.012s
2016-07-19 17:46:16,158 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.435s
2016-07-19 17:46:16,508 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.348s
2016-07-19 17:46:17,868 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.347s
2016-07-19 17:46:19,200 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.317s
2016-07-19 17:46:20,387 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.173s
2016-07-19 17:46:20,838 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/floatingips/501884fb-feb9-44d4-85a6-cd46d7a6b5fb 0.449s
2016-07-19 17:46:21,394 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.555s
2016-07-19 17:46:21,724 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.328s
2016-07-19 17:46:23,053 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.316s
2016-07-19 17:46:24,415 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.348s
2016-07-19 17:46:25,569 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.138s
2016-07-19 17:46:25,725 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/security-groups/c64ace95-0f41-4c00-b054-2704c322238d 0.154s
2016-07-19 17:46:25,902 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/security-groups/a86ca9dd-60b3-4e23-b0cd-f543e0250cde 0.174s
2016-07-19 17:46:27,132 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 200 PUT http://10.5.14.222:9696/v2.0/routers/e7f59330-0343-4920-a04e-c20cb9effef5/remove_router_interface 1.228s
2016-07-19 17:46:28,557 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/subnets/58c4a376-7c06-4562-9edc-b47371afccdd 1.422s
2016-07-19 17:46:29,496 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/routers/e7f59330-0343-4920-a04e-c20cb9effef5 0.936s
2016-07-19 17:46:30,286 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 204 DELETE http://10.5.14.222:9696/v2.0/networks/1157dd3d-a1c9-466f-bf3e-5468c556ae4a 0.789s
2016-07-19 17:46:30,321 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 202 DELETE http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/os-keypairs/tempest-TestSecurityGroupsBasicOps-1224174369 0.033s
2016-07-19 17:46:30,488 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/8e92d4f9-7a35-4a26-ac6d-2c396f87f03f 0.164s
2016-07-19 17:46:30,655 29362 INFO [tempest.lib.common.rest_client] Request (TestSecurityGroupsBasicOps:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/b2dc5efb60fb4419a0327f4d39977abc/servers/a01c4d83-0172-4262-8a53-b821f6d5b4f3 0.164s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 151, in wrapper
return func(*func_args, **func_kwargs)
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_security_groups_basic_ops.py", line 612, in test_port_security_disable_security_group
security_groups=[])
File "tempest/lib/services/network/ports_client.py", line 37, in update_port
return self.update_resource(uri, post_data)
File "tempest/lib/services/network/base.py", line 68, in update_resource
resp, body = self.put(req_uri, req_post_data)
File "tempest/lib/common/rest_client.py", line 334, in put
return self.request('PUT', url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 767, in _error_checker
raise exceptions.BadRequest(resp_body, resp=resp)
tempest.lib.exceptions.BadRequest: Bad request
Details: {u'detail': u'', u'message': u"Unrecognized attribute(s) 'port_security_enabled'", u'type': u'HTTPBadRequest'}
======================================================================
FAIL: tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern.test_create_ebs_image_and_check_boot[compute,id-36c34c67-7b54-4b59-b188-02a2f458a63b,image,volume]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:54:57,383 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 17:54:59,283 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 POST http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes 1.898s
2016-07-19 17:55:00,170 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.886s
2016-07-19 17:55:01,327 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.152s
2016-07-19 17:55:02,465 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.134s
2016-07-19 17:55:03,624 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.155s
2016-07-19 17:55:04,730 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.102s
2016-07-19 17:55:04,844 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.112s
2016-07-19 17:55:04,851 29362 INFO [tempest.common.fixed_network] (TestVolumeBootPattern:test_create_ebs_image_and_check_boot) Found network {u'subnets': [], u'mtu': 1458, u'tags': [], u'status': u'ACTIVE', u'updated_at': u'2016-07-19T17:54:53', u'created_at': u'2016-07-19T17:54:53', u'router:external': False, u'name': u'tempest-TestVolumeBootPattern-728007423-network', u'provider:physical_network': None, u'admin_state_up': True, u'id': u'df2b64ec-7613-4e7a-b6ee-f1e144044412', u'tenant_id': u'4b156b899aef4cfdbe55a12e44c5004b', u'availability_zone_hints': [], u'ipv4_address_scope': None, u'description': u'', u'provider:network_type': u'gre', u'availability_zones': [], u'ipv6_address_scope': None, u'shared': False, u'provider:segmentation_id': 63} available for tenant
2016-07-19 17:55:06,735 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 202 POST http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers 1.882s
2016-07-19 17:55:07,832 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 1.092s
2016-07-19 17:55:09,180 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.334s
2016-07-19 17:55:09,200 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/block_device_mapping" after 2 second wait
2016-07-19 17:55:10,547 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.343s
2016-07-19 17:55:12,045 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.484s
2016-07-19 17:55:12,057 29362 INFO [tempest.common.waiters] State transition "BUILD/block_device_mapping" ==> "BUILD/spawning" after 5 second wait
2016-07-19 17:55:13,380 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.320s
2016-07-19 17:55:14,748 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.351s
2016-07-19 17:55:16,037 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.275s
2016-07-19 17:55:17,362 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.312s
2016-07-19 17:55:18,716 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.333s
2016-07-19 17:55:20,047 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.319s
2016-07-19 17:55:21,537 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.478s
2016-07-19 17:55:22,857 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.298s
2016-07-19 17:55:24,192 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.322s
2016-07-19 17:55:25,527 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.323s
2016-07-19 17:55:26,838 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.296s
2016-07-19 17:55:28,441 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.590s
2016-07-19 17:55:28,452 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 21 second wait
2016-07-19 17:55:28,781 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.328s
2016-07-19 17:55:31,283 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 202 POST http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52/action 2.480s
2016-07-19 17:55:31,717 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 HEAD http://10.5.14.217:9292/v1/images/6be93b57-29b1-4e94-ad8e-d8fe23c3f990 0.431s
2016-07-19 17:55:32,193 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 HEAD http://10.5.14.217:9292/v1/images/6be93b57-29b1-4e94-ad8e-d8fe23c3f990 0.473s
2016-07-19 17:55:32,241 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/snapshots/05721c14-774d-43d0-9e87-96f537286efe 0.046s
2016-07-19 17:55:32,833 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 204 DELETE http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.589s
2016-07-19 17:55:33,515 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.679s
2016-07-19 17:55:34,859 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.330s
2016-07-19 17:55:36,171 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.298s
2016-07-19 17:55:37,655 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.449s
2016-07-19 17:55:38,803 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 404 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.135s
2016-07-19 17:55:38,812 29362 INFO [tempest.common.fixed_network] (TestVolumeBootPattern:test_create_ebs_image_and_check_boot) Found network {u'subnets': [], u'mtu': 1458, u'tags': [], u'status': u'ACTIVE', u'updated_at': u'2016-07-19T17:54:53', u'created_at': u'2016-07-19T17:54:53', u'router:external': False, u'name': u'tempest-TestVolumeBootPattern-728007423-network', u'provider:physical_network': None, u'admin_state_up': True, u'id': u'df2b64ec-7613-4e7a-b6ee-f1e144044412', u'tenant_id': u'4b156b899aef4cfdbe55a12e44c5004b', u'availability_zone_hints': [], u'ipv4_address_scope': None, u'description': u'', u'provider:network_type': u'gre', u'availability_zones': [], u'ipv6_address_scope': None, u'shared': False, u'provider:segmentation_id': 63} available for tenant
2016-07-19 17:55:39,216 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:test_create_ebs_image_and_check_boot): 400 POST http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers 0.402s
2016-07-19 17:55:39,363 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 202 DELETE http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/snapshots/05721c14-774d-43d0-9e87-96f537286efe 0.142s
2016-07-19 17:55:39,459 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/snapshots/05721c14-774d-43d0-9e87-96f537286efe 0.095s
2016-07-19 17:55:40,525 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/snapshots/05721c14-774d-43d0-9e87-96f537286efe 0.063s
2016-07-19 17:55:41,383 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/6be93b57-29b1-4e94-ad8e-d8fe23c3f990 0.855s
2016-07-19 17:55:41,524 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 DELETE http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.139s
2016-07-19 17:55:41,671 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.144s
2016-07-19 17:55:41,776 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 202 DELETE http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.103s
2016-07-19 17:55:41,919 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 200 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.141s
2016-07-19 17:55:43,002 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 GET http://10.5.14.216:8776/v1/4b156b899aef4cfdbe55a12e44c5004b/volumes/545eefa8-4e04-41d2-8cee-f40cecd382b0 0.078s
2016-07-19 17:55:43,201 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/4b156b899aef4cfdbe55a12e44c5004b/servers/2c7087c2-0fde-48f2-a31d-54d5bbc5cc52 0.197s
2016-07-19 17:55:43,254 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPattern:_run_cleanups): 404 HEAD http://10.5.14.217:9292/v1/images/6be93b57-29b1-4e94-ad8e-d8fe23c3f990 0.051s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_volume_boot_pattern.py", line 181, in test_create_ebs_image_and_check_boot
image_id=image['id'])
File "tempest/scenario/manager.py", line 237, in create_server
image_id=image_id, **kwargs)
File "tempest/common/compute.py", line 128, in create_test_server
**kwargs)
File "tempest/lib/services/compute/servers_client.py", line 67, in create_server
resp, body = self.post('servers', post_body)
File "tempest/lib/common/rest_client.py", line 270, in post
return self.request('POST', url, extra_headers, headers, body, chunked)
File "tempest/lib/services/compute/base_compute_client.py", line 48, in request
method, url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 767, in _error_checker
raise exceptions.BadRequest(resp_body, resp=resp)
tempest.lib.exceptions.BadRequest: Bad request
Details: {u'message': u'Volume is smaller than the minimum size specified in image metadata. Volume size is 1073741824 bytes, minimum size is 5368709120 bytes.', u'code': 400}
======================================================================
FAIL: tempest.scenario.test_volume_boot_pattern.TestVolumeBootPatternV2.test_create_ebs_image_and_check_boot[compute,id-36c34c67-7b54-4b59-b188-02a2f458a63b,image,volume]
tags: worker-0
----------------------------------------------------------------------
Empty attachments:
stderr
stdout
pythonlogging:'': {{{
2016-07-19 17:58:07,624 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 POST http://10.5.14.219:5000/v2.0/tokens
2016-07-19 17:58:08,969 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 POST http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes 1.344s
2016-07-19 17:58:09,390 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.417s
2016-07-19 17:58:10,527 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.134s
2016-07-19 17:58:11,673 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.143s
2016-07-19 17:58:12,779 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.101s
2016-07-19 17:58:13,891 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.109s
2016-07-19 17:58:14,081 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.189s
2016-07-19 17:58:14,092 29362 INFO [tempest.common.fixed_network] (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot) Found network {u'subnets': [], u'mtu': 1458, u'tags': [], u'status': u'ACTIVE', u'updated_at': u'2016-07-19T17:58:03', u'created_at': u'2016-07-19T17:58:02', u'router:external': False, u'name': u'tempest-TestVolumeBootPatternV2-151974281-network', u'provider:physical_network': None, u'admin_state_up': True, u'id': u'894b56d1-e868-454e-bc0e-7f456c056332', u'tenant_id': u'40489fadf8b142eba3fc9ef890cb8004', u'availability_zone_hints': [], u'ipv4_address_scope': None, u'description': u'', u'provider:network_type': u'gre', u'availability_zones': [], u'ipv6_address_scope': None, u'shared': False, u'provider:segmentation_id': 91} available for tenant
2016-07-19 17:58:16,147 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 202 POST http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers 2.053s
2016-07-19 17:58:17,184 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 1.031s
2016-07-19 17:58:18,567 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.367s
2016-07-19 17:58:18,578 29362 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/block_device_mapping" after 1 second wait
2016-07-19 17:58:20,071 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.491s
2016-07-19 17:58:21,495 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.409s
2016-07-19 17:58:21,511 29362 INFO [tempest.common.waiters] State transition "BUILD/block_device_mapping" ==> "BUILD/spawning" after 4 second wait
2016-07-19 17:58:22,837 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.323s
2016-07-19 17:58:24,328 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.478s
2016-07-19 17:58:25,860 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.518s
2016-07-19 17:58:27,311 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.432s
2016-07-19 17:58:28,888 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.565s
2016-07-19 17:58:30,476 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.569s
2016-07-19 17:58:32,081 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.593s
2016-07-19 17:58:32,093 29362 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 15 second wait
2016-07-19 17:58:32,641 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.546s
2016-07-19 17:58:34,440 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 202 POST http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d/action 1.786s
2016-07-19 17:58:34,808 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 HEAD http://10.5.14.217:9292/v1/images/5e11395a-f76e-49d4-a737-60fa101658fa 0.362s
2016-07-19 17:58:35,221 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 HEAD http://10.5.14.217:9292/v1/images/5e11395a-f76e-49d4-a737-60fa101658fa 0.411s
2016-07-19 17:58:35,275 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/snapshots/b0705f41-35af-4fc9-ab3d-d5e12b01bbb9 0.052s
2016-07-19 17:58:35,704 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 204 DELETE http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.427s
2016-07-19 17:58:36,073 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.367s
2016-07-19 17:58:37,515 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.427s
2016-07-19 17:58:38,764 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.225s
2016-07-19 17:58:40,067 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 200 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.291s
2016-07-19 17:58:41,256 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 404 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.175s
2016-07-19 17:58:41,265 29362 INFO [tempest.common.fixed_network] (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot) Found network {u'subnets': [], u'mtu': 1458, u'tags': [], u'status': u'ACTIVE', u'updated_at': u'2016-07-19T17:58:03', u'created_at': u'2016-07-19T17:58:02', u'router:external': False, u'name': u'tempest-TestVolumeBootPatternV2-151974281-network', u'provider:physical_network': None, u'admin_state_up': True, u'id': u'894b56d1-e868-454e-bc0e-7f456c056332', u'tenant_id': u'40489fadf8b142eba3fc9ef890cb8004', u'availability_zone_hints': [], u'ipv4_address_scope': None, u'description': u'', u'provider:network_type': u'gre', u'availability_zones': [], u'ipv6_address_scope': None, u'shared': False, u'provider:segmentation_id': 91} available for tenant
2016-07-19 17:58:41,724 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:test_create_ebs_image_and_check_boot): 400 POST http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers 0.456s
2016-07-19 17:58:41,859 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 202 DELETE http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/snapshots/b0705f41-35af-4fc9-ab3d-d5e12b01bbb9 0.132s
2016-07-19 17:58:41,944 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/snapshots/b0705f41-35af-4fc9-ab3d-d5e12b01bbb9 0.084s
2016-07-19 17:58:42,993 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/snapshots/b0705f41-35af-4fc9-ab3d-d5e12b01bbb9 0.046s
2016-07-19 17:58:44,437 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 200 DELETE http://10.5.14.217:9292/v1/images/5e11395a-f76e-49d4-a737-60fa101658fa 1.442s
2016-07-19 17:58:44,888 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 DELETE http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.449s
2016-07-19 17:58:45,036 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.146s
2016-07-19 17:58:45,315 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 202 DELETE http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.277s
2016-07-19 17:58:45,482 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 200 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.165s
2016-07-19 17:58:46,573 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 GET http://10.5.14.216:8776/v1/40489fadf8b142eba3fc9ef890cb8004/volumes/29b912fc-0996-4533-b5be-c22320fbf7c9 0.088s
2016-07-19 17:58:46,727 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 GET http://10.5.14.224:8774/v2/40489fadf8b142eba3fc9ef890cb8004/servers/41edeb05-da7a-402f-a0ae-4f27db8e9d9d 0.152s
2016-07-19 17:58:46,775 29362 INFO [tempest.lib.common.rest_client] Request (TestVolumeBootPatternV2:_run_cleanups): 404 HEAD http://10.5.14.217:9292/v1/images/5e11395a-f76e-49d4-a737-60fa101658fa 0.045s
}}}
Traceback (most recent call last):
File "tempest/test.py", line 106, in wrapper
return f(self, *func_args, **func_kwargs)
File "tempest/scenario/test_volume_boot_pattern.py", line 181, in test_create_ebs_image_and_check_boot
image_id=image['id'])
File "tempest/scenario/manager.py", line 237, in create_server
image_id=image_id, **kwargs)
File "tempest/common/compute.py", line 128, in create_test_server
**kwargs)
File "tempest/lib/services/compute/servers_client.py", line 67, in create_server
resp, body = self.post('servers', post_body)
File "tempest/lib/common/rest_client.py", line 270, in post
return self.request('POST', url, extra_headers, headers, body, chunked)
File "tempest/lib/services/compute/base_compute_client.py", line 48, in request
method, url, extra_headers, headers, body, chunked)
File "tempest/lib/common/rest_client.py", line 664, in request
resp, resp_body)
File "tempest/lib/common/rest_client.py", line 767, in _error_checker
raise exceptions.BadRequest(resp_body, resp=resp)
tempest.lib.exceptions.BadRequest: Bad request
Details: {u'message': u'Volume is smaller than the minimum size specified in image metadata. Volume size is 1073741824 bytes, minimum size is 5368709120 bytes.', u'code': 400}
Ran 1393 (+1282) tests in 10158.426s (+9044.439s)
FAILED (id=39, failures=14 (+14), skips=80)
|