Ubuntu Pastebin

Paste from aim at Wed, 11 Nov 2015 10:54:40 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
$ make check
skipping godeps
go test -test.timeout=1200s github.com/juju/juju/...
ok  	github.com/juju/juju	0.017s
ok  	github.com/juju/juju/agent	2.771s
ok  	github.com/juju/juju/agent/tools	0.351s
ok  	github.com/juju/juju/api	28.473s
ok  	github.com/juju/juju/api/action	1.252s
ok  	github.com/juju/juju/api/addresser	0.262s
ok  	github.com/juju/juju/api/agent	5.110s
ok  	github.com/juju/juju/api/annotations	0.158s
ok  	github.com/juju/juju/api/backups	5.725s
?   	github.com/juju/juju/api/base	[no test files]
?   	github.com/juju/juju/api/base/testing	[no test files]
ok  	github.com/juju/juju/api/block	0.153s
ok  	github.com/juju/juju/api/charmrevisionupdater	1.238s
ok  	github.com/juju/juju/api/charms	0.186s
ok  	github.com/juju/juju/api/cleaner	0.355s
?   	github.com/juju/juju/api/common	[no test files]
ok  	github.com/juju/juju/api/deployer	9.497s
ok  	github.com/juju/juju/api/diskmanager	0.206s
ok  	github.com/juju/juju/api/environment	1.641s
ok  	github.com/juju/juju/api/environmentmanager	3.633s
ok  	github.com/juju/juju/api/firewaller	16.305s
ok  	github.com/juju/juju/api/highavailability	2.104s
?   	github.com/juju/juju/api/http	[no test files]
ok  	github.com/juju/juju/api/imagemanager	0.234s
ok  	github.com/juju/juju/api/imagemetadata	0.173s
ok  	github.com/juju/juju/api/instancepoller	0.218s
ok  	github.com/juju/juju/api/keymanager	5.320s
ok  	github.com/juju/juju/api/keyupdater	2.517s
ok  	github.com/juju/juju/api/leadership	0.013s
ok  	github.com/juju/juju/api/logger	1.886s
ok  	github.com/juju/juju/api/logsender	0.195s
ok  	github.com/juju/juju/api/machinemanager	0.134s
ok  	github.com/juju/juju/api/machiner	7.125s
ok  	github.com/juju/juju/api/meterstatus	0.276s
ok  	github.com/juju/juju/api/metricsadder	1.730s
ok  	github.com/juju/juju/api/metricsmanager	1.694s
ok  	github.com/juju/juju/api/networker	4.275s
ok  	github.com/juju/juju/api/provisioner	24.545s
ok  	github.com/juju/juju/api/reboot	4.708s
ok  	github.com/juju/juju/api/resumer	0.157s
ok  	github.com/juju/juju/api/rsyslog	1.455s
ok  	github.com/juju/juju/api/service	2.336s
ok  	github.com/juju/juju/api/spaces	0.520s
?   	github.com/juju/juju/api/statushistory	[no test files]
ok  	github.com/juju/juju/api/storage	0.261s
ok  	github.com/juju/juju/api/storageprovisioner	0.274s
ok  	github.com/juju/juju/api/subnets	0.172s
ok  	github.com/juju/juju/api/systemmanager	3.941s
?   	github.com/juju/juju/api/testing	[no test files]
ok  	github.com/juju/juju/api/uniter	71.810s
ok  	github.com/juju/juju/api/upgrader	13.259s
ok  	github.com/juju/juju/api/usermanager	6.404s
ok  	github.com/juju/juju/api/watcher	4.056s
ok  	github.com/juju/juju/apiserver	138.644s
ok  	github.com/juju/juju/apiserver/action	6.591s
ok  	github.com/juju/juju/apiserver/addresser	1.055s
ok  	github.com/juju/juju/apiserver/agent	9.649s
ok  	github.com/juju/juju/apiserver/annotations	4.668s
ok  	github.com/juju/juju/apiserver/authentication	4.044s
ok  	github.com/juju/juju/apiserver/backups	6.644s
ok  	github.com/juju/juju/apiserver/block	2.060s
ok  	github.com/juju/juju/apiserver/charmrevisionupdater	4.533s
?   	github.com/juju/juju/apiserver/charmrevisionupdater/testing	[no test files]
ok  	github.com/juju/juju/apiserver/charms	4.180s
ok  	github.com/juju/juju/apiserver/cleaner	0.182s
ok  	github.com/juju/juju/apiserver/client	138.115s
ok  	github.com/juju/juju/apiserver/common	19.250s
ok  	github.com/juju/juju/apiserver/common/storagecommon	0.594s
?   	github.com/juju/juju/apiserver/common/testing	[no test files]
ok  	github.com/juju/juju/apiserver/deployer	6.265s
ok  	github.com/juju/juju/apiserver/diskmanager	0.217s
ok  	github.com/juju/juju/apiserver/environment	1.108s
ok  	github.com/juju/juju/apiserver/environmentmanager	7.759s
ok  	github.com/juju/juju/apiserver/firewaller	9.874s
ok  	github.com/juju/juju/apiserver/highavailability	5.586s
ok  	github.com/juju/juju/apiserver/httpattachment	0.160s
ok  	github.com/juju/juju/apiserver/imagemanager	3.652s
ok  	github.com/juju/juju/apiserver/imagemetadata	0.375s
ok  	github.com/juju/juju/apiserver/instancepoller	0.533s
ok  	github.com/juju/juju/apiserver/keymanager	8.380s
?   	github.com/juju/juju/apiserver/keymanager/testing	[no test files]
ok  	github.com/juju/juju/apiserver/keyupdater	3.365s
ok  	github.com/juju/juju/apiserver/leadership	0.039s
ok  	github.com/juju/juju/apiserver/logger	3.764s
ok  	github.com/juju/juju/apiserver/machine	4.625s
ok  	github.com/juju/juju/apiserver/machinemanager	0.170s
ok  	github.com/juju/juju/apiserver/meterstatus	2.516s
?   	github.com/juju/juju/apiserver/meterstatus/testing	[no test files]
ok  	github.com/juju/juju/apiserver/metricsadder	2.998s
ok  	github.com/juju/juju/apiserver/metricsender	10.973s
?   	github.com/juju/juju/apiserver/metricsender/testing	[no test files]
ok  	github.com/juju/juju/apiserver/metricsender/wireformat	2.268s
ok  	github.com/juju/juju/apiserver/metricsmanager	6.506s
ok  	github.com/juju/juju/apiserver/networker	4.342s
ok  	github.com/juju/juju/apiserver/params	0.261s
ok  	github.com/juju/juju/apiserver/provisioner	42.638s
ok  	github.com/juju/juju/apiserver/reboot	6.321s
ok  	github.com/juju/juju/apiserver/resumer	0.302s
ok  	github.com/juju/juju/apiserver/rsyslog	5.031s
ok  	github.com/juju/juju/apiserver/service	8.909s
ok  	github.com/juju/juju/apiserver/spaces	0.157s
?   	github.com/juju/juju/apiserver/statushistory	[no test files]
ok  	github.com/juju/juju/apiserver/storage	0.151s
ok  	github.com/juju/juju/apiserver/storageprovisioner	19.784s
ok  	github.com/juju/juju/apiserver/subnets	0.224s
ok  	github.com/juju/juju/apiserver/systemmanager	9.887s
?   	github.com/juju/juju/apiserver/testing	[no test files]
ok  	github.com/juju/juju/apiserver/uniter	106.347s
ok  	github.com/juju/juju/apiserver/upgrader	17.703s
ok  	github.com/juju/juju/apiserver/usermanager	7.644s
ok  	github.com/juju/juju/audit	0.007s
ok  	github.com/juju/juju/cert	2.027s
ok  	github.com/juju/juju/cloudconfig	0.655s
ok  	github.com/juju/juju/cloudconfig/cloudinit	0.700s
ok  	github.com/juju/juju/cloudconfig/containerinit	0.173s
ok  	github.com/juju/juju/cloudconfig/instancecfg	0.235s
ok  	github.com/juju/juju/cloudconfig/providerinit	0.405s
ok  	github.com/juju/juju/cloudconfig/providerinit/renderers	0.166s
?   	github.com/juju/juju/cloudconfig/sshinit	[no test files]
?   	github.com/juju/juju/cmd	[no test files]
ok  	github.com/juju/juju/cmd/envcmd	1.861s
?   	github.com/juju/juju/cmd/juju	[no test files]
ok  	github.com/juju/juju/cmd/juju/action	18.219s
ok  	github.com/juju/juju/cmd/juju/backups	0.134s
ok  	github.com/juju/juju/cmd/juju/block	0.252s
ok  	github.com/juju/juju/cmd/juju/cachedimages	0.248s
ok  	github.com/juju/juju/cmd/juju/commands	212.402s
ok  	github.com/juju/juju/cmd/juju/common	0.156s
ok  	github.com/juju/juju/cmd/juju/environment	0.222s
?   	github.com/juju/juju/cmd/juju/helptopics	[no test files]
ok  	github.com/juju/juju/cmd/juju/machine	0.310s
ok  	github.com/juju/juju/cmd/juju/service	0.340s
ok  	github.com/juju/juju/cmd/juju/space	0.240s
ok  	github.com/juju/juju/cmd/juju/status	42.316s
ok  	github.com/juju/juju/cmd/juju/storage	0.178s
ok  	github.com/juju/juju/cmd/juju/subnet	0.236s
ok  	github.com/juju/juju/cmd/juju/system	10.590s
ok  	github.com/juju/juju/cmd/juju/user	0.277s
ok  	github.com/juju/juju/cmd/jujud	7.811s
ok  	github.com/juju/juju/cmd/jujud/agent	126.547s
?   	github.com/juju/juju/cmd/jujud/agent/testing	[no test files]
ok  	github.com/juju/juju/cmd/jujud/agent/unit	0.118s
?   	github.com/juju/juju/cmd/jujud/dumplogs	[no test files]
ok  	github.com/juju/juju/cmd/jujud/reboot	11.311s
ok  	github.com/juju/juju/cmd/jujud/util	0.195s
ok  	github.com/juju/juju/cmd/plugins/juju-metadata	12.057s
?   	github.com/juju/juju/cmd/plugins/juju-restore	[no test files]
ok  	github.com/juju/juju/cmd/plugins/local	0.142s
?   	github.com/juju/juju/cmd/plugins/local/juju-local	[no test files]
?   	github.com/juju/juju/cmd/testing	[no test files]
?   	github.com/juju/juju/component/all	[no test files]
ok  	github.com/juju/juju/constraints	0.018s
ok  	github.com/juju/juju/container	0.340s
ok  	github.com/juju/juju/container/factory	0.254s
ok  	github.com/juju/juju/container/kvm	0.532s
ok  	github.com/juju/juju/container/kvm/mock	0.277s
?   	github.com/juju/juju/container/kvm/testing	[no test files]
ok  	github.com/juju/juju/container/lxc	5.895s
ok  	github.com/juju/juju/container/lxc/lxcutils	0.149s
?   	github.com/juju/juju/container/lxc/mock	[no test files]
?   	github.com/juju/juju/container/lxc/testing	[no test files]
?   	github.com/juju/juju/container/testing	[no test files]
ok  	github.com/juju/juju/downloader	5.242s
?   	github.com/juju/juju/environmentserver/authentication	[no test files]
ok  	github.com/juju/juju/environs	2.033s
ok  	github.com/juju/juju/environs/bootstrap	43.871s
ok  	github.com/juju/juju/environs/config	2.004s
ok  	github.com/juju/juju/environs/configstore	5.228s
ok  	github.com/juju/juju/environs/filestorage	0.024s
ok  	github.com/juju/juju/environs/httpstorage	0.921s
ok  	github.com/juju/juju/environs/imagemetadata	0.200s
?   	github.com/juju/juju/environs/imagemetadata/testing	[no test files]
ok  	github.com/juju/juju/environs/instances	0.146s
ok  	github.com/juju/juju/environs/jujutest	0.153s
ok  	github.com/juju/juju/environs/manual	2.013s
ok  	github.com/juju/juju/environs/simplestreams	0.198s
?   	github.com/juju/juju/environs/simplestreams/testing	[no test files]
ok  	github.com/juju/juju/environs/sshstorage	1.736s
ok  	github.com/juju/juju/environs/storage	0.146s
ok  	github.com/juju/juju/environs/sync	0.248s
ok  	github.com/juju/juju/environs/tags	0.124s
ok  	github.com/juju/juju/environs/testing	0.222s
ok  	github.com/juju/juju/environs/tools	2.013s
?   	github.com/juju/juju/environs/tools/testing	[no test files]
?   	github.com/juju/juju/environs/utils	[no test files]
?   	github.com/juju/juju/feature	[no test files]
ok  	github.com/juju/juju/featuretests	101.421s
ok  	github.com/juju/juju/instance	0.040s
?   	github.com/juju/juju/instance/testing	[no test files]
ok  	github.com/juju/juju/juju	11.609s
?   	github.com/juju/juju/juju/names	[no test files]
ok  	github.com/juju/juju/juju/osenv	0.239s
ok  	github.com/juju/juju/juju/paths	0.195s
?   	github.com/juju/juju/juju/sockets	[no test files]
?   	github.com/juju/juju/juju/testing	[no test files]
?   	github.com/juju/juju/leadership	[no test files]
ok  	github.com/juju/juju/mongo	21.198s
ok  	github.com/juju/juju/network	0.250s
ok  	github.com/juju/juju/payload	0.224s
ok  	github.com/juju/juju/payload/api	0.014s
ok  	github.com/juju/juju/payload/api/client	0.008s
ok  	github.com/juju/juju/payload/api/private	0.004s
ok  	github.com/juju/juju/payload/api/private/client	0.036s
ok  	github.com/juju/juju/payload/api/private/server	0.015s
ok  	github.com/juju/juju/payload/api/server	0.007s
ok  	github.com/juju/juju/payload/context	0.180s
ok  	github.com/juju/juju/payload/persistence	0.181s
ok  	github.com/juju/juju/payload/state	0.147s
ok  	github.com/juju/juju/payload/status	0.136s
?   	github.com/juju/juju/provider	[no test files]
?   	github.com/juju/juju/provider/all	[no test files]
ok  	github.com/juju/juju/provider/azure	6.300s
ok  	github.com/juju/juju/provider/cloudsigma	3.494s
ok  	github.com/juju/juju/provider/common	0.601s
ok  	github.com/juju/juju/provider/dummy	7.206s
ok  	github.com/juju/juju/provider/ec2	21.011s
ok  	github.com/juju/juju/provider/gce	11.318s
ok  	github.com/juju/juju/provider/gce/google	0.138s
ok  	github.com/juju/juju/provider/joyent	57.423s
ok  	github.com/juju/juju/provider/local	12.048s

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:309: environSuite.TestAcquireNode

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.019 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:310
  in environSuite.TestAcquireNode
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:327: environSuite.TestAcquireNodeByName

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:328
  in environSuite.TestAcquireNodeByName
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:416: environSuite.TestAcquireNodePassedAgentName

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:417
  in environSuite.TestAcquireNodePassedAgentName
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:429: environSuite.TestAcquireNodePassesPositiveAndNegativeTags

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:430
  in environSuite.TestAcquireNodePassesPositiveAndNegativeTags
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:447: environSuite.TestAcquireNodeStorage

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
test 0
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:477
  in environSuite.TestAcquireNodeStorage
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:345: environSuite.TestAcquireNodeTakesConstraintsIntoAccount

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.034 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:346
  in environSuite.TestAcquireNodeTakesConstraintsIntoAccount
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:114: environSuite.TestAllInstances

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.050 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:116
  in environSuite.TestAllInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:123: environSuite.TestAllInstancesReturnsEmptySliceIfNoInstance

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.028 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:124
  in environSuite.TestAllInstancesReturnsEmptySliceIfNoInstance
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1302: environSuite.TestAllocateAddress

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1304
  in environSuite.TestAllocateAddress
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1312: environSuite.TestAllocateAddressDevices

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.028 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1315
  in environSuite.TestAllocateAddressDevices
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1407: environSuite.TestAllocateAddressIPAddressUnavailable

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1409
  in environSuite.TestAllocateAddressIPAddressUnavailable
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1391: environSuite.TestAllocateAddressInvalidInstance

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.019 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1392
  in environSuite.TestAllocateAddressInvalidInstance
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1400: environSuite.TestAllocateAddressMissingSubnet

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.018 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1402
  in environSuite.TestAllocateAddressMissingSubnet
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:749: environSuite.TestBootstrapFailsIfNoNodes

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.021 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:751
  in environSuite.TestBootstrapFailsIfNoNodes
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:736: environSuite.TestBootstrapFailsIfNoTools

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.018 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:737
  in environSuite.TestBootstrapFailsIfNoTools
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:720: environSuite.TestBootstrapNodeFailedDeploy

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.019 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:722
  in environSuite.TestBootstrapNodeFailedDeploy
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:704: environSuite.TestBootstrapNodeNotDeployed

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.001 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.001 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:706
  in environSuite.TestBootstrapNodeNotDeployed
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:690: environSuite.TestBootstrapSucceeds

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:692
  in environSuite.TestBootstrapSucceeds
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:802: environSuite.TestConstraintsValidator

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.022 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:804
  in environSuite.TestConstraintsValidator
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:813: environSuite.TestConstraintsValidatorVocab

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:816
  in environSuite.TestConstraintsValidatorVocab
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:669: environSuite.TestDestroy

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:670
  in environSuite.TestDestroy
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1663: environSuite.TestGetAvailabilityZones

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1664
  in environSuite.TestGetAvailabilityZones
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:951: environSuite.TestGetInstanceNetworkInterfaces

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:962
  in environSuite.TestGetInstanceNetworkInterfaces
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:853: environSuite.TestGetInstanceNetworks

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:857
  in environSuite.TestGetInstanceNetworks
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:824: environSuite.TestGetNetworkMACs

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.021 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:825
  in environSuite.TestGetNetworkMACs
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:767: environSuite.TestGetToolsMetadataSources

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.018 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:768
  in environSuite.TestGetToolsMetadataSources
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:92: environSuite.TestInstancesReturnsErrNoInstancesIfEmptyParameter

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.017 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:94
  in environSuite.TestInstancesReturnsErrNoInstancesIfEmptyParameter
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:100: environSuite.TestInstancesReturnsErrNoInstancesIfNilParameter

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.021 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:102
  in environSuite.TestInstancesReturnsErrNoInstancesIfNilParameter
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:108: environSuite.TestInstancesReturnsErrNoInstancesIfNoneFound

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:109
  in environSuite.TestInstancesReturnsErrNoInstancesIfNoneFound
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:130: environSuite.TestInstancesReturnsErrorIfPartialInstances

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.016 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:134
  in environSuite.TestInstancesReturnsErrorIfPartialInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:83: environSuite.TestInstancesReturnsInstances

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:85
  in environSuite.TestInstancesReturnsInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1214: environSuite.TestNetworkInterfaces

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1217
  in environSuite.TestNetworkInterfaces
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1423: environSuite.TestPrecheckInstanceAvailZone

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.031 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1425
  in environSuite.TestPrecheckInstanceAvailZone
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1488: environSuite.TestPrecheckInstanceAvailZoneUnknown

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1490
  in environSuite.TestPrecheckInstanceAvailZoneUnknown
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1496: environSuite.TestPrecheckInstanceAvailZonesUnsupported

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1497
  in environSuite.TestPrecheckInstanceAvailZonesUnsupported
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1503: environSuite.TestPrecheckInvalidPlacement

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1504
  in environSuite.TestPrecheckInvalidPlacement
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1509: environSuite.TestPrecheckNodePlacement

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1510
  in environSuite.TestPrecheckNodePlacement
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1431: environSuite.TestReleaseAddress

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1433
  in environSuite.TestReleaseAddress
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1373: environSuite.TestReleaseAddressDeletesDevice

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1376
  in environSuite.TestReleaseAddressDeletesDevice
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1450: environSuite.TestReleaseAddressRetry

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1467
  in environSuite.TestReleaseAddressRetry
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:295: environSuite.TestSelectNodeInvalidZone

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.035 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:296
  in environSuite.TestSelectNodeInvalidZone
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:279: environSuite.TestSelectNodeValidZone

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:280
  in environSuite.TestSelectNodeValidZone
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:970: environSuite.TestSetupNetworks

[LOG] 0:00.003 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.050 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:987
  in environSuite.TestSetupNetworks
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1074: environSuite.TestSetupNetworksNoMatch

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1087
  in environSuite.TestSetupNetworksNoMatch
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1038: environSuite.TestSetupNetworksPartialMatch

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1053
  in environSuite.TestSetupNetworksPartialMatch
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1515: environSuite.TestStartInstanceAvailZone

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.028 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1531
  in environSuite.testStartInstanceAvailZone
environ_whitebox_test.go:1519
  in environSuite.TestStartInstanceAvailZone
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1524: environSuite.TestStartInstanceAvailZoneUnknown

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.028 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1531
  in environSuite.testStartInstanceAvailZone
environ_whitebox_test.go:1526
  in environSuite.TestStartInstanceAvailZoneUnknown
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1548: environSuite.TestStartInstanceConstraints

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1549
  in environSuite.TestStartInstanceConstraints
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1773: environSuite.TestStartInstanceDistribution

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.028 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1774
  in environSuite.TestStartInstanceDistribution
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1781: environSuite.TestStartInstanceDistributionAZNotImplemented

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.005 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.014 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.014 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.014 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.038 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1782
  in environSuite.TestStartInstanceDistributionAZNotImplemented
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1753: environSuite.TestStartInstanceDistributionErrors

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.029 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1754
  in environSuite.TestStartInstanceDistributionErrors
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1793: environSuite.TestStartInstanceDistributionFailover

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1808
  in environSuite.TestStartInstanceDistributionFailover
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1830: environSuite.TestStartInstanceDistributionOneAssigned

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1844
  in environSuite.TestStartInstanceDistributionOneAssigned
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1730: environSuite.TestStartInstanceDistributionParams

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.004 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.032 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1731
  in environSuite.TestStartInstanceDistributionParams
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:197: environSuite.TestStartInstanceStartsInstance

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:199
  in environSuite.TestStartInstanceStartsInstance
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1595: environSuite.TestStartInstanceStorage

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.001 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.002 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1596
  in environSuite.TestStartInstanceStorage
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1540: environSuite.TestStartInstanceUnmetConstraints

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.027 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1541
  in environSuite.TestStartInstanceUnmetConstraints
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1646: environSuite.TestStartInstanceUnsupportedStorage

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.000 DEBUG juju.environs.tools reading v1.* tools
[LOG] 0:00.000 INFO juju.environs.testing uploading FAKE tools 1.99.0-precise-amd64
[LOG] 0:00.002 INFO juju.environs.testing uploading FAKE tools 1.99.0-trusty-amd64
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index2.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/index.json
[LOG] 0:00.003 INFO juju.environs.tools Writing tools/streams/v1/com.ubuntu.juju-released-tools.json
[LOG] 0:00.021 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1722
  in environSuite.bootstrap
environ_whitebox_test.go:1647
  in environSuite.TestStartInstanceUnsupportedStorage
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:646: environSuite.TestStateServerInstances

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.015 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:647
  in environSuite.TestStateServerInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:663: environSuite.TestStateServerInstancesFailsIfNoStateInstances

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.017 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:664
  in environSuite.TestStateServerInstancesFailsIfNoStateInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:597: environSuite.TestStopInstancesIgnoresConflict

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:602
  in environSuite.TestStopInstancesIgnoresConflict
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:607: environSuite.TestStopInstancesIgnoresMissingNodeAndRecurses

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:614
  in environSuite.TestStopInstancesIgnoresMissingNodeAndRecurses
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:571: environSuite.TestStopInstancesReturnsIfParameterEmpty

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:574
  in environSuite.TestStopInstancesReturnsIfParameterEmpty
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:635: environSuite.TestStopInstancesReturnsUnexpectedError

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:640
  in environSuite.TestStopInstancesReturnsUnexpectedError
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:622: environSuite.TestStopInstancesReturnsUnexpectedMAASError

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:627
  in environSuite.TestStopInstancesReturnsUnexpectedMAASError
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:580: environSuite.TestStopInstancesStopsAndReleasesInstances

[LOG] 0:00.001 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:589
  in environSuite.TestStopInstancesStopsAndReleasesInstances
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:142: environSuite.TestStorageReturnsStorage

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:143
  in environSuite.TestStorageReturnsStorage
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1264: environSuite.TestSubnets

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1267
  in environSuite.TestSubnets
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1283: environSuite.TestSubnetsMissingNetwork

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1285
  in environSuite.TestSubnetsMissingNetwork
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1289: environSuite.TestSubnetsNoDuplicates

[LOG] 0:00.001 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1292
  in environSuite.TestSubnetsNoDuplicates
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1277: environSuite.TestSubnetsNoNetIds

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1279
  in environSuite.TestSubnetsNoNetIds
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:780: environSuite.TestSupportedArchitectures

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:785
  in environSuite.TestSupportedArchitectures
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:791: environSuite.TestSupportedArchitecturesFallback

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:796
  in environSuite.TestSupportedArchitecturesFallback
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1104: environSuite.TestSupportsAddressAllocation

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1105
  in environSuite.TestSupportsAddressAllocation
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1098: environSuite.TestSupportsNetworking

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1099
  in environSuite.TestSupportsNetworking
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1118: environSuite.TestSupportsSpaces

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1120
  in environSuite.TestSupportsSpaces
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: environ_whitebox_test.go:1111: environSuite.TestSupportsSpacesDefaultFalse

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
environ_whitebox_test.go:1112
  in environSuite.TestSupportsSpacesDefaultFalse
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:137: storageSuite.TestFileContentsAreBinary

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.022 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:140
  in storageSuite.TestFileContentsAreBinary
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:73: storageSuite.TestGetRetrievesFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:75
  in storageSuite.TestGetRetrievesFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:152: storageSuite.TestGetReturnsNotFoundErrorIfNotFound

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:154
  in storageSuite.TestGetReturnsNotFoundErrorIfNotFound
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:61: storageSuite.TestGetSnapshotCreatesClone

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.026 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:62
  in storageSuite.TestGetSnapshotCreatesClone
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:209: storageSuite.TestListMatchesPrefixOnly

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:210
  in storageSuite.TestListMatchesPrefixOnly
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:219: storageSuite.TestListOperatesOnFlatNamespace

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:220
  in storageSuite.TestListOperatesOnFlatNamespace
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:166: storageSuite.TestListReturnsAllFilesIfPrefixEmpty

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:167
  in storageSuite.TestListReturnsAllFilesIfPrefixEmpty
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:159: storageSuite.TestListReturnsEmptyIfNoFilesStored

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:160
  in storageSuite.TestListReturnsEmptyIfNoFilesStored
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:190: storageSuite.TestListReturnsNoFilesIfNoFilesMatchPrefix

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.029 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:191
  in storageSuite.TestListReturnsNoFilesIfNoFilesMatchPrefix
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:199: storageSuite.TestListReturnsOnlyFilesWithMatchingPrefix

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:200
  in storageSuite.TestListReturnsOnlyFilesWithMatchingPrefix
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:178: storageSuite.TestListSortsResults

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:179
  in storageSuite.TestListSortsResults
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:365: storageSuite.TestNamesMayHaveSlashes

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:368
  in storageSuite.TestNamesMayHaveSlashes
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:279: storageSuite.TestPutOverwritesFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:281
  in storageSuite.TestPutOverwritesFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:298: storageSuite.TestPutStopsAtGivenLength

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.022 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:302
  in storageSuite.TestPutStopsAtGivenLength
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:262: storageSuite.TestPutStoresRetrievableFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.021 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:266
  in storageSuite.TestPutStoresRetrievableFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:316: storageSuite.TestPutToExistingFileTruncatesAtGivenLength

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.019 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:320
  in storageSuite.TestPutToExistingFileTruncatesAtGivenLength
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:387: storageSuite.TestRemoveAllDeletesAllFiles

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.020 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:388
  in storageSuite.TestRemoveAllDeletesAllFiles
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:337: storageSuite.TestRemoveDeletesFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.024 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:339
  in storageSuite.TestRemoveDeletesFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:353: storageSuite.TestRemoveIsIdempotent

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:355
  in storageSuite.TestRemoveIsIdempotent
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:119: storageSuite.TestRetrieveFileObjectEscapesName

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:122
  in storageSuite.TestRetrieveFileObjectEscapesName
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:92: storageSuite.TestRetrieveFileObjectReturnsFileObject

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984", "maas-oauth":"a:b:c"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:94
  in storageSuite.TestRetrieveFileObjectReturnsFileObject
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:112: storageSuite.TestRetrieveFileObjectReturnsNotFoundForMissingFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.023 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:32
  in storageSuite.makeStorage
storage_test.go:113
  in storageSuite.TestRetrieveFileObjectReturnsNotFoundForMissingFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:241: storageSuite.TestURLReturnsURLCorrespondingToFile

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:243
  in storageSuite.TestURLReturnsURLCorrespondingToFile
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:401: storageSuite.TestprefixWithPrivateNamespacePrefixesWithAgentName

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.025 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:402
  in storageSuite.TestprefixWithPrivateNamespacePrefixesWithAgentName
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit

----------------------------------------------------------------------
PANIC: storage_test.go:412: storageSuite.TesttprefixWithPrivateNamespaceIgnoresAgentName

[LOG] 0:00.000 DEBUG juju.testing setting feature flags: address-allocation
[LOG] 0:00.035 DEBUG juju.environs.config coercion failed attributes: map[string]interface {}{"maas-oauth":"a:b:c", "maas-agent-name":"dfb69555-0bc4-4d1f-85f2-4ee390974984"}, checker: schema.fieldMapC{fields:schema.Fields{"maas-server":schema.stringC{}, "maas-oauth":schema.stringC{}, "maas-agent-name":schema.stringC{}}, defaults:schema.Defaults{"maas-agent-name":""}, strict:false}, maas-server: expected string, got nothing
... Panic: maas-server: expected string, got nothing (PC=0x414706)

/usr/lib/go/src/pkg/runtime/panic.c:248
  in panic
maas_test.go:86
  in providerSuite.makeEnviron
storage_test.go:413
  in storageSuite.TesttprefixWithPrivateNamespaceIgnoresAgentName
/usr/lib/go/src/pkg/reflect/value.go:345
  in Value.Call
/usr/lib/go/src/pkg/runtime/proc.c:1394
  in goexit
OOPS: 63 passed, 102 PANICKED
--- FAIL: TestMAAS (4.50 seconds)
FAIL
FAIL	github.com/juju/juju/provider/maas	4.728s
ok  	github.com/juju/juju/provider/manual	2.245s
ok  	github.com/juju/juju/provider/openstack	50.414s
ok  	github.com/juju/juju/provider/vsphere	6.328s
ok  	github.com/juju/juju/rpc	0.225s
ok  	github.com/juju/juju/rpc/jsoncodec	0.187s
?   	github.com/juju/juju/rpc/rpcreflect	[no test files]
ok  	github.com/juju/juju/service	1.234s
ok  	github.com/juju/juju/service/common	0.012s
ok  	github.com/juju/juju/service/common/testing	0.005s
ok  	github.com/juju/juju/service/systemd	0.175s
?   	github.com/juju/juju/service/systemd/testing	[no test files]
ok  	github.com/juju/juju/service/upstart	0.316s
ok  	github.com/juju/juju/service/windows	0.137s
ok  	github.com/juju/juju/state	293.628s
ok  	github.com/juju/juju/state/backups	13.977s
?   	github.com/juju/juju/state/backups/testing	[no test files]
ok  	github.com/juju/juju/state/cloudimagemetadata	0.466s
ok  	github.com/juju/juju/state/imagestorage	2.262s
ok  	github.com/juju/juju/state/leadership	0.227s
ok  	github.com/juju/juju/state/lease	2.673s
ok  	github.com/juju/juju/state/multiwatcher	0.004s
ok  	github.com/juju/juju/state/presence	5.608s
ok  	github.com/juju/juju/state/storage	0.333s
?   	github.com/juju/juju/state/testing	[no test files]
ok  	github.com/juju/juju/state/toolstorage	1.317s
ok  	github.com/juju/juju/state/utils	1.196s
ok  	github.com/juju/juju/state/watcher	3.945s
ok  	github.com/juju/juju/storage	0.124s
ok  	github.com/juju/juju/storage/looputil	0.109s
ok  	github.com/juju/juju/storage/poolmanager	1.616s
ok  	github.com/juju/juju/storage/provider	0.125s
?   	github.com/juju/juju/storage/provider/dummy	[no test files]
ok  	github.com/juju/juju/storage/provider/registry	0.046s
?   	github.com/juju/juju/testcharms	[no test files]
ok  	github.com/juju/juju/testing	0.130s
ok  	github.com/juju/juju/testing/factory	3.784s
ok  	github.com/juju/juju/tools	0.008s
ok  	github.com/juju/juju/upgrades	32.637s
ok  	github.com/juju/juju/utils	0.200s
ok  	github.com/juju/juju/utils/syslog	0.035s
?   	github.com/juju/juju/utils/syslog/testing	[no test files]
ok  	github.com/juju/juju/version	0.197s
ok  	github.com/juju/juju/worker	2.970s
ok  	github.com/juju/juju/worker/addresser	44.632s
ok  	github.com/juju/juju/worker/agent	0.025s
ok  	github.com/juju/juju/worker/apiaddressupdater	2.172s
ok  	github.com/juju/juju/worker/apicaller	0.163s
ok  	github.com/juju/juju/worker/authenticationworker	3.855s
ok  	github.com/juju/juju/worker/certupdater	0.412s
ok  	github.com/juju/juju/worker/charmrevisionworker	2.913s
ok  	github.com/juju/juju/worker/cleaner	0.229s
ok  	github.com/juju/juju/worker/conv2state	0.186s
ok  	github.com/juju/juju/worker/dblogpruner	5.553s
ok  	github.com/juju/juju/worker/dependency	3.530s
?   	github.com/juju/juju/worker/dependency/testing	[no test files]
ok  	github.com/juju/juju/worker/deployer	3.477s
ok  	github.com/juju/juju/worker/diskmanager	0.303s
ok  	github.com/juju/juju/worker/envworkermanager	2.609s
ok  	github.com/juju/juju/worker/firewaller	15.989s
ok  	github.com/juju/juju/worker/fortress	0.671s
ok  	github.com/juju/juju/worker/gate	0.046s
ok  	github.com/juju/juju/worker/imagemetadataworker	0.155s
ok  	github.com/juju/juju/worker/instancepoller	2.086s
ok  	github.com/juju/juju/worker/leadership	0.628s
ok  	github.com/juju/juju/worker/localstorage	0.017s
ok  	github.com/juju/juju/worker/logger	1.203s
ok  	github.com/juju/juju/worker/logsender	1.318s
ok  	github.com/juju/juju/worker/machinelock	0.057s
ok  	github.com/juju/juju/worker/machiner	19.051s
ok  	github.com/juju/juju/worker/meterstatus	10.197s
ok  	github.com/juju/juju/worker/metrics/collect	0.114s
ok  	github.com/juju/juju/worker/metrics/sender	0.021s
ok  	github.com/juju/juju/worker/metrics/spool	0.026s
ok  	github.com/juju/juju/worker/metricworker	0.726s
ok  	github.com/juju/juju/worker/minunitsworker	1.203s
ok  	github.com/juju/juju/worker/networker	6.038s
ok  	github.com/juju/juju/worker/peergrouper	0.607s
ok  	github.com/juju/juju/worker/provisioner	65.322s
ok  	github.com/juju/juju/worker/proxyupdater	3.419s
ok  	github.com/juju/juju/worker/reboot	12.223s
ok  	github.com/juju/juju/worker/resumer	0.931s
ok  	github.com/juju/juju/worker/rsyslog	6.358s
ok  	github.com/juju/juju/worker/singular	0.373s
ok  	github.com/juju/juju/worker/statushistorypruner	10.162s
ok  	github.com/juju/juju/worker/storageprovisioner	1.299s
ok  	github.com/juju/juju/worker/storageprovisioner/internal/schedule	0.120s
ok  	github.com/juju/juju/worker/terminationworker	0.137s
?   	github.com/juju/juju/worker/testing	[no test files]
ok  	github.com/juju/juju/worker/toolsversionchecker	0.175s
ok  	github.com/juju/juju/worker/txnpruner	0.172s
ok  	github.com/juju/juju/worker/uniter	141.242s
ok  	github.com/juju/juju/worker/uniter/actions	0.020s
ok  	github.com/juju/juju/worker/uniter/charm	7.925s
ok  	github.com/juju/juju/worker/uniter/hook	0.665s
?   	github.com/juju/juju/worker/uniter/hook/hooktesting	[no test files]
?   	github.com/juju/juju/worker/uniter/leadership	[no test files]
ok  	github.com/juju/juju/worker/uniter/operation	0.132s
ok  	github.com/juju/juju/worker/uniter/relation	3.458s
ok  	github.com/juju/juju/worker/uniter/remotestate	1.076s
ok  	github.com/juju/juju/worker/uniter/resolver	0.232s
ok  	github.com/juju/juju/worker/uniter/runner	13.976s
ok  	github.com/juju/juju/worker/uniter/runner/context	31.788s
ok  	github.com/juju/juju/worker/uniter/runner/debug	0.296s
ok  	github.com/juju/juju/worker/uniter/runner/jujuc	0.413s
?   	github.com/juju/juju/worker/uniter/runner/jujuc/testing	[no test files]
?   	github.com/juju/juju/worker/uniter/runner/testing	[no test files]
ok  	github.com/juju/juju/worker/uniter/storage	0.128s
ok  	github.com/juju/juju/worker/upgrader	3.900s
ok  	github.com/juju/juju/worker/util	0.020s
ok  	github.com/juju/juju/wrench	0.143s
make: *** [check] Error 1
aim@spicy:~/juju
$ 
Download as text