1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425 | ubuntu@xenial:/charms/trusty/cassandra$ time bundletester -v -l DEBUG -F
DEBUG:bundletester.utils:Updating JUJU_ENV: "" -> "local.reviewqueue:default"
DEBUG:root:Bootstrap environment: local.reviewqueue:default
DEBUG:deployer.env:Connecting to environment...
DEBUG:deployer.env:Connected to environment
DEBUG:runner:call ['/usr/local/bin/charm-proof'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:I: missing recommended hook start
DEBUG:runner:Exit Code: 0
cassandra
charm-proof PASS
DEBUG:runner:call ['/usr/bin/make', '-s', 'lint'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:gpg: keyring `/tmp/tmphlydbece/secring.gpg' created
DEBUG:runner:gpg: keyring `/tmp/tmphlydbece/pubring.gpg' created
DEBUG:runner:gpg: requesting key E4FD7A7A from hkp server keyserver.ubuntu.com
DEBUG:runner:gpg: /tmp/tmphlydbece/trustdb.gpg: trustdb created
DEBUG:runner:gpg: key E4FD7A7A: public key "Launchpad Stub's Launchpad PPA" imported
DEBUG:runner:gpg: Total number processed: 1
DEBUG:runner:gpg: imported: 1 (RSA: 1)
DEBUG:runner:OK
DEBUG:runner:gpg: keyring `/tmp/tmpu_o9xgt3/secring.gpg' created
DEBUG:runner:gpg: keyring `/tmp/tmpu_o9xgt3/pubring.gpg' created
DEBUG:runner:gpg: requesting key E4FD7A7A from hkp server keyserver.ubuntu.com
DEBUG:runner:gpg: /tmp/tmpu_o9xgt3/trustdb.gpg: trustdb created
DEBUG:runner:gpg: key E4FD7A7A: public key "Launchpad Stub's Launchpad PPA" imported
DEBUG:runner:gpg: Total number processed: 1
DEBUG:runner:gpg: imported: 1 (RSA: 1)
DEBUG:runner:OK
DEBUG:runner:Hit:1 http://archive.ubuntu.com/ubuntu xenial InRelease
DEBUG:runner:Get:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [93.3 kB]
DEBUG:runner:Hit:3 http://archive.ubuntu.com/ubuntu xenial-backports InRelease
DEBUG:runner:Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB]
DEBUG:runner:Hit:5 http://ppa.launchpad.net/ahasenack/juju-deployer-daily/ubuntu xenial InRelease
DEBUG:runner:Hit:6 http://ppa.launchpad.net/ahasenack/python-jujuclient/ubuntu xenial InRelease
DEBUG:runner:Hit:7 http://ppa.launchpad.net/juju/devel/ubuntu xenial InRelease
DEBUG:runner:Hit:8 http://ppa.launchpad.net/juju/stable/ubuntu xenial InRelease
DEBUG:runner:Hit:9 http://ppa.launchpad.net/marcoceppi/xenial-chopper/ubuntu xenial InRelease
DEBUG:runner:Hit:10 http://ppa.launchpad.net/stub/cassandra/ubuntu xenial InRelease
DEBUG:runner:Hit:11 http://ppa.launchpad.net/stub/juju/ubuntu xenial InRelease
DEBUG:runner:Fetched 185 kB in 1s (129 kB/s)
DEBUG:runner:Reading package lists...
DEBUG:runner:Reading package lists...
DEBUG:runner:Building dependency tree...
DEBUG:runner:Reading state information...
DEBUG:runner:build-essential is already the newest version (12.1ubuntu2).
DEBUG:runner:libffi-dev is already the newest version (3.2.1-4).
DEBUG:runner:python3 is already the newest version (3.5.1-3).
DEBUG:runner:python3-apt is already the newest version (1.1.0~beta1build1).
DEBUG:runner:python3-dev is already the newest version (3.5.1-3).
DEBUG:runner:python3-jinja2 is already the newest version (2.8-1).
DEBUG:runner:charm-tools is already the newest version (2.1.2-0ubuntu4).
DEBUG:runner:libev-dev is already the newest version (1:4.22-1).
DEBUG:runner:libev4 is already the newest version (1:4.22-1).
DEBUG:runner:moreutils is already the newest version (0.57-1).
DEBUG:runner:netcat is already the newest version (1.10-41).
DEBUG:runner:python-virtualenv is already the newest version (15.0.1+ds-3).
DEBUG:runner:python3-bcrypt is already the newest version (2.0.0-2build1).
DEBUG:runner:python3-pip is already the newest version (8.1.1-2).
DEBUG:runner:python3-cassandra is already the newest version (3.0.0-0~17-1~ubuntu16.04.1).
DEBUG:runner:juju-wait is already the newest version (2.3.1-0~32~ubuntu16.04.1).
DEBUG:runner:The following packages were automatically installed and are no longer required:
DEBUG:runner: linux-headers-4.4.0-16 linux-headers-4.4.0-16-generic
DEBUG:runner: linux-image-4.4.0-16-generic
DEBUG:runner:Use 'sudo apt autoremove' to remove them.
DEBUG:runner:0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
DEBUG:runner:Using base prefix '/usr'
DEBUG:runner:New python executable in /tmp/bundletester-rQceg2/cassandra/.venv3/bin/python3
DEBUG:runner:Also creating executable in /tmp/bundletester-rQceg2/cassandra/.venv3/bin/python
DEBUG:runner:Installing setuptools, pkg_resources, pip, wheel...done.
DEBUG:runner:Running virtualenv with interpreter /usr/bin/python3
DEBUG:runner:pip: /tmp/bundletester-rQceg2/cassandra/.venv3/bin/pip
DEBUG:runner:nosetests: /tmp/bundletester-rQceg2/cassandra/.venv3/bin/nosetests
DEBUG:runner:flake8: /tmp/bundletester-rQceg2/cassandra/.venv3/bin/flake8
DEBUG:runner:Thu May 5 14:43:44 UTC 2016
DEBUG:runner: total used free shared buff/cache available
DEBUG:runner:Mem: 3.9G 107M 3.3G 6.2M 481M 3.7G
DEBUG:runner:Swap: 0B 0B 0B
DEBUG:runner:I: missing recommended hook start
DEBUG:runner:OK: Lint free Thu May 5 14:44:05 UTC 2016
DEBUG:runner:Exit Code: 0
make lint PASS
DEBUG:runner:call ['/usr/bin/make', '-s', 'unittest'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:44:05 UTC 2016
DEBUG:runner: total used free shared buff/cache available
DEBUG:runner:Mem: 3.9G 106M 3.3G 6.2M 494M 3.7G
DEBUG:runner:Swap: 0B 0B 0B
DEBUG:runner:I: missing recommended hook start
DEBUG:runner:OK: Lint free Thu May 5 14:44:27 UTC 2016
DEBUG:runner:test_action_wrapper (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_add_implicit_package_signing_keys (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_config_key_lists_complete (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_configure_cassandra_env (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_configure_cassandra_rackdc (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_configure_cassandra_yaml (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_configure_firewall (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_configure_sources (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_emit_cluster_info (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_emit_java_version (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_ensure_cassandra_package_status (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_fetch_oracle_jre (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_fetch_oracle_jre_local (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_fetch_oracle_jre_notfound (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_cassandra_packages (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_cassandra_packages_oracle (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_maintenance_crontab (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_oracle_jre (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_oracle_jre_tarball (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_install_oracle_jre_tarball_already (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_leader_only (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_maintain_seeds (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_maintain_seeds_start (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_maybe_restart (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_needs_reset_auth_keyspace_replication (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_needs_reset_auth_keyspace_replication_false (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_needs_restart (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_nrpe_external_master_relation (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_nrpe_external_master_relation_disable_diskchk (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_nrpe_external_master_relation_disable_heapchk (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_nrpe_external_master_relation_no_local (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_preinstall (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_publish_database_admin_relations (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_publish_database_relation_leader (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_publish_database_relation_super (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_publish_database_relations (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_request_unit_superuser (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_all_io_schedulers (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_auth_keyspace_replication (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_default_password (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_default_password_noop (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_sysctl (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_sysctl_expected_fails (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_sysctl_fails_badly (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_reset_sysctl_lxc (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_revert_unchangeable_config (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_set_active (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_set_active_seed (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_set_active_service (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_set_proxy (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_start_cassandra (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_stop_cassandra (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_store_unit_private_ip (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_swapoff (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_swapoff_fails (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_swapoff_lxc (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_update_etc_hosts (tests.test_actions.TestActions) ... ok
DEBUG:runner:test_actual_seed_ips (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_autostart_disabled (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_autostart_disabled_partial (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_backoff (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_configure_cassandra_yaml (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_configure_cassandra_yaml_20 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_configure_cassandra_yaml_22 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_configure_cassandra_yaml_overrides (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_connect (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_connect_badauth (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_connect_timeout (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_connect_with_creds (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_cqlshrc_path (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_create_unit_superuser_hard (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_emit_describe_cluster (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_emit_netstats (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_emit_status (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_ensure_database_directories (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_ensure_database_directory (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_ensure_package_status (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_ensure_user (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_ensure_user_22 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_all_database_directories (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_all_database_directories_30 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_auth_keyspace_replication (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_auth_keyspace_replication_30 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_config_dir (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_edition (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_env_file (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_packages (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_packages_dse (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_packages_oracle_jre (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_pid_file (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_rackdc_file (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_service (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_service_dse_override (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_version (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_version_dse (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_version_dse_uninstalled (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_version_uninstalled (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_cassandra_yaml_file (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_database_directory (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_jre (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_jre_dse_override (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_jre_unknown (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_package_version (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_package_version_not_found (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_package_version_not_installed (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_pid_from_file (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_get_seed_ips (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_install_packages (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_install_packages_extras (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_install_packages_noop (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_bootstrapped (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_failsafe (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_invalid_pid (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_missing_process (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_not_running (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_shutting_down (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_starting_up (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_cassandra_running_wrong_user (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_decommissioned (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_local_plugins_dir (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_maybe_backup (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_nodetool (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_nodetool_CASSANDRA_8776 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_nodetool_retry (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_num_nodes (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_query (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_query_retry (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_query_timeout (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_read_cassandra_yaml (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_recursive_chown (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_remount_cassandra (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_remount_cassandra_noop (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_remount_cassandra_unmount (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_repair_auth_keyspace (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_set_auth_keyspace_replication (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_set_io_scheduler (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_start_cassandra (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_stop_cassandra (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_stop_cassandra_failure (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_stop_cassandra_noop (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_superuser_credentials (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_superuser_credentials_20 (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_superuser_username (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_update_hosts_file_changed_entry (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_update_hosts_file_new_entry (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_week_spread (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_write_cassandra_yaml (tests.test_helpers.TestHelpers) ... ok
DEBUG:runner:test_is_lxc (tests.test_helpers.TestIsLxc) ... ok
DEBUG:runner:test_get_service_definitions (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_get_service_definitions_open_ports (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_get_service_manager (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_requires_live_node (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_requires_live_node_creds (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_requires_live_node_decommissioned (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:test_requires_live_node_down (tests.test_definitions.TestDefinitions) ... ok
DEBUG:runner:
DEBUG:runner:Name Stmts Miss Branch BrPart Cover Missing
DEBUG:runner:------------------------------------------------------------
DEBUG:runner:actions.py 462 64 172 17 84% 126-130, 262-273, 298-300, 316-318, 330, 381, 470, 494, 556, 570-579, 601-617, 633-648, 676, 906-916, 930, 938-939, 947, 124->126, 297->298, 315->316, 329->330, 466->-449, 469->470, 491->494, 532->539, 555->556, 659->685, 660->676, 768->767, 775->774, 904->906, 927->930, 937->938, 943->947
DEBUG:runner:definitions.py 31 1 8 1 95% 114, 113->114
DEBUG:runner:helpers.py 583 55 195 26 88% 317, 417-418, 423-425, 458, 475, 483, 539, 547, 552, 590-591, 657-658, 689-691, 693, 803, 847-851, 867, 871-874, 878, 882-888, 898-902, 932-934, 981-983, 989-990, 994, 1005-1006, 1011-1015, 1046, 172->170, 314->317, 413->417, 457->458, 474->475, 482->483, 530->-525, 546->547, 549->552, 585->594, 589->585, 589->590, 622->628, 665->-661, 668->670, 688->689, 692->693, 753->756, 777->-773, 797->803, 845->847, 862->864, 864->867, 896->898, 1045->1044, 1045->1046
DEBUG:runner:------------------------------------------------------------
DEBUG:runner:TOTAL 1076 120 375 44 86%
DEBUG:runner:----------------------------------------------------------------------
DEBUG:runner:Ran 155 tests in 31.474s
DEBUG:runner:
DEBUG:runner:OK
DEBUG:runner:OK: Unit tests pass Thu May 5 14:45:00 UTC 2016
DEBUG:runner:Exit Code: 0
make unittest PASS
DEBUG:runner:call ['/usr/bin/make', '-s', 'Test1UnitDeployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:45:00 UTC 2016
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:19 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:42 Deploying services...
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:43 Deploying service cassandra using /tmp/charmsguurwox/trusty/cassandra
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:43 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:43 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpF_jre9 --constraints mem=2G --repository=/tmp/charmsguurwox local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:45:43
DEBUG:runner:May 05 14:45:43 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:45:43
DEBUG:runner:May 05 14:45:43 2016-05-05 14:45:43 Deployment stopped. run time: 25.03
DEBUG:runner:May 05 14:45:43 ERROR
DEBUG:runner:May 05 14:45:43
DEBUG:runner:May 05 14:45:43 ======================================================================
DEBUG:runner:May 05 14:45:43 ERROR: test suite for <class 'tests.test_integration.Test1UnitDeployment'>
DEBUG:runner:May 05 14:45:43 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:45:43 Traceback (most recent call last):
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:45:43 self.setUp()
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:45:43 self.setupContext(ancestor)
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:45:43 try_run(context, names)
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:45:43 return func()
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:45:43 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:45:43 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:45:43 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:45:43 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:45:43 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:45:43 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:45:43 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-gqlek8ay/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:45:43 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:45:43 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:45:43 {
DEBUG:runner:May 05 14:45:43 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:45:43 "series": "trusty",
DEBUG:runner:May 05 14:45:43 "services": {
DEBUG:runner:May 05 14:45:43 "nrpe": {
DEBUG:runner:May 05 14:45:43 "num_units": 1,
DEBUG:runner:May 05 14:45:43 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
DEBUG:runner:May 05 14:45:43 },
DEBUG:runner:May 05 14:45:43 "client": {
DEBUG:runner:May 05 14:45:43 "num_units": 1,
DEBUG:runner:May 05 14:45:43 "charm": "/tmp/charm8hyt_969/trusty/empty"
DEBUG:runner:May 05 14:45:43 },
DEBUG:runner:May 05 14:45:43 "storage": {
DEBUG:runner:May 05 14:45:43 "num_units": 1,
DEBUG:runner:May 05 14:45:43 "branch": "lp:~stub/charms/trusty/storage/trunk",
DEBUG:runner:May 05 14:45:43 "options": {
DEBUG:runner:May 05 14:45:43 "provider": "local"
DEBUG:runner:May 05 14:45:43 }
DEBUG:runner:May 05 14:45:43 },
DEBUG:runner:May 05 14:45:43 "cassandra": {
DEBUG:runner:May 05 14:45:43 "num_units": 1,
DEBUG:runner:May 05 14:45:43 "expose": true,
DEBUG:runner:May 05 14:45:43 "options": {
DEBUG:runner:May 05 14:45:43 "jre": "openjdk",
DEBUG:runner:May 05 14:45:43 "max_heap_size": "96M",
DEBUG:runner:May 05 14:45:43 "heap_newsize": "4M"
DEBUG:runner:May 05 14:45:43 },
DEBUG:runner:May 05 14:45:43 "charm": "/tmp/charmsguurwox/trusty/cassandra",
DEBUG:runner:May 05 14:45:43 "constraints": "mem=2G"
DEBUG:runner:May 05 14:45:43 }
DEBUG:runner:May 05 14:45:43 },
DEBUG:runner:May 05 14:45:43 "relations": [
DEBUG:runner:May 05 14:45:43 [
DEBUG:runner:May 05 14:45:43 "cassandra:database",
DEBUG:runner:May 05 14:45:43 "client:database"
DEBUG:runner:May 05 14:45:43 ],
DEBUG:runner:May 05 14:45:43 [
DEBUG:runner:May 05 14:45:43 "cassandra:database-admin",
DEBUG:runner:May 05 14:45:43 "client:database-admin"
DEBUG:runner:May 05 14:45:43 ],
DEBUG:runner:May 05 14:45:43 [
DEBUG:runner:May 05 14:45:43 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:45:43 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:45:43 ]
DEBUG:runner:May 05 14:45:43 ]
DEBUG:runner:May 05 14:45:43 }
DEBUG:runner:May 05 14:45:43 }
DEBUG:runner:May 05 14:45:43 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-gqlek8ay/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
DEBUG:runner:May 05 14:45:43 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:45:43
DEBUG:runner:May 05 14:45:43 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:45:43 Ran 0 tests in 42.495s
DEBUG:runner:May 05 14:45:43
DEBUG:runner:May 05 14:45:43 FAILED (errors=1)
DEBUG:runner:Makefile:83: recipe for target 'Test1UnitDeployment' failed
DEBUG:runner:make: *** [Test1UnitDeployment] Error 1
DEBUG:runner:Exit Code: 2
make Test1UnitDeployment FAIL
DEBUG:runner:call ['/usr/bin/make', '-s', 'Test3UnitDeployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:45:44 UTC 2016
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:06 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:28 Deploying services...
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:29 Deploying service cassandra using /tmp/charm6729oery/trusty/cassandra
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:29 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:29 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpcD7Csk --constraints mem=2G --num-units 3 --repository=/tmp/charm6729oery local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:46:29
DEBUG:runner:May 05 14:46:29 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:46:29
DEBUG:runner:May 05 14:46:29 2016-05-05 14:46:29 Deployment stopped. run time: 23.20
DEBUG:runner:May 05 14:46:29 ERROR
DEBUG:runner:May 05 14:46:29
DEBUG:runner:May 05 14:46:29 ======================================================================
DEBUG:runner:May 05 14:46:29 ERROR: test suite for <class 'tests.test_integration.Test3UnitDeployment'>
DEBUG:runner:May 05 14:46:29 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:46:29 Traceback (most recent call last):
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:46:29 self.setUp()
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:46:29 self.setupContext(ancestor)
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:46:29 try_run(context, names)
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:46:29 return func()
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:46:29 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:46:29 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:46:29 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:46:29 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:46:29 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:46:29 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:46:29 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-4kl0qlvp/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '7300', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:46:29 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:46:29 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:46:29 {
DEBUG:runner:May 05 14:46:29 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:46:29 "series": "trusty",
DEBUG:runner:May 05 14:46:29 "relations": [
DEBUG:runner:May 05 14:46:29 [
DEBUG:runner:May 05 14:46:29 "cassandra:database",
DEBUG:runner:May 05 14:46:29 "client:database"
DEBUG:runner:May 05 14:46:29 ],
DEBUG:runner:May 05 14:46:29 [
DEBUG:runner:May 05 14:46:29 "cassandra:database-admin",
DEBUG:runner:May 05 14:46:29 "client:database-admin"
DEBUG:runner:May 05 14:46:29 ],
DEBUG:runner:May 05 14:46:29 [
DEBUG:runner:May 05 14:46:29 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:46:29 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:46:29 ]
DEBUG:runner:May 05 14:46:29 ],
DEBUG:runner:May 05 14:46:29 "services": {
DEBUG:runner:May 05 14:46:29 "storage": {
DEBUG:runner:May 05 14:46:29 "num_units": 1,
DEBUG:runner:May 05 14:46:29 "options": {
DEBUG:runner:May 05 14:46:29 "provider": "local"
DEBUG:runner:May 05 14:46:29 },
DEBUG:runner:May 05 14:46:29 "branch": "lp:~stub/charms/trusty/storage/trunk"
DEBUG:runner:May 05 14:46:29 },
DEBUG:runner:May 05 14:46:29 "nrpe": {
DEBUG:runner:May 05 14:46:29 "num_units": 1,
DEBUG:runner:May 05 14:46:29 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
DEBUG:runner:May 05 14:46:29 },
DEBUG:runner:May 05 14:46:29 "cassandra": {
DEBUG:runner:May 05 14:46:29 "constraints": "mem=2G",
DEBUG:runner:May 05 14:46:29 "num_units": 3,
DEBUG:runner:May 05 14:46:29 "expose": true,
DEBUG:runner:May 05 14:46:29 "charm": "/tmp/charm6729oery/trusty/cassandra",
DEBUG:runner:May 05 14:46:29 "options": {
DEBUG:runner:May 05 14:46:29 "jre": "openjdk",
DEBUG:runner:May 05 14:46:29 "heap_newsize": "4M",
DEBUG:runner:May 05 14:46:29 "max_heap_size": "96M"
DEBUG:runner:May 05 14:46:29 }
DEBUG:runner:May 05 14:46:29 },
DEBUG:runner:May 05 14:46:29 "client": {
DEBUG:runner:May 05 14:46:29 "num_units": 1,
DEBUG:runner:May 05 14:46:29 "charm": "/tmp/charm26qg3lpd/trusty/empty"
DEBUG:runner:May 05 14:46:29 }
DEBUG:runner:May 05 14:46:29 }
DEBUG:runner:May 05 14:46:29 }
DEBUG:runner:May 05 14:46:29 }
DEBUG:runner:May 05 14:46:29 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-4kl0qlvp/deployer-schema.json -e local.reviewqueue:default -t 7300 local.reviewqueue:default
DEBUG:runner:May 05 14:46:29 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:46:29
DEBUG:runner:May 05 14:46:29 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:46:29 Ran 0 tests in 44.470s
DEBUG:runner:May 05 14:46:29
DEBUG:runner:May 05 14:46:29 FAILED (errors=1)
DEBUG:runner:Makefile:107: recipe for target 'Test3UnitDeployment' failed
DEBUG:runner:make: *** [Test3UnitDeployment] Error 1
DEBUG:runner:Exit Code: 2
make Test3UnitDeployment FAIL
DEBUG:runner:call ['/usr/bin/make', '-s', 'Test20Deployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:46:29 UTC 2016
DEBUG:runner:May 05 14:47:10 2016-05-05 14:46:48 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:47:10 2016-05-05 14:47:09 Deploying services...
DEBUG:runner:May 05 14:47:10 2016-05-05 14:47:10 Deploying service cassandra using /tmp/charmqsowwvmh/trusty/cassandra
DEBUG:runner:May 05 14:47:10 2016-05-05 14:47:10 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:47:10 2016-05-05 14:47:10 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpcB8Qge --constraints mem=2G --repository=/tmp/charmqsowwvmh local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:47:10
DEBUG:runner:May 05 14:47:10 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:47:10
DEBUG:runner:May 05 14:47:10 2016-05-05 14:47:10 Deployment stopped. run time: 22.34
DEBUG:runner:May 05 14:47:10 ERROR
DEBUG:runner:May 05 14:47:10
DEBUG:runner:May 05 14:47:10 ======================================================================
DEBUG:runner:May 05 14:47:10 ERROR: test suite for <class 'tests.test_integration.Test20Deployment'>
DEBUG:runner:May 05 14:47:10 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:47:10 Traceback (most recent call last):
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:47:10 self.setUp()
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:47:10 self.setupContext(ancestor)
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:47:10 try_run(context, names)
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:47:10 return func()
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:47:10 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:47:10 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:47:10 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:47:10 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:47:10 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:47:10 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:47:10 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-gl7zmjn2/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:47:10 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:47:10 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:47:10 {
DEBUG:runner:May 05 14:47:10 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:47:10 "relations": [
DEBUG:runner:May 05 14:47:10 [
DEBUG:runner:May 05 14:47:10 "cassandra:database",
DEBUG:runner:May 05 14:47:10 "client:database"
DEBUG:runner:May 05 14:47:10 ],
DEBUG:runner:May 05 14:47:10 [
DEBUG:runner:May 05 14:47:10 "cassandra:database-admin",
DEBUG:runner:May 05 14:47:10 "client:database-admin"
DEBUG:runner:May 05 14:47:10 ],
DEBUG:runner:May 05 14:47:10 [
DEBUG:runner:May 05 14:47:10 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:47:10 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:47:10 ]
DEBUG:runner:May 05 14:47:10 ],
DEBUG:runner:May 05 14:47:10 "series": "trusty",
DEBUG:runner:May 05 14:47:10 "services": {
DEBUG:runner:May 05 14:47:10 "nrpe": {
DEBUG:runner:May 05 14:47:10 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
DEBUG:runner:May 05 14:47:10 "num_units": 1
DEBUG:runner:May 05 14:47:10 },
DEBUG:runner:May 05 14:47:10 "client": {
DEBUG:runner:May 05 14:47:10 "num_units": 1,
DEBUG:runner:May 05 14:47:10 "charm": "/tmp/charmw7_ocj6_/trusty/empty"
DEBUG:runner:May 05 14:47:10 },
DEBUG:runner:May 05 14:47:10 "storage": {
DEBUG:runner:May 05 14:47:10 "branch": "lp:~stub/charms/trusty/storage/trunk",
DEBUG:runner:May 05 14:47:10 "options": {
DEBUG:runner:May 05 14:47:10 "provider": "local"
DEBUG:runner:May 05 14:47:10 },
DEBUG:runner:May 05 14:47:10 "num_units": 1
DEBUG:runner:May 05 14:47:10 },
DEBUG:runner:May 05 14:47:10 "cassandra": {
DEBUG:runner:May 05 14:47:10 "constraints": "mem=2G",
DEBUG:runner:May 05 14:47:10 "expose": true,
DEBUG:runner:May 05 14:47:10 "num_units": 1,
DEBUG:runner:May 05 14:47:10 "options": {
DEBUG:runner:May 05 14:47:10 "max_heap_size": "96M",
DEBUG:runner:May 05 14:47:10 "install_keys": "[null, null, null]\n",
DEBUG:runner:May 05 14:47:10 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 20x main']\n",
DEBUG:runner:May 05 14:47:10 "edition": "community",
DEBUG:runner:May 05 14:47:10 "heap_newsize": "4M"
DEBUG:runner:May 05 14:47:10 },
DEBUG:runner:May 05 14:47:10 "charm": "/tmp/charmqsowwvmh/trusty/cassandra"
DEBUG:runner:May 05 14:47:10 }
DEBUG:runner:May 05 14:47:10 }
DEBUG:runner:May 05 14:47:10 }
DEBUG:runner:May 05 14:47:10 }
DEBUG:runner:May 05 14:47:10 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-gl7zmjn2/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
DEBUG:runner:May 05 14:47:10 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:47:10
DEBUG:runner:May 05 14:47:10 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:47:10 Ran 0 tests in 39.768s
DEBUG:runner:May 05 14:47:10
DEBUG:runner:May 05 14:47:10 FAILED (errors=1)
DEBUG:runner:Makefile:89: recipe for target 'Test20Deployment' failed
DEBUG:runner:make: *** [Test20Deployment] Error 1
DEBUG:runner:Exit Code: 2
make Test20Deployment FAIL
DEBUG:runner:call ['/usr/bin/make', '-s', 'Test21Deployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:47:10 UTC 2016
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:30 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:53 Deploying services...
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:54 Deploying service cassandra using /tmp/charm50z0b_oy/trusty/cassandra
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:54 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:54 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpJqMHmY --constraints mem=2G --repository=/tmp/charm50z0b_oy local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:47:54
DEBUG:runner:May 05 14:47:54 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:47:54
DEBUG:runner:May 05 14:47:54 2016-05-05 14:47:54 Deployment stopped. run time: 24.64
DEBUG:runner:May 05 14:47:54 ERROR
DEBUG:runner:May 05 14:47:54
DEBUG:runner:May 05 14:47:54 ======================================================================
DEBUG:runner:May 05 14:47:54 ERROR: test suite for <class 'tests.test_integration.Test21Deployment'>
DEBUG:runner:May 05 14:47:54 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:47:54 Traceback (most recent call last):
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:47:54 self.setUp()
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:47:54 self.setupContext(ancestor)
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:47:54 try_run(context, names)
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:47:54 return func()
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:47:54 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:47:54 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:47:54 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:47:54 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:47:54 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:47:54 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:47:54 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-ui60tjdo/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:47:54 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:47:54 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:47:54 {
DEBUG:runner:May 05 14:47:54 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:47:54 "services": {
DEBUG:runner:May 05 14:47:54 "storage": {
DEBUG:runner:May 05 14:47:54 "num_units": 1,
DEBUG:runner:May 05 14:47:54 "branch": "lp:~stub/charms/trusty/storage/trunk",
DEBUG:runner:May 05 14:47:54 "options": {
DEBUG:runner:May 05 14:47:54 "provider": "local"
DEBUG:runner:May 05 14:47:54 }
DEBUG:runner:May 05 14:47:54 },
DEBUG:runner:May 05 14:47:54 "cassandra": {
DEBUG:runner:May 05 14:47:54 "num_units": 1,
DEBUG:runner:May 05 14:47:54 "expose": true,
DEBUG:runner:May 05 14:47:54 "charm": "/tmp/charm50z0b_oy/trusty/cassandra",
DEBUG:runner:May 05 14:47:54 "constraints": "mem=2G",
DEBUG:runner:May 05 14:47:54 "options": {
DEBUG:runner:May 05 14:47:54 "edition": "community",
DEBUG:runner:May 05 14:47:54 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 21x main']\n",
DEBUG:runner:May 05 14:47:54 "heap_newsize": "4M",
DEBUG:runner:May 05 14:47:54 "install_keys": "[null, null, null]\n",
DEBUG:runner:May 05 14:47:54 "max_heap_size": "96M"
DEBUG:runner:May 05 14:47:54 }
DEBUG:runner:May 05 14:47:54 },
DEBUG:runner:May 05 14:47:54 "nrpe": {
DEBUG:runner:May 05 14:47:54 "num_units": 1,
DEBUG:runner:May 05 14:47:54 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
DEBUG:runner:May 05 14:47:54 },
DEBUG:runner:May 05 14:47:54 "client": {
DEBUG:runner:May 05 14:47:54 "num_units": 1,
DEBUG:runner:May 05 14:47:54 "charm": "/tmp/charmfrh21hhk/trusty/empty"
DEBUG:runner:May 05 14:47:54 }
DEBUG:runner:May 05 14:47:54 },
DEBUG:runner:May 05 14:47:54 "relations": [
DEBUG:runner:May 05 14:47:54 [
DEBUG:runner:May 05 14:47:54 "cassandra:database",
DEBUG:runner:May 05 14:47:54 "client:database"
DEBUG:runner:May 05 14:47:54 ],
DEBUG:runner:May 05 14:47:54 [
DEBUG:runner:May 05 14:47:54 "cassandra:database-admin",
DEBUG:runner:May 05 14:47:54 "client:database-admin"
DEBUG:runner:May 05 14:47:54 ],
DEBUG:runner:May 05 14:47:54 [
DEBUG:runner:May 05 14:47:54 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:47:54 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:47:54 ]
DEBUG:runner:May 05 14:47:54 ],
DEBUG:runner:May 05 14:47:54 "series": "trusty"
DEBUG:runner:May 05 14:47:54 }
DEBUG:runner:May 05 14:47:54 }
DEBUG:runner:May 05 14:47:54 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-ui60tjdo/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
DEBUG:runner:May 05 14:47:54 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:47:54
DEBUG:runner:May 05 14:47:54 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:47:54 Ran 0 tests in 42.869s
DEBUG:runner:May 05 14:47:54
DEBUG:runner:May 05 14:47:54 FAILED (errors=1)
DEBUG:runner:Makefile:95: recipe for target 'Test21Deployment' failed
DEBUG:runner:make: *** [Test21Deployment] Error 1
DEBUG:runner:Exit Code: 2
make Test21Deployment FAIL
DEBUG:runner:call ['/usr/bin/make', '-s', 'Test30Deployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:47:55 UTC 2016
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:13 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:35 Deploying services...
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:36 Deploying service cassandra using /tmp/charm2nt9td6d/trusty/cassandra
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:37 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:37 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpCF34pU --constraints mem=2G --repository=/tmp/charm2nt9td6d local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:48:37
DEBUG:runner:May 05 14:48:37 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:48:37
DEBUG:runner:May 05 14:48:37 2016-05-05 14:48:37 Deployment stopped. run time: 23.42
DEBUG:runner:May 05 14:48:37 ERROR
DEBUG:runner:May 05 14:48:37
DEBUG:runner:May 05 14:48:37 ======================================================================
DEBUG:runner:May 05 14:48:37 ERROR: test suite for <class 'tests.test_integration.Test30Deployment'>
DEBUG:runner:May 05 14:48:37 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:48:37 Traceback (most recent call last):
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:48:37 self.setUp()
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:48:37 self.setupContext(ancestor)
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:48:37 try_run(context, names)
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:48:37 return func()
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:48:37 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:48:37 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:48:37 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:48:37 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:48:37 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:48:37 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:48:37 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-ctpcwd24/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:48:37 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:48:37 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:48:37 {
DEBUG:runner:May 05 14:48:37 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:48:37 "series": "trusty",
DEBUG:runner:May 05 14:48:37 "relations": [
DEBUG:runner:May 05 14:48:37 [
DEBUG:runner:May 05 14:48:37 "cassandra:database",
DEBUG:runner:May 05 14:48:37 "client:database"
DEBUG:runner:May 05 14:48:37 ],
DEBUG:runner:May 05 14:48:37 [
DEBUG:runner:May 05 14:48:37 "cassandra:database-admin",
DEBUG:runner:May 05 14:48:37 "client:database-admin"
DEBUG:runner:May 05 14:48:37 ],
DEBUG:runner:May 05 14:48:37 [
DEBUG:runner:May 05 14:48:37 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:48:37 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:48:37 ]
DEBUG:runner:May 05 14:48:37 ],
DEBUG:runner:May 05 14:48:37 "services": {
DEBUG:runner:May 05 14:48:37 "client": {
DEBUG:runner:May 05 14:48:37 "num_units": 1,
DEBUG:runner:May 05 14:48:37 "charm": "/tmp/charm0s48aieb/trusty/empty"
DEBUG:runner:May 05 14:48:37 },
DEBUG:runner:May 05 14:48:37 "nrpe": {
DEBUG:runner:May 05 14:48:37 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
DEBUG:runner:May 05 14:48:37 "num_units": 1
DEBUG:runner:May 05 14:48:37 },
DEBUG:runner:May 05 14:48:37 "storage": {
DEBUG:runner:May 05 14:48:37 "branch": "lp:~stub/charms/trusty/storage/trunk",
DEBUG:runner:May 05 14:48:37 "num_units": 1,
DEBUG:runner:May 05 14:48:37 "options": {
DEBUG:runner:May 05 14:48:37 "provider": "local"
DEBUG:runner:May 05 14:48:37 }
DEBUG:runner:May 05 14:48:37 },
DEBUG:runner:May 05 14:48:37 "cassandra": {
DEBUG:runner:May 05 14:48:37 "constraints": "mem=2G",
DEBUG:runner:May 05 14:48:37 "expose": true,
DEBUG:runner:May 05 14:48:37 "options": {
DEBUG:runner:May 05 14:48:37 "install_keys": "[null, null, null]\n",
DEBUG:runner:May 05 14:48:37 "edition": "community",
DEBUG:runner:May 05 14:48:37 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 30x main']\n",
DEBUG:runner:May 05 14:48:37 "max_heap_size": "96M",
DEBUG:runner:May 05 14:48:37 "heap_newsize": "4M"
DEBUG:runner:May 05 14:48:37 },
DEBUG:runner:May 05 14:48:37 "num_units": 1,
DEBUG:runner:May 05 14:48:37 "charm": "/tmp/charm2nt9td6d/trusty/cassandra"
DEBUG:runner:May 05 14:48:37 }
DEBUG:runner:May 05 14:48:37 }
DEBUG:runner:May 05 14:48:37 }
DEBUG:runner:May 05 14:48:37 }
DEBUG:runner:May 05 14:48:37 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-ctpcwd24/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
DEBUG:runner:May 05 14:48:37 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:48:37
DEBUG:runner:May 05 14:48:37 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:48:37 Ran 0 tests in 41.107s
DEBUG:runner:May 05 14:48:37
DEBUG:runner:May 05 14:48:37 FAILED (errors=1)
DEBUG:runner:Makefile:101: recipe for target 'Test30Deployment' failed
DEBUG:runner:make: *** [Test30Deployment] Error 1
DEBUG:runner:Exit Code: 2
make Test30Deployment FAIL
DEBUG:runner:call ['/usr/bin/make', '-s', 'TestAllowAllAuthenticatorDeployment'] (cwd: /tmp/bundletester-rQceg2/cassandra)
DEBUG:runner:ERROR unrecognized command: juju get-environment
DEBUG:runner:Thu May 5 14:48:37 UTC 2016
DEBUG:runner:May 05 14:49:19 2016-05-05 14:48:56 Starting deployment of local.reviewqueue:default
DEBUG:runner:May 05 14:49:19 2016-05-05 14:49:18 Deploying services...
DEBUG:runner:May 05 14:49:19 2016-05-05 14:49:19 Deploying service cassandra using /tmp/charm254wg3ib/trusty/cassandra
DEBUG:runner:May 05 14:49:19 2016-05-05 14:49:19 Error deploying service 'cassandra'
DEBUG:runner:May 05 14:49:19 2016-05-05 14:49:19 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpaTnnlP --constraints mem=2G --num-units 3 --repository=/tmp/charm254wg3ib local:trusty/cassandra cassandra) Output:
DEBUG:runner:May 05 14:49:19
DEBUG:runner:May 05 14:49:19 error: flag provided but not defined: --repository
DEBUG:runner:May 05 14:49:19
DEBUG:runner:May 05 14:49:19 2016-05-05 14:49:19 Deployment stopped. run time: 22.87
DEBUG:runner:May 05 14:49:19 ERROR
DEBUG:runner:May 05 14:49:19
DEBUG:runner:May 05 14:49:19 ======================================================================
DEBUG:runner:May 05 14:49:19 ERROR: test suite for <class 'tests.test_integration.TestAllowAllAuthenticatorDeployment'>
DEBUG:runner:May 05 14:49:19 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:49:19 Traceback (most recent call last):
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
DEBUG:runner:May 05 14:49:19 self.setUp()
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
DEBUG:runner:May 05 14:49:19 self.setupContext(ancestor)
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
DEBUG:runner:May 05 14:49:19 try_run(context, names)
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
DEBUG:runner:May 05 14:49:19 return func()
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
DEBUG:runner:May 05 14:49:19 deployment.deploy(timeout=WAIT_TIMEOUT)
DEBUG:runner:May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
DEBUG:runner:May 05 14:49:19 self.setup(timeout=timeout)
DEBUG:runner:May 05 14:49:19 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
DEBUG:runner:May 05 14:49:19 subprocess.check_call(shlex.split(cmd))
DEBUG:runner:May 05 14:49:19 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
DEBUG:runner:May 05 14:49:19 raise CalledProcessError(retcode, cmd)
DEBUG:runner:May 05 14:49:19 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-cgzl24cm/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '7300', 'local.reviewqueue:default']' returned non-zero exit status 1
DEBUG:runner:May 05 14:49:19 -------------------- >> begin captured logging << --------------------
DEBUG:runner:May 05 14:49:19 amulet.deployer: DEBUG: Deployer schema
DEBUG:runner:May 05 14:49:19 {
DEBUG:runner:May 05 14:49:19 "local.reviewqueue:default": {
DEBUG:runner:May 05 14:49:19 "services": {
DEBUG:runner:May 05 14:49:19 "nrpe": {
DEBUG:runner:May 05 14:49:19 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
DEBUG:runner:May 05 14:49:19 "num_units": 1
DEBUG:runner:May 05 14:49:19 },
DEBUG:runner:May 05 14:49:19 "storage": {
DEBUG:runner:May 05 14:49:19 "branch": "lp:~stub/charms/trusty/storage/trunk",
DEBUG:runner:May 05 14:49:19 "num_units": 1,
DEBUG:runner:May 05 14:49:19 "options": {
DEBUG:runner:May 05 14:49:19 "provider": "local"
DEBUG:runner:May 05 14:49:19 }
DEBUG:runner:May 05 14:49:19 },
DEBUG:runner:May 05 14:49:19 "cassandra": {
DEBUG:runner:May 05 14:49:19 "expose": true,
DEBUG:runner:May 05 14:49:19 "constraints": "mem=2G",
DEBUG:runner:May 05 14:49:19 "charm": "/tmp/charm254wg3ib/trusty/cassandra",
DEBUG:runner:May 05 14:49:19 "num_units": 3,
DEBUG:runner:May 05 14:49:19 "options": {
DEBUG:runner:May 05 14:49:19 "authenticator": "AllowAllAuthenticator",
DEBUG:runner:May 05 14:49:19 "heap_newsize": "4M",
DEBUG:runner:May 05 14:49:19 "max_heap_size": "96M"
DEBUG:runner:May 05 14:49:19 }
DEBUG:runner:May 05 14:49:19 },
DEBUG:runner:May 05 14:49:19 "client": {
DEBUG:runner:May 05 14:49:19 "charm": "/tmp/charm2xomvy4a/trusty/empty",
DEBUG:runner:May 05 14:49:19 "num_units": 1
DEBUG:runner:May 05 14:49:19 }
DEBUG:runner:May 05 14:49:19 },
DEBUG:runner:May 05 14:49:19 "relations": [
DEBUG:runner:May 05 14:49:19 [
DEBUG:runner:May 05 14:49:19 "cassandra:database",
DEBUG:runner:May 05 14:49:19 "client:database"
DEBUG:runner:May 05 14:49:19 ],
DEBUG:runner:May 05 14:49:19 [
DEBUG:runner:May 05 14:49:19 "cassandra:database-admin",
DEBUG:runner:May 05 14:49:19 "client:database-admin"
DEBUG:runner:May 05 14:49:19 ],
DEBUG:runner:May 05 14:49:19 [
DEBUG:runner:May 05 14:49:19 "cassandra:nrpe-external-master",
DEBUG:runner:May 05 14:49:19 "nrpe:nrpe-external-master"
DEBUG:runner:May 05 14:49:19 ]
DEBUG:runner:May 05 14:49:19 ],
DEBUG:runner:May 05 14:49:19 "series": "trusty"
DEBUG:runner:May 05 14:49:19 }
DEBUG:runner:May 05 14:49:19 }
DEBUG:runner:May 05 14:49:19 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-cgzl24cm/deployer-schema.json -e local.reviewqueue:default -t 7300 local.reviewqueue:default
DEBUG:runner:May 05 14:49:19 --------------------- >> end captured logging << ---------------------
DEBUG:runner:May 05 14:49:19
DEBUG:runner:May 05 14:49:19 ----------------------------------------------------------------------
DEBUG:runner:May 05 14:49:19 Ran 0 tests in 41.164s
DEBUG:runner:May 05 14:49:19
DEBUG:runner:May 05 14:49:19 FAILED (errors=1)
DEBUG:runner:Makefile:113: recipe for target 'TestAllowAllAuthenticatorDeployment' failed
DEBUG:runner:make: *** [TestAllowAllAuthenticatorDeployment] Error 1
DEBUG:runner:Exit Code: 2
make TestAllowAllAuthenticatorDeployment FAIL
DEBUG:bundletester.utils:Updating JUJU_ENV: "local.reviewqueue:default" -> ""
------------------------------------------------------------------------------
FAIL: cassandra::make Test1UnitDeployment
[/usr/bin/make -s Test1UnitDeployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:45:00 UTC 2016
May 05 14:45:43 2016-05-05 14:45:19 Starting deployment of local.reviewqueue:default
May 05 14:45:43 2016-05-05 14:45:42 Deploying services...
May 05 14:45:43 2016-05-05 14:45:43 Deploying service cassandra using /tmp/charmsguurwox/trusty/cassandra
May 05 14:45:43 2016-05-05 14:45:43 Error deploying service 'cassandra'
May 05 14:45:43 2016-05-05 14:45:43 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpF_jre9 --constraints mem=2G --repository=/tmp/charmsguurwox local:trusty/cassandra cassandra) Output:
May 05 14:45:43
May 05 14:45:43 error: flag provided but not defined: --repository
May 05 14:45:43
May 05 14:45:43 2016-05-05 14:45:43 Deployment stopped. run time: 25.03
May 05 14:45:43 ERROR
May 05 14:45:43
May 05 14:45:43 ======================================================================
May 05 14:45:43 ERROR: test suite for <class 'tests.test_integration.Test1UnitDeployment'>
May 05 14:45:43 ----------------------------------------------------------------------
May 05 14:45:43 Traceback (most recent call last):
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:45:43 self.setUp()
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:45:43 self.setupContext(ancestor)
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:45:43 try_run(context, names)
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:45:43 return func()
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:45:43 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:45:43 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:45:43 self.setup(timeout=timeout)
May 05 14:45:43 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:45:43 subprocess.check_call(shlex.split(cmd))
May 05 14:45:43 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:45:43 raise CalledProcessError(retcode, cmd)
May 05 14:45:43 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-gqlek8ay/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:45:43 -------------------- >> begin captured logging << --------------------
May 05 14:45:43 amulet.deployer: DEBUG: Deployer schema
May 05 14:45:43 {
May 05 14:45:43 "local.reviewqueue:default": {
May 05 14:45:43 "series": "trusty",
May 05 14:45:43 "services": {
May 05 14:45:43 "nrpe": {
May 05 14:45:43 "num_units": 1,
May 05 14:45:43 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
May 05 14:45:43 },
May 05 14:45:43 "client": {
May 05 14:45:43 "num_units": 1,
May 05 14:45:43 "charm": "/tmp/charm8hyt_969/trusty/empty"
May 05 14:45:43 },
May 05 14:45:43 "storage": {
May 05 14:45:43 "num_units": 1,
May 05 14:45:43 "branch": "lp:~stub/charms/trusty/storage/trunk",
May 05 14:45:43 "options": {
May 05 14:45:43 "provider": "local"
May 05 14:45:43 }
May 05 14:45:43 },
May 05 14:45:43 "cassandra": {
May 05 14:45:43 "num_units": 1,
May 05 14:45:43 "expose": true,
May 05 14:45:43 "options": {
May 05 14:45:43 "jre": "openjdk",
May 05 14:45:43 "max_heap_size": "96M",
May 05 14:45:43 "heap_newsize": "4M"
May 05 14:45:43 },
May 05 14:45:43 "charm": "/tmp/charmsguurwox/trusty/cassandra",
May 05 14:45:43 "constraints": "mem=2G"
May 05 14:45:43 }
May 05 14:45:43 },
May 05 14:45:43 "relations": [
May 05 14:45:43 [
May 05 14:45:43 "cassandra:database",
May 05 14:45:43 "client:database"
May 05 14:45:43 ],
May 05 14:45:43 [
May 05 14:45:43 "cassandra:database-admin",
May 05 14:45:43 "client:database-admin"
May 05 14:45:43 ],
May 05 14:45:43 [
May 05 14:45:43 "cassandra:nrpe-external-master",
May 05 14:45:43 "nrpe:nrpe-external-master"
May 05 14:45:43 ]
May 05 14:45:43 ]
May 05 14:45:43 }
May 05 14:45:43 }
May 05 14:45:43 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-gqlek8ay/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
May 05 14:45:43 --------------------- >> end captured logging << ---------------------
May 05 14:45:43
May 05 14:45:43 ----------------------------------------------------------------------
May 05 14:45:43 Ran 0 tests in 42.495s
May 05 14:45:43
May 05 14:45:43 FAILED (errors=1)
Makefile:83: recipe for target 'Test1UnitDeployment' failed
make: *** [Test1UnitDeployment] Error 1
------------------------------------------------------------------------------
FAIL: cassandra::make Test3UnitDeployment
[/usr/bin/make -s Test3UnitDeployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:45:44 UTC 2016
May 05 14:46:29 2016-05-05 14:46:06 Starting deployment of local.reviewqueue:default
May 05 14:46:29 2016-05-05 14:46:28 Deploying services...
May 05 14:46:29 2016-05-05 14:46:29 Deploying service cassandra using /tmp/charm6729oery/trusty/cassandra
May 05 14:46:29 2016-05-05 14:46:29 Error deploying service 'cassandra'
May 05 14:46:29 2016-05-05 14:46:29 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpcD7Csk --constraints mem=2G --num-units 3 --repository=/tmp/charm6729oery local:trusty/cassandra cassandra) Output:
May 05 14:46:29
May 05 14:46:29 error: flag provided but not defined: --repository
May 05 14:46:29
May 05 14:46:29 2016-05-05 14:46:29 Deployment stopped. run time: 23.20
May 05 14:46:29 ERROR
May 05 14:46:29
May 05 14:46:29 ======================================================================
May 05 14:46:29 ERROR: test suite for <class 'tests.test_integration.Test3UnitDeployment'>
May 05 14:46:29 ----------------------------------------------------------------------
May 05 14:46:29 Traceback (most recent call last):
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:46:29 self.setUp()
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:46:29 self.setupContext(ancestor)
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:46:29 try_run(context, names)
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:46:29 return func()
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:46:29 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:46:29 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:46:29 self.setup(timeout=timeout)
May 05 14:46:29 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:46:29 subprocess.check_call(shlex.split(cmd))
May 05 14:46:29 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:46:29 raise CalledProcessError(retcode, cmd)
May 05 14:46:29 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-4kl0qlvp/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '7300', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:46:29 -------------------- >> begin captured logging << --------------------
May 05 14:46:29 amulet.deployer: DEBUG: Deployer schema
May 05 14:46:29 {
May 05 14:46:29 "local.reviewqueue:default": {
May 05 14:46:29 "series": "trusty",
May 05 14:46:29 "relations": [
May 05 14:46:29 [
May 05 14:46:29 "cassandra:database",
May 05 14:46:29 "client:database"
May 05 14:46:29 ],
May 05 14:46:29 [
May 05 14:46:29 "cassandra:database-admin",
May 05 14:46:29 "client:database-admin"
May 05 14:46:29 ],
May 05 14:46:29 [
May 05 14:46:29 "cassandra:nrpe-external-master",
May 05 14:46:29 "nrpe:nrpe-external-master"
May 05 14:46:29 ]
May 05 14:46:29 ],
May 05 14:46:29 "services": {
May 05 14:46:29 "storage": {
May 05 14:46:29 "num_units": 1,
May 05 14:46:29 "options": {
May 05 14:46:29 "provider": "local"
May 05 14:46:29 },
May 05 14:46:29 "branch": "lp:~stub/charms/trusty/storage/trunk"
May 05 14:46:29 },
May 05 14:46:29 "nrpe": {
May 05 14:46:29 "num_units": 1,
May 05 14:46:29 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
May 05 14:46:29 },
May 05 14:46:29 "cassandra": {
May 05 14:46:29 "constraints": "mem=2G",
May 05 14:46:29 "num_units": 3,
May 05 14:46:29 "expose": true,
May 05 14:46:29 "charm": "/tmp/charm6729oery/trusty/cassandra",
May 05 14:46:29 "options": {
May 05 14:46:29 "jre": "openjdk",
May 05 14:46:29 "heap_newsize": "4M",
May 05 14:46:29 "max_heap_size": "96M"
May 05 14:46:29 }
May 05 14:46:29 },
May 05 14:46:29 "client": {
May 05 14:46:29 "num_units": 1,
May 05 14:46:29 "charm": "/tmp/charm26qg3lpd/trusty/empty"
May 05 14:46:29 }
May 05 14:46:29 }
May 05 14:46:29 }
May 05 14:46:29 }
May 05 14:46:29 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-4kl0qlvp/deployer-schema.json -e local.reviewqueue:default -t 7300 local.reviewqueue:default
May 05 14:46:29 --------------------- >> end captured logging << ---------------------
May 05 14:46:29
May 05 14:46:29 ----------------------------------------------------------------------
May 05 14:46:29 Ran 0 tests in 44.470s
May 05 14:46:29
May 05 14:46:29 FAILED (errors=1)
Makefile:107: recipe for target 'Test3UnitDeployment' failed
make: *** [Test3UnitDeployment] Error 1
------------------------------------------------------------------------------
FAIL: cassandra::make Test20Deployment
[/usr/bin/make -s Test20Deployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:46:29 UTC 2016
May 05 14:47:10 2016-05-05 14:46:48 Starting deployment of local.reviewqueue:default
May 05 14:47:10 2016-05-05 14:47:09 Deploying services...
May 05 14:47:10 2016-05-05 14:47:10 Deploying service cassandra using /tmp/charmqsowwvmh/trusty/cassandra
May 05 14:47:10 2016-05-05 14:47:10 Error deploying service 'cassandra'
May 05 14:47:10 2016-05-05 14:47:10 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpcB8Qge --constraints mem=2G --repository=/tmp/charmqsowwvmh local:trusty/cassandra cassandra) Output:
May 05 14:47:10
May 05 14:47:10 error: flag provided but not defined: --repository
May 05 14:47:10
May 05 14:47:10 2016-05-05 14:47:10 Deployment stopped. run time: 22.34
May 05 14:47:10 ERROR
May 05 14:47:10
May 05 14:47:10 ======================================================================
May 05 14:47:10 ERROR: test suite for <class 'tests.test_integration.Test20Deployment'>
May 05 14:47:10 ----------------------------------------------------------------------
May 05 14:47:10 Traceback (most recent call last):
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:47:10 self.setUp()
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:47:10 self.setupContext(ancestor)
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:47:10 try_run(context, names)
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:47:10 return func()
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:47:10 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:47:10 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:47:10 self.setup(timeout=timeout)
May 05 14:47:10 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:47:10 subprocess.check_call(shlex.split(cmd))
May 05 14:47:10 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:47:10 raise CalledProcessError(retcode, cmd)
May 05 14:47:10 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-gl7zmjn2/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:47:10 -------------------- >> begin captured logging << --------------------
May 05 14:47:10 amulet.deployer: DEBUG: Deployer schema
May 05 14:47:10 {
May 05 14:47:10 "local.reviewqueue:default": {
May 05 14:47:10 "relations": [
May 05 14:47:10 [
May 05 14:47:10 "cassandra:database",
May 05 14:47:10 "client:database"
May 05 14:47:10 ],
May 05 14:47:10 [
May 05 14:47:10 "cassandra:database-admin",
May 05 14:47:10 "client:database-admin"
May 05 14:47:10 ],
May 05 14:47:10 [
May 05 14:47:10 "cassandra:nrpe-external-master",
May 05 14:47:10 "nrpe:nrpe-external-master"
May 05 14:47:10 ]
May 05 14:47:10 ],
May 05 14:47:10 "series": "trusty",
May 05 14:47:10 "services": {
May 05 14:47:10 "nrpe": {
May 05 14:47:10 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
May 05 14:47:10 "num_units": 1
May 05 14:47:10 },
May 05 14:47:10 "client": {
May 05 14:47:10 "num_units": 1,
May 05 14:47:10 "charm": "/tmp/charmw7_ocj6_/trusty/empty"
May 05 14:47:10 },
May 05 14:47:10 "storage": {
May 05 14:47:10 "branch": "lp:~stub/charms/trusty/storage/trunk",
May 05 14:47:10 "options": {
May 05 14:47:10 "provider": "local"
May 05 14:47:10 },
May 05 14:47:10 "num_units": 1
May 05 14:47:10 },
May 05 14:47:10 "cassandra": {
May 05 14:47:10 "constraints": "mem=2G",
May 05 14:47:10 "expose": true,
May 05 14:47:10 "num_units": 1,
May 05 14:47:10 "options": {
May 05 14:47:10 "max_heap_size": "96M",
May 05 14:47:10 "install_keys": "[null, null, null]\n",
May 05 14:47:10 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 20x main']\n",
May 05 14:47:10 "edition": "community",
May 05 14:47:10 "heap_newsize": "4M"
May 05 14:47:10 },
May 05 14:47:10 "charm": "/tmp/charmqsowwvmh/trusty/cassandra"
May 05 14:47:10 }
May 05 14:47:10 }
May 05 14:47:10 }
May 05 14:47:10 }
May 05 14:47:10 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-gl7zmjn2/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
May 05 14:47:10 --------------------- >> end captured logging << ---------------------
May 05 14:47:10
May 05 14:47:10 ----------------------------------------------------------------------
May 05 14:47:10 Ran 0 tests in 39.768s
May 05 14:47:10
May 05 14:47:10 FAILED (errors=1)
Makefile:89: recipe for target 'Test20Deployment' failed
make: *** [Test20Deployment] Error 1
------------------------------------------------------------------------------
FAIL: cassandra::make Test21Deployment
[/usr/bin/make -s Test21Deployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:47:10 UTC 2016
May 05 14:47:54 2016-05-05 14:47:30 Starting deployment of local.reviewqueue:default
May 05 14:47:54 2016-05-05 14:47:53 Deploying services...
May 05 14:47:54 2016-05-05 14:47:54 Deploying service cassandra using /tmp/charm50z0b_oy/trusty/cassandra
May 05 14:47:54 2016-05-05 14:47:54 Error deploying service 'cassandra'
May 05 14:47:54 2016-05-05 14:47:54 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpJqMHmY --constraints mem=2G --repository=/tmp/charm50z0b_oy local:trusty/cassandra cassandra) Output:
May 05 14:47:54
May 05 14:47:54 error: flag provided but not defined: --repository
May 05 14:47:54
May 05 14:47:54 2016-05-05 14:47:54 Deployment stopped. run time: 24.64
May 05 14:47:54 ERROR
May 05 14:47:54
May 05 14:47:54 ======================================================================
May 05 14:47:54 ERROR: test suite for <class 'tests.test_integration.Test21Deployment'>
May 05 14:47:54 ----------------------------------------------------------------------
May 05 14:47:54 Traceback (most recent call last):
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:47:54 self.setUp()
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:47:54 self.setupContext(ancestor)
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:47:54 try_run(context, names)
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:47:54 return func()
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:47:54 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:47:54 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:47:54 self.setup(timeout=timeout)
May 05 14:47:54 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:47:54 subprocess.check_call(shlex.split(cmd))
May 05 14:47:54 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:47:54 raise CalledProcessError(retcode, cmd)
May 05 14:47:54 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-ui60tjdo/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:47:54 -------------------- >> begin captured logging << --------------------
May 05 14:47:54 amulet.deployer: DEBUG: Deployer schema
May 05 14:47:54 {
May 05 14:47:54 "local.reviewqueue:default": {
May 05 14:47:54 "services": {
May 05 14:47:54 "storage": {
May 05 14:47:54 "num_units": 1,
May 05 14:47:54 "branch": "lp:~stub/charms/trusty/storage/trunk",
May 05 14:47:54 "options": {
May 05 14:47:54 "provider": "local"
May 05 14:47:54 }
May 05 14:47:54 },
May 05 14:47:54 "cassandra": {
May 05 14:47:54 "num_units": 1,
May 05 14:47:54 "expose": true,
May 05 14:47:54 "charm": "/tmp/charm50z0b_oy/trusty/cassandra",
May 05 14:47:54 "constraints": "mem=2G",
May 05 14:47:54 "options": {
May 05 14:47:54 "edition": "community",
May 05 14:47:54 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 21x main']\n",
May 05 14:47:54 "heap_newsize": "4M",
May 05 14:47:54 "install_keys": "[null, null, null]\n",
May 05 14:47:54 "max_heap_size": "96M"
May 05 14:47:54 }
May 05 14:47:54 },
May 05 14:47:54 "nrpe": {
May 05 14:47:54 "num_units": 1,
May 05 14:47:54 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk"
May 05 14:47:54 },
May 05 14:47:54 "client": {
May 05 14:47:54 "num_units": 1,
May 05 14:47:54 "charm": "/tmp/charmfrh21hhk/trusty/empty"
May 05 14:47:54 }
May 05 14:47:54 },
May 05 14:47:54 "relations": [
May 05 14:47:54 [
May 05 14:47:54 "cassandra:database",
May 05 14:47:54 "client:database"
May 05 14:47:54 ],
May 05 14:47:54 [
May 05 14:47:54 "cassandra:database-admin",
May 05 14:47:54 "client:database-admin"
May 05 14:47:54 ],
May 05 14:47:54 [
May 05 14:47:54 "cassandra:nrpe-external-master",
May 05 14:47:54 "nrpe:nrpe-external-master"
May 05 14:47:54 ]
May 05 14:47:54 ],
May 05 14:47:54 "series": "trusty"
May 05 14:47:54 }
May 05 14:47:54 }
May 05 14:47:54 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-ui60tjdo/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
May 05 14:47:54 --------------------- >> end captured logging << ---------------------
May 05 14:47:54
May 05 14:47:54 ----------------------------------------------------------------------
May 05 14:47:54 Ran 0 tests in 42.869s
May 05 14:47:54
May 05 14:47:54 FAILED (errors=1)
Makefile:95: recipe for target 'Test21Deployment' failed
make: *** [Test21Deployment] Error 1
------------------------------------------------------------------------------
FAIL: cassandra::make Test30Deployment
[/usr/bin/make -s Test30Deployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:47:55 UTC 2016
May 05 14:48:37 2016-05-05 14:48:13 Starting deployment of local.reviewqueue:default
May 05 14:48:37 2016-05-05 14:48:35 Deploying services...
May 05 14:48:37 2016-05-05 14:48:36 Deploying service cassandra using /tmp/charm2nt9td6d/trusty/cassandra
May 05 14:48:37 2016-05-05 14:48:37 Error deploying service 'cassandra'
May 05 14:48:37 2016-05-05 14:48:37 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpCF34pU --constraints mem=2G --repository=/tmp/charm2nt9td6d local:trusty/cassandra cassandra) Output:
May 05 14:48:37
May 05 14:48:37 error: flag provided but not defined: --repository
May 05 14:48:37
May 05 14:48:37 2016-05-05 14:48:37 Deployment stopped. run time: 23.42
May 05 14:48:37 ERROR
May 05 14:48:37
May 05 14:48:37 ======================================================================
May 05 14:48:37 ERROR: test suite for <class 'tests.test_integration.Test30Deployment'>
May 05 14:48:37 ----------------------------------------------------------------------
May 05 14:48:37 Traceback (most recent call last):
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:48:37 self.setUp()
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:48:37 self.setupContext(ancestor)
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:48:37 try_run(context, names)
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:48:37 return func()
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:48:37 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:48:37 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:48:37 self.setup(timeout=timeout)
May 05 14:48:37 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:48:37 subprocess.check_call(shlex.split(cmd))
May 05 14:48:37 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:48:37 raise CalledProcessError(retcode, cmd)
May 05 14:48:37 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-ctpcwd24/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '5500', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:48:37 -------------------- >> begin captured logging << --------------------
May 05 14:48:37 amulet.deployer: DEBUG: Deployer schema
May 05 14:48:37 {
May 05 14:48:37 "local.reviewqueue:default": {
May 05 14:48:37 "series": "trusty",
May 05 14:48:37 "relations": [
May 05 14:48:37 [
May 05 14:48:37 "cassandra:database",
May 05 14:48:37 "client:database"
May 05 14:48:37 ],
May 05 14:48:37 [
May 05 14:48:37 "cassandra:database-admin",
May 05 14:48:37 "client:database-admin"
May 05 14:48:37 ],
May 05 14:48:37 [
May 05 14:48:37 "cassandra:nrpe-external-master",
May 05 14:48:37 "nrpe:nrpe-external-master"
May 05 14:48:37 ]
May 05 14:48:37 ],
May 05 14:48:37 "services": {
May 05 14:48:37 "client": {
May 05 14:48:37 "num_units": 1,
May 05 14:48:37 "charm": "/tmp/charm0s48aieb/trusty/empty"
May 05 14:48:37 },
May 05 14:48:37 "nrpe": {
May 05 14:48:37 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
May 05 14:48:37 "num_units": 1
May 05 14:48:37 },
May 05 14:48:37 "storage": {
May 05 14:48:37 "branch": "lp:~stub/charms/trusty/storage/trunk",
May 05 14:48:37 "num_units": 1,
May 05 14:48:37 "options": {
May 05 14:48:37 "provider": "local"
May 05 14:48:37 }
May 05 14:48:37 },
May 05 14:48:37 "cassandra": {
May 05 14:48:37 "constraints": "mem=2G",
May 05 14:48:37 "expose": true,
May 05 14:48:37 "options": {
May 05 14:48:37 "install_keys": "[null, null, null]\n",
May 05 14:48:37 "edition": "community",
May 05 14:48:37 "install_sources": "['ppa:stub/cassandra', 'ppa:openjdk-r/ppa', 'deb http://www.apache.org/dist/cassandra/debian\n 30x main']\n",
May 05 14:48:37 "max_heap_size": "96M",
May 05 14:48:37 "heap_newsize": "4M"
May 05 14:48:37 },
May 05 14:48:37 "num_units": 1,
May 05 14:48:37 "charm": "/tmp/charm2nt9td6d/trusty/cassandra"
May 05 14:48:37 }
May 05 14:48:37 }
May 05 14:48:37 }
May 05 14:48:37 }
May 05 14:48:37 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-ctpcwd24/deployer-schema.json -e local.reviewqueue:default -t 5500 local.reviewqueue:default
May 05 14:48:37 --------------------- >> end captured logging << ---------------------
May 05 14:48:37
May 05 14:48:37 ----------------------------------------------------------------------
May 05 14:48:37 Ran 0 tests in 41.107s
May 05 14:48:37
May 05 14:48:37 FAILED (errors=1)
Makefile:101: recipe for target 'Test30Deployment' failed
make: *** [Test30Deployment] Error 1
------------------------------------------------------------------------------
FAIL: cassandra::make TestAllowAllAuthenticatorDeployment
[/usr/bin/make -s TestAllowAllAuthenticatorDeployment exit 2]
ERROR unrecognized command: juju get-environment
Thu May 5 14:48:37 UTC 2016
May 05 14:49:19 2016-05-05 14:48:56 Starting deployment of local.reviewqueue:default
May 05 14:49:19 2016-05-05 14:49:18 Deploying services...
May 05 14:49:19 2016-05-05 14:49:19 Deploying service cassandra using /tmp/charm254wg3ib/trusty/cassandra
May 05 14:49:19 2016-05-05 14:49:19 Error deploying service 'cassandra'
May 05 14:49:19 2016-05-05 14:49:19 Command (juju deploy -m local.reviewqueue:default --config /tmp/tmpaTnnlP --constraints mem=2G --num-units 3 --repository=/tmp/charm254wg3ib local:trusty/cassandra cassandra) Output:
May 05 14:49:19
May 05 14:49:19 error: flag provided but not defined: --repository
May 05 14:49:19
May 05 14:49:19 2016-05-05 14:49:19 Deployment stopped. run time: 22.87
May 05 14:49:19 ERROR
May 05 14:49:19
May 05 14:49:19 ======================================================================
May 05 14:49:19 ERROR: test suite for <class 'tests.test_integration.TestAllowAllAuthenticatorDeployment'>
May 05 14:49:19 ----------------------------------------------------------------------
May 05 14:49:19 Traceback (most recent call last):
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 210, in run
May 05 14:49:19 self.setUp()
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 293, in setUp
May 05 14:49:19 self.setupContext(ancestor)
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/suite.py", line 316, in setupContext
May 05 14:49:19 try_run(context, names)
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/.venv3/lib/python3.5/site-packages/nose/util.py", line 471, in try_run
May 05 14:49:19 return func()
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/tests/test_integration.py", line 102, in setUpClass
May 05 14:49:19 deployment.deploy(timeout=WAIT_TIMEOUT)
May 05 14:49:19 File "/tmp/bundletester-rQceg2/cassandra/testing/amuletfixture.py", line 99, in deploy
May 05 14:49:19 self.setup(timeout=timeout)
May 05 14:49:19 File "/usr/lib/python3/dist-packages/amulet/deployer.py", line 640, in setup
May 05 14:49:19 subprocess.check_call(shlex.split(cmd))
May 05 14:49:19 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
May 05 14:49:19 raise CalledProcessError(retcode, cmd)
May 05 14:49:19 subprocess.CalledProcessError: Command '['/tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py', '-W', '-c', '/tmp/amulet-juju-deployer-cgzl24cm/deployer-schema.json', '-e', 'local.reviewqueue:default', '-t', '7300', 'local.reviewqueue:default']' returned non-zero exit status 1
May 05 14:49:19 -------------------- >> begin captured logging << --------------------
May 05 14:49:19 amulet.deployer: DEBUG: Deployer schema
May 05 14:49:19 {
May 05 14:49:19 "local.reviewqueue:default": {
May 05 14:49:19 "services": {
May 05 14:49:19 "nrpe": {
May 05 14:49:19 "branch": "lp:~stub/charms/trusty/nrpe-external-master/trunk",
May 05 14:49:19 "num_units": 1
May 05 14:49:19 },
May 05 14:49:19 "storage": {
May 05 14:49:19 "branch": "lp:~stub/charms/trusty/storage/trunk",
May 05 14:49:19 "num_units": 1,
May 05 14:49:19 "options": {
May 05 14:49:19 "provider": "local"
May 05 14:49:19 }
May 05 14:49:19 },
May 05 14:49:19 "cassandra": {
May 05 14:49:19 "expose": true,
May 05 14:49:19 "constraints": "mem=2G",
May 05 14:49:19 "charm": "/tmp/charm254wg3ib/trusty/cassandra",
May 05 14:49:19 "num_units": 3,
May 05 14:49:19 "options": {
May 05 14:49:19 "authenticator": "AllowAllAuthenticator",
May 05 14:49:19 "heap_newsize": "4M",
May 05 14:49:19 "max_heap_size": "96M"
May 05 14:49:19 }
May 05 14:49:19 },
May 05 14:49:19 "client": {
May 05 14:49:19 "charm": "/tmp/charm2xomvy4a/trusty/empty",
May 05 14:49:19 "num_units": 1
May 05 14:49:19 }
May 05 14:49:19 },
May 05 14:49:19 "relations": [
May 05 14:49:19 [
May 05 14:49:19 "cassandra:database",
May 05 14:49:19 "client:database"
May 05 14:49:19 ],
May 05 14:49:19 [
May 05 14:49:19 "cassandra:database-admin",
May 05 14:49:19 "client:database-admin"
May 05 14:49:19 ],
May 05 14:49:19 [
May 05 14:49:19 "cassandra:nrpe-external-master",
May 05 14:49:19 "nrpe:nrpe-external-master"
May 05 14:49:19 ]
May 05 14:49:19 ],
May 05 14:49:19 "series": "trusty"
May 05 14:49:19 }
May 05 14:49:19 }
May 05 14:49:19 amulet.deployer: DEBUG: /tmp/bundletester-rQceg2/cassandra/lib/juju-deployer-wrapper.py -W -c /tmp/amulet-juju-deployer-cgzl24cm/deployer-schema.json -e local.reviewqueue:default -t 7300 local.reviewqueue:default
May 05 14:49:19 --------------------- >> end captured logging << ---------------------
May 05 14:49:19
May 05 14:49:19 ----------------------------------------------------------------------
May 05 14:49:19 Ran 0 tests in 41.164s
May 05 14:49:19
May 05 14:49:19 FAILED (errors=1)
Makefile:113: recipe for target 'TestAllowAllAuthenticatorDeployment' failed
make: *** [TestAllowAllAuthenticatorDeployment] Error 1
PASS: 3 FAIL: 6 Total: 9 (366.555532 sec)
real 6m14.688s
user 1m57.488s
sys 0m55.260s
ubuntu@xenial:/charms/trusty/cassandra$
|