~andreserl/maas/lp1459865

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
# Copyright 2015 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

"""Tests for `FilesystemGroup`."""

from __future__ import (
    absolute_import,
    print_function,
    unicode_literals,
    )

str = None

__metaclass__ = type
__all__ = []

import random
import re
from uuid import uuid4

from django.core.exceptions import (
    PermissionDenied,
    ValidationError,
)
from django.http import Http404
from maasserver.enum import (
    CACHE_MODE_TYPE,
    FILESYSTEM_GROUP_RAID_TYPES,
    FILESYSTEM_GROUP_TYPE,
    FILESYSTEM_TYPE,
    NODE_PERMISSION,
)
from maasserver.models.blockdevice import MIN_BLOCK_DEVICE_SIZE
from maasserver.models.filesystem import Filesystem
from maasserver.models.filesystemgroup import (
    Bcache,
    BcacheManager,
    FilesystemGroup,
    RAID,
    RAIDManager,
    VolumeGroup,
    VolumeGroupManager,
)
from maasserver.models.partitiontable import PARTITION_TABLE_EXTRA_SPACE
from maasserver.models.physicalblockdevice import PhysicalBlockDevice
from maasserver.models.virtualblockdevice import VirtualBlockDevice
from maasserver.testing.factory import factory
from maasserver.testing.orm import (
    reload_object,
    reload_objects,
)
from maasserver.testing.testcase import MAASServerTestCase
from maasserver.utils.converters import machine_readable_bytes
from maastesting.matchers import (
    MockCalledOnceWith,
    MockNotCalled,
)
from testtools import ExpectedException
from testtools.matchers import (
    Equals,
    Is,
    MatchesStructure,
    Not,
)


class TestManagersGetObjectOr404(MAASServerTestCase):
    """Tests for the `get_object_or_404` on the managers."""

    scenarios = (
        ("FilesystemGroup", {
            "model": FilesystemGroup,
            "type": None,
        }),
        ("VolumeGroup", {
            "model": VolumeGroup,
            "type": FILESYSTEM_GROUP_TYPE.LVM_VG,
        }),
        ("RAID", {
            "model": RAID,
            "type": FILESYSTEM_GROUP_TYPE.RAID_0,
        }),
        ("Bcache", {
            "model": Bcache,
            "type": FILESYSTEM_GROUP_TYPE.BCACHE,
        }),
    )

    def test__raises_Http404_when_invalid_node(self):
        user = factory.make_admin()
        filesystem_group = factory.make_FilesystemGroup(group_type=self.type)
        self.assertRaises(
            Http404, self.model.objects.get_object_or_404,
            factory.make_name("system_id"), filesystem_group.id, user,
            NODE_PERMISSION.VIEW)

    def test__raises_Http404_when_invalid_device(self):
        user = factory.make_admin()
        node = factory.make_Node()
        self.assertRaises(
            Http404, self.model.objects.get_object_or_404,
            node.system_id, random.randint(0, 100), user,
            NODE_PERMISSION.VIEW)

    def test__view_raises_PermissionDenied_when_user_not_owner(self):
        user = factory.make_User()
        node = factory.make_Node(owner=factory.make_User())
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertRaises(
            PermissionDenied,
            self.model.objects.get_object_or_404,
            node.system_id, filesystem_group.id, user,
            NODE_PERMISSION.VIEW)

    def test__view_returns_device_by_name(self):
        user = factory.make_User()
        node = factory.make_Node()
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertEquals(
            filesystem_group.id,
            self.model.objects.get_object_or_404(
                node.system_id, filesystem_group.name, user,
                NODE_PERMISSION.VIEW).id)

    def test__view_returns_device_when_no_owner(self):
        user = factory.make_User()
        node = factory.make_Node()
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertEquals(
            filesystem_group.id,
            self.model.objects.get_object_or_404(
                node.system_id, filesystem_group.id, user,
                NODE_PERMISSION.VIEW).id)

    def test__view_returns_device_when_owner(self):
        user = factory.make_User()
        node = factory.make_Node(owner=user)
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertEquals(
            filesystem_group.id,
            self.model.objects.get_object_or_404(
                node.system_id, filesystem_group.id, user,
                NODE_PERMISSION.VIEW).id)

    def test__edit_raises_PermissionDenied_when_user_not_owner(self):
        user = factory.make_User()
        node = factory.make_Node(owner=factory.make_User())
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertRaises(
            PermissionDenied,
            self.model.objects.get_object_or_404,
            node.system_id, filesystem_group.id, user,
            NODE_PERMISSION.EDIT)

    def test__edit_returns_device_when_user_is_owner(self):
        user = factory.make_User()
        node = factory.make_Node(owner=user)
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertEquals(
            filesystem_group.id,
            self.model.objects.get_object_or_404(
                node.system_id, filesystem_group.id, user,
                NODE_PERMISSION.EDIT).id)

    def test__admin_raises_PermissionDenied_when_user_requests_admin(self):
        user = factory.make_User()
        node = factory.make_Node()
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertRaises(
            PermissionDenied,
            self.model.objects.get_object_or_404,
            node.system_id, filesystem_group.id, user,
            NODE_PERMISSION.ADMIN)

    def test__admin_returns_device_when_admin(self):
        user = factory.make_admin()
        node = factory.make_Node()
        filesystem_group = factory.make_FilesystemGroup(
            node=node, group_type=self.type)
        self.assertEquals(
            filesystem_group.id,
            self.model.objects.get_object_or_404(
                node.system_id, filesystem_group.id, user,
                NODE_PERMISSION.ADMIN).id)


class TestManagersFilterByBlockDevice(MAASServerTestCase):
    """Tests for the managers `filter_by_block_device`."""

    def test__volume_group_on_block_device(self):
        block_device = factory.make_PhysicalBlockDevice()
        filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, block_device=block_device)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG, filesystems=[filesystem])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_block_device(
                block_device))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__volume_group_on_partition(self):
        block_device = factory.make_PhysicalBlockDevice()
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition = factory.make_Partition(partition_table=partition_table)
        filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG, filesystems=[filesystem])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_block_device(
                block_device))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__volume_group_on_two_partitions(self):
        block_device = factory.make_PhysicalBlockDevice()
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_block_device(
                block_device))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__raid_on_block_devices(self):
        node = factory.make_Node()
        block_device_one = factory.make_PhysicalBlockDevice(node=node)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, block_device=block_device_one)
        block_device_two = factory.make_PhysicalBlockDevice(node=node)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, block_device=block_device_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            RAID.objects.filter_by_block_device(
                block_device_one))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__raid_on_partitions(self):
        block_device = factory.make_PhysicalBlockDevice()
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            RAID.objects.filter_by_block_device(
                block_device))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__bcache_on_block_devices(self):
        node = factory.make_Node()
        block_device_one = factory.make_PhysicalBlockDevice(node=node)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
            block_device=block_device_one)
        block_device_two = factory.make_PhysicalBlockDevice(node=node)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
            block_device=block_device_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            Bcache.objects.filter_by_block_device(
                block_device_one))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__bcache_on_partitions(self):
        block_device = factory.make_PhysicalBlockDevice()
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_CACHE, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_BACKING, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            Bcache.objects.filter_by_block_device(
                block_device))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)


class TestManagersFilterByNode(MAASServerTestCase):
    """Tests for the managers `filter_by_node`."""

    def test__volume_group_on_block_device(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, block_device=block_device)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG, filesystems=[filesystem])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__volume_group_on_partition(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition = factory.make_Partition(partition_table=partition_table)
        filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG, filesystems=[filesystem])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__volume_group_on_two_partitions(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            VolumeGroup.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__raid_on_block_devices(self):
        node = factory.make_Node()
        block_device_one = factory.make_PhysicalBlockDevice(node=node)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, block_device=block_device_one)
        block_device_two = factory.make_PhysicalBlockDevice(node=node)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, block_device=block_device_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            RAID.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__raid_on_partitions(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.RAID, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            RAID.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__bcache_on_block_devices(self):
        node = factory.make_Node()
        block_device_one = factory.make_PhysicalBlockDevice(node=node)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
            block_device=block_device_one)
        block_device_two = factory.make_PhysicalBlockDevice(node=node)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
            block_device=block_device_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            Bcache.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)

    def test__bcache_on_partitions(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partition_one = factory.make_Partition(
            partition_table=partition_table)
        partition_two = factory.make_Partition(
            partition_table=partition_table)
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_CACHE, partition=partition_one)
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_BACKING, partition=partition_two)
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK,
            filesystems=[filesystem_one, filesystem_two])
        filesystem_groups = (
            Bcache.objects.filter_by_node(node))
        result_filesystem_group_ids = [
            fsgroup.id
            for fsgroup in filesystem_groups
        ]
        self.assertItemsEqual(
            [filesystem_group.id], result_filesystem_group_ids)


class TestFilesystemGroupManager(MAASServerTestCase):
    """Tests for the `FilesystemGroupManager`."""

    def test_get_available_name_for_returns_next_idx(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        filesystem_group.save()
        prefix = filesystem_group.get_name_prefix()
        current_idx = int(
            filesystem_group.name.replace(prefix, ""))
        self.assertEquals(
            "%s%s" % (prefix, current_idx + 1),
            FilesystemGroup.objects.get_available_name_for(
                filesystem_group))

    def test_get_available_name_for_ignores_bad_int(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        filesystem_group.save()
        prefix = filesystem_group.get_name_prefix()
        filesystem_group.name = "%s%s" % (prefix, factory.make_name("bad"))
        filesystem_group.save()
        self.assertEquals(
            "%s0" % prefix,
            FilesystemGroup.objects.get_available_name_for(
                filesystem_group))


class TestVolumeGroupManager(MAASServerTestCase):
    """Tests for the `VolumeGroupManager`."""

    def test_create_volume_group_with_name_and_uuid(self):
        block_device = factory.make_PhysicalBlockDevice()
        name = factory.make_name("vg")
        vguuid = "%s" % uuid4()
        volume_group = VolumeGroup.objects.create_volume_group(
            name, [block_device], [], uuid=vguuid)
        self.assertEquals(name, volume_group.name)
        self.assertEquals(vguuid, volume_group.uuid)

    def test_create_volume_group_with_block_devices(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node)
            for _ in range(3)
        ]
        name = factory.make_name("vg")
        volume_group = VolumeGroup.objects.create_volume_group(
            name, block_devices, [])
        block_devices_in_vg = [
            filesystem.block_device.actual_instance
            for filesystem in volume_group.filesystems.all()
        ]
        self.assertItemsEqual(block_devices, block_devices_in_vg)

    def test_create_volume_group_with_partitions(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(
            node=node,
            size=(MIN_BLOCK_DEVICE_SIZE * 3) + PARTITION_TABLE_EXTRA_SPACE)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partitions = [
            partition_table.add_partition(size=MIN_BLOCK_DEVICE_SIZE)
            for _ in range(2)
        ]
        name = factory.make_name("vg")
        volume_group = VolumeGroup.objects.create_volume_group(
            name, [], partitions)
        partitions_in_vg = [
            filesystem.partition
            for filesystem in volume_group.filesystems.all()
        ]
        self.assertItemsEqual(partitions, partitions_in_vg)

    def test_create_volume_group_with_block_devices_and_partitions(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node)
            for _ in range(3)
        ]
        block_device = factory.make_PhysicalBlockDevice(
            node=node,
            size=(MIN_BLOCK_DEVICE_SIZE * 3) + PARTITION_TABLE_EXTRA_SPACE)
        partition_table = factory.make_PartitionTable(
            block_device=block_device)
        partitions = [
            partition_table.add_partition(size=MIN_BLOCK_DEVICE_SIZE)
            for _ in range(2)
        ]
        name = factory.make_name("vg")
        volume_group = VolumeGroup.objects.create_volume_group(
            name, block_devices, partitions)
        block_devices_in_vg = [
            filesystem.block_device.actual_instance
            for filesystem in volume_group.filesystems.all()
            if filesystem.block_device is not None
        ]
        partitions_in_vg = [
            filesystem.partition
            for filesystem in volume_group.filesystems.all()
            if filesystem.partition is not None
        ]
        self.assertItemsEqual(block_devices, block_devices_in_vg)
        self.assertItemsEqual(partitions, partitions_in_vg)


class TestFilesystemGroup(MAASServerTestCase):
    """Tests for the `FilesystemGroup` model."""

    def test_virtual_device_raises_AttributeError_for_lvm(self):
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)
        with ExpectedException(AttributeError):
            fsgroup.virtual_device

    def test_virtual_device_returns_VirtualBlockDevice_for_group(self):
        fsgroup = factory.make_FilesystemGroup(
            group_type=factory.pick_enum(
                FILESYSTEM_GROUP_TYPE, but_not=FILESYSTEM_GROUP_TYPE.LVM_VG))
        self.assertEquals(
            VirtualBlockDevice.objects.get(filesystem_group=fsgroup),
            fsgroup.virtual_device)

    def test_get_node_returns_first_filesystem_node(self):
        fsgroup = factory.make_FilesystemGroup()
        self.assertEquals(
            fsgroup.filesystems.first().get_node(), fsgroup.get_node())

    def test_get_node_returns_None_if_no_filesystems(self):
        fsgroup = FilesystemGroup()
        self.assertIsNone(fsgroup.get_node())

    def test_get_size_returns_0_if_lvm_without_filesystems(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)
        self.assertEquals(0, fsgroup.get_size())

    def test_get_size_returns_sum_of_all_filesystem_sizes_for_lvm(self):
        node = factory.make_Node()
        block_size = 4096
        total_size = 0
        filesystems = []
        for _ in range(3):
            size = random.randint(
                MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
            total_size += size
            block_device = factory.make_PhysicalBlockDevice(
                node=node, size=size, block_size=block_size)
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.LVM_PV, block_device=block_device))
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG, filesystems=filesystems)
        lvm_overhead = 3 * 256 * block_size
        self.assertEquals(total_size - lvm_overhead, fsgroup.get_size())

    def test_get_size_returns_0_if_raid_without_filesystems(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.RAID_0)
        self.assertEquals(0, fsgroup.get_size())

    def test_get_size_returns_smallest_disk_size_for_raid_0(self):
        node = factory.make_Node()
        small_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        large_size = random.randint(small_size + 1, small_size + (10 ** 5))
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=small_size)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=large_size)),
        ]
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0, filesystems=filesystems)
        # Size should be twice the smallest device (the rest of the larger
        # device remains unused.
        self.assertEquals(small_size * 2, fsgroup.get_size())

    def test_get_size_returns_smallest_disk_size_for_raid_1(self):
        node = factory.make_Node()
        small_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        large_size = random.randint(small_size + 1, small_size + (10 ** 5))
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=small_size)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=large_size)),
        ]
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_1, filesystems=filesystems)
        self.assertEquals(small_size, fsgroup.get_size())

    def test_get_size_returns_correct_disk_size_for_raid_5(self):
        node = factory.make_Node()
        small_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        other_size = random.randint(small_size + 1, small_size + (10 ** 5))
        number_of_raid_devices = random.randint(2, 9)
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=small_size)),
        ]
        for _ in range(number_of_raid_devices):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID,
                    block_device=factory.make_PhysicalBlockDevice(
                        node=node, size=other_size)))
        # Spares are ignored and not taken into calculation.
        for _ in range(3):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID_SPARE,
                    block_device=factory.make_PhysicalBlockDevice(
                        node=node, size=other_size)))
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_5, filesystems=filesystems)
        self.assertEquals(
            small_size * number_of_raid_devices, fsgroup.get_size())

    def test_get_size_returns_correct_disk_size_for_raid_6(self):
        node = factory.make_Node()
        small_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        other_size = random.randint(small_size + 1, small_size + (10 ** 5))
        number_of_raid_devices = random.randint(3, 9)
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=small_size)),
        ]
        for _ in range(number_of_raid_devices):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID,
                    block_device=factory.make_PhysicalBlockDevice(
                        node=node, size=other_size)))
        # Spares are ignored and not taken into calculation.
        for _ in range(3):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID_SPARE,
                    block_device=factory.make_PhysicalBlockDevice(
                        node=node, size=other_size)))
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_6, filesystems=filesystems)
        self.assertEquals(
            small_size * (number_of_raid_devices - 1), fsgroup.get_size())

    def test_get_size_returns_0_if_bcache_without_backing(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        self.assertEquals(0, fsgroup.get_size())

    def test_get_size_returns_size_of_backing_device_with_bcache(self):
        node = factory.make_Node()
        backing_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        cache_size = random.randint(
            MIN_BLOCK_DEVICE_SIZE, MIN_BLOCK_DEVICE_SIZE ** 2)
        backing_block_device = factory.make_PhysicalBlockDevice(
            node=node, size=backing_size)
        cache_block_device = factory.make_PhysicalBlockDevice(
            node=node, size=cache_size)
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=cache_block_device),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=backing_block_device),
        ]
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK, filesystems=filesystems)
        self.assertEquals(backing_size, fsgroup.get_size())

    def test_is_lvm_returns_true_when_LVM_VG(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)
        self.assertTrue(fsgroup.is_lvm())

    def test_is_lvm_returns_false_when_not_LVM_VG(self):
        fsgroup = FilesystemGroup(
            group_type=factory.pick_enum(
                FILESYSTEM_GROUP_TYPE, but_not=FILESYSTEM_GROUP_TYPE.LVM_VG))
        self.assertFalse(fsgroup.is_lvm())

    def test_is_raid_returns_true_for_all_raid_types(self):
        fsgroup = FilesystemGroup()
        for raid_type in FILESYSTEM_GROUP_RAID_TYPES:
            fsgroup.group_type = raid_type
            self.assertTrue(
                fsgroup.is_raid(),
                "is_raid should return true for %s" % raid_type)

    def test_is_raid_returns_false_for_LVM_VG(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)
        self.assertFalse(fsgroup.is_raid())

    def test_is_raid_returns_false_for_BCACHE(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        self.assertFalse(fsgroup.is_raid())

    def test_is_bcache_returns_true_when_BCACHE(self):
        fsgroup = FilesystemGroup(group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        self.assertTrue(fsgroup.is_bcache())

    def test_is_bcache_returns_false_when_not_BCACHE(self):
        fsgroup = FilesystemGroup(
            group_type=factory.pick_enum(
                FILESYSTEM_GROUP_TYPE, but_not=FILESYSTEM_GROUP_TYPE.BCACHE))
        self.assertFalse(fsgroup.is_bcache())

    def test_can_save_new_filesystem_group_without_filesystems(self):
        fsgroup = FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            name=factory.make_name("vg"))
        fsgroup.save()
        self.expectThat(fsgroup.id, Not(Is(None)))
        self.expectThat(fsgroup.filesystems.count(), Equals(0))

    def test_cannot_save_without_filesystems(self):
        fsgroup = FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            name=factory.make_name("vg"))
        fsgroup.save()
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'At least one filesystem must have "
                    "been added.']}")):
            fsgroup.save()

    def test_cannot_save_without_filesystems_from_different_nodes(self):
        filesystems = [
            factory.make_Filesystem(),
            factory.make_Filesystem(),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'All added filesystems must belong to "
                    "the same node.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
                filesystems=filesystems)

    def test_cannot_save_volume_group_if_invalid_filesystem(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Volume group can only contain lvm "
                    "physical volumes.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
                filesystems=filesystems)

    def test_can_save_volume_group_if_valid_filesystems(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            filesystems=filesystems)

    def test_cannot_save_volume_group_if_logical_volumes_larger(self):
        node = factory.make_Node()
        filesystem_one = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV,
            block_device=factory.make_PhysicalBlockDevice(node=node))
        filesystem_two = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.LVM_PV,
            block_device=factory.make_PhysicalBlockDevice(node=node))
        filesystems = [
            filesystem_one,
            filesystem_two,
        ]
        volume_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            filesystems=filesystems)
        factory.make_VirtualBlockDevice(
            size=volume_group.get_size(), filesystem_group=volume_group)
        filesystem_two.delete()
        with ExpectedException(
                ValidationError,
                re.escape(
                    "[u'Volume group cannot be smaller than its "
                    "logical volumes.']")):
            volume_group.save()

    def test_cannot_save_raid_0_with_less_than_2_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 0 must have at least 2 raid "
                    "devices and no spares.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
                filesystems=filesystems)

    def test_cannot_save_raid_0_with_spare_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(2)
        ]
        filesystems.append(
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID_SPARE,
                block_device=factory.make_PhysicalBlockDevice(node=node)))
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 0 must have at least 2 raid "
                    "devices and no spares.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
                filesystems=filesystems)

    def test_can_save_raid_0_with_exactly_2_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(2)
        ]
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=filesystems)

    def test_can_save_raid_0_with_more_then_2_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(10)
        ]
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0,
            filesystems=filesystems)

    def test_cannot_save_raid_1_with_less_than_2_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 1 must have at least 2 raid "
                    "devices and any number of spares.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.RAID_1,
                filesystems=filesystems)

    def test_can_save_raid_1_with_spare_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(2)
        ]
        filesystems.append(
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID_SPARE,
                block_device=factory.make_PhysicalBlockDevice(node=node)))
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_1,
            filesystems=filesystems)

    def test_can_save_raid_1_with_2_or_more_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(2, 10))
        ]
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_1,
            filesystems=filesystems)

    def test_cannot_save_raid_5_with_less_than_3_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(1, 2))
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 5 must have at least 3 raid "
                    "devices and any number of spares.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.RAID_5,
                filesystems=filesystems)

    def test_can_save_raid_5_with_3_or_more_raid_devices_and_spares(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(3, 10))
        ]
        for _ in range(random.randint(1, 5)):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID_SPARE,
                    block_device=factory.make_PhysicalBlockDevice(node=node)))
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_5,
            filesystems=filesystems)

    def test_cannot_save_raid_6_with_less_than_4_raid_devices(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(1, 3))
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 6 must have at least 4 raid "
                    "devices and any number of spares.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.RAID_6,
                filesystems=filesystems)

    def test_can_save_raid_6_with_4_or_more_raid_devices_and_spares(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.RAID,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(4, 10))
        ]
        for _ in range(random.randint(1, 5)):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.RAID_SPARE,
                    block_device=factory.make_PhysicalBlockDevice(node=node)))
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_6,
            filesystems=filesystems)

    def test_cannot_save_bcache_without_cache(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache must contain one cache and one "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_cannot_save_bcache_without_backing(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache must contain one cache and one "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_cannot_save_bcache_with_logical_volume_as_backing(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_VirtualBlockDevice(node=node)),
        ]
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache cannot use a logical volume as a "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_can_save_bcache_with_cache_and_backing(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_PhysicalBlockDevice(node=node)),
        ]
        # Test is that this does not raise an exception.
        factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            filesystems=filesystems)

    def test_cannot_save_bcache_with_multiple_caches(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(2, 10))
        ]
        filesystems.append(
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_PhysicalBlockDevice(node=node)))
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache must contain one cache and one "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_cannot_save_bcache_with_multiple_backings(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(2, 10))
        ]
        filesystems.append(
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                block_device=factory.make_PhysicalBlockDevice(node=node)))
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache must contain one cache and one "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_cannot_save_bcache_with_multiple_caches_and_backings(self):
        node = factory.make_Node()
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
                block_device=factory.make_PhysicalBlockDevice(node=node))
            for _ in range(random.randint(2, 10))
        ]
        for _ in range(random.randint(2, 10)):
            filesystems.append(
                factory.make_Filesystem(
                    fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
                    block_device=factory.make_PhysicalBlockDevice(node=node)))
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'Bcache must contain one cache and one "
                    "backing device.']}")):
            factory.make_FilesystemGroup(
                group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
                filesystems=filesystems)

    def test_save_doesnt_overwrite_uuid(self):
        uuid = uuid4()
        fsgroup = factory.make_FilesystemGroup(uuid=uuid)
        self.assertEquals('%s' % uuid, fsgroup.uuid)

    def test_save_doesnt_allow_changing_group_type(self):
        fsgroup = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.RAID_0)
        fsgroup.save()
        fsgroup.group_type = FILESYSTEM_GROUP_TYPE.RAID_1
        error = self.assertRaises(ValidationError, fsgroup.save)
        self.assertEquals(
            "Cannot change the group_type of a FilesystemGroup.",
            error.message)

    def test_save_calls_create_or_update_for_when_filesystems_linked(self):
        mock_create_or_update_for = self.patch(
            VirtualBlockDevice.objects, "create_or_update_for")
        filesystem_group = factory.make_FilesystemGroup()
        self.assertThat(
            mock_create_or_update_for, MockCalledOnceWith(filesystem_group))

    def test_save_doesnt_call_create_or_update_for_when_no_filesystems(self):
        mock_create_or_update_for = self.patch(
            VirtualBlockDevice.objects, "create_or_update_for")
        filesystem_group = FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            name=factory.make_name("vg"))
        filesystem_group.save()
        self.assertThat(
            mock_create_or_update_for, MockNotCalled())

    def test_get_lvm_allocated_size_and_get_lvm_free_space(self):
        """Check get_lvm_allocated_size and get_lvm_free_space methods."""
        backing_volume_size = machine_readable_bytes('10G')
        node = factory.make_Node()
        fsgroup = FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            name=factory.make_name("vg"))
        fsgroup.save()
        block_size = 4096
        for i in range(5):
            block_device = factory.make_BlockDevice(
                node=node, size=backing_volume_size, block_size=block_size)
            factory.make_Filesystem(
                filesystem_group=fsgroup, fstype=FILESYSTEM_TYPE.LVM_PV,
                block_device=block_device)
        # Total space should be 50 GB minus the overhead.
        lvm_overhead = 256 * block_size * 5
        self.assertEqual((50 * 1000 ** 3) - lvm_overhead, fsgroup.get_size())

        # Allocate two VirtualBlockDevice's
        factory.make_VirtualBlockDevice(
            filesystem_group=fsgroup, size=35 * 1000 ** 3)
        factory.make_VirtualBlockDevice(
            filesystem_group=fsgroup, size=5 * 1000 ** 3)

        self.assertEqual(40 * 1000 ** 3, fsgroup.get_lvm_allocated_size())
        self.assertEqual(
            (10 * 1000 ** 3) - lvm_overhead, fsgroup.get_lvm_free_space())

    def test_get_virtual_block_device_block_size_returns_backing_for_bc(self):
        # This test is not included in the scenario below
        # `TestFilesystemGroupGetVirtualBlockDeviceBlockSize` because it has
        # different logic that doesn't fit in the scenario.
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE)
        filesystem = filesystem_group.get_bcache_backing_filesystem()
        self.assertEquals(
            filesystem.get_block_size(),
            filesystem_group.get_virtual_block_device_block_size())

    def test_get_bcache_cache_filesystem_for_bcache(self):
        node = factory.make_Node()
        backing_filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_BACKING,
            block_device=factory.make_PhysicalBlockDevice(node=node))
        cache_filesystem = factory.make_Filesystem(
            fstype=FILESYSTEM_TYPE.BCACHE_CACHE,
            block_device=factory.make_PhysicalBlockDevice(node=node))
        bcache = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.BCACHE,
            filesystems=[cache_filesystem, backing_filesystem])
        self.assertEquals(
            cache_filesystem, bcache.get_bcache_cache_filesystem())

    def test_delete_deletes_filesystems_not_block_devices(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node)
            for _ in range(3)
        ]
        filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV, block_device=bd)
            for bd in block_devices
            ]
        filesystem_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG,
            filesystems=filesystems)
        filesystem_group.delete()
        deleted_filesystems = reload_objects(Filesystem, filesystems)
        kept_block_devices = reload_objects(PhysicalBlockDevice, block_devices)
        self.assertItemsEqual([], deleted_filesystems)
        self.assertItemsEqual(block_devices, kept_block_devices)

    def test_delete_cannot_delete_volume_group_with_logical_volumes(self):
        volume_group = factory.make_FilesystemGroup(
            group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)
        factory.make_VirtualBlockDevice(
            size=volume_group.get_size(),
            filesystem_group=volume_group)
        error = self.assertRaises(ValidationError, volume_group.delete)
        self.assertEqual(
            "This volume group has logical volumes; it cannot be deleted.",
            error.message)

    def test_delete_deletes_virtual_block_device(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=factory.pick_enum(
                FILESYSTEM_GROUP_TYPE, but_not=FILESYSTEM_GROUP_TYPE.LVM_VG))
        virtual_device = filesystem_group.virtual_device
        filesystem_group.delete()
        self.assertIsNone(
            reload_object(virtual_device),
            "VirtualBlockDevice should have been deleted.")


class TestFilesystemGroupGetNiceName(MAASServerTestCase):

    scenarios = [
        (FILESYSTEM_GROUP_TYPE.LVM_VG, {
            "group_type": FILESYSTEM_GROUP_TYPE.LVM_VG,
            "name": "volume group",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_0, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_0,
            "name": "RAID",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_1, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_1,
            "name": "RAID",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_5, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_5,
            "name": "RAID",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_6, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_6,
            "name": "RAID",
            }),
        (FILESYSTEM_GROUP_TYPE.BCACHE, {
            "group_type": FILESYSTEM_GROUP_TYPE.BCACHE,
            "name": "Bcache",
            }),
    ]

    def test__returns_prefix(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=self.group_type)
        self.assertEquals(
            self.name, filesystem_group.get_nice_name())


class TestFilesystemGroupGetNamePrefix(MAASServerTestCase):

    scenarios = [
        (FILESYSTEM_GROUP_TYPE.LVM_VG, {
            "group_type": FILESYSTEM_GROUP_TYPE.LVM_VG,
            "prefix": "vg",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_0, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_0,
            "prefix": "md",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_1, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_1,
            "prefix": "md",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_5, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_5,
            "prefix": "md",
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_6, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_6,
            "prefix": "md",
            }),
        (FILESYSTEM_GROUP_TYPE.BCACHE, {
            "group_type": FILESYSTEM_GROUP_TYPE.BCACHE,
            "prefix": "bcache",
            }),
    ]

    def test__returns_prefix(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=self.group_type)
        self.assertEquals(
            self.prefix, filesystem_group.get_name_prefix())


class TestFilesystemGroupGetVirtualBlockDeviceBlockSize(MAASServerTestCase):

    scenarios = [
        (FILESYSTEM_GROUP_TYPE.LVM_VG, {
            "group_type": FILESYSTEM_GROUP_TYPE.LVM_VG,
            "block_size": 4096,
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_0, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_0,
            "block_size": 512,
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_1, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_1,
            "block_size": 512,
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_5, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_5,
            "block_size": 512,
            }),
        (FILESYSTEM_GROUP_TYPE.RAID_6, {
            "group_type": FILESYSTEM_GROUP_TYPE.RAID_6,
            "block_size": 512,
            }),
        # For BCACHE see
        # `test_get_virtual_block_device_block_size_returns_backing_for_bc`
        # above.
    ]

    def test__returns_block_size(self):
        filesystem_group = factory.make_FilesystemGroup(
            group_type=self.group_type)
        self.assertEquals(
            self.block_size,
            filesystem_group.get_virtual_block_device_block_size())


class TestVolumeGroup(MAASServerTestCase):

    def test_objects_is_VolumeGroupManager(self):
        self.assertIsInstance(VolumeGroup.objects, VolumeGroupManager)

    def test_group_type_set_to_LVM_VG(self):
        obj = VolumeGroup()
        self.assertEquals(FILESYSTEM_GROUP_TYPE.LVM_VG, obj.group_type)

    def test_update_block_devices_and_partitions(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node)
            for _ in range(3)
        ]
        new_block_device = factory.make_PhysicalBlockDevice(node=node)
        partition_block_device = factory.make_PhysicalBlockDevice(
            node=node,
            size=(MIN_BLOCK_DEVICE_SIZE * 4) + PARTITION_TABLE_EXTRA_SPACE)
        partition_table = factory.make_PartitionTable(
            block_device=partition_block_device)
        partitions = [
            partition_table.add_partition(size=MIN_BLOCK_DEVICE_SIZE)
            for _ in range(2)
        ]
        new_partition = partition_table.add_partition(
            size=MIN_BLOCK_DEVICE_SIZE)
        initial_bd_filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV, block_device=bd)
            for bd in block_devices
        ]
        initial_part_filesystems = [
            factory.make_Filesystem(
                fstype=FILESYSTEM_TYPE.LVM_PV, partition=part)
            for part in partitions
        ]
        volume_group = factory.make_VolumeGroup(
            filesystems=initial_bd_filesystems + initial_part_filesystems)
        deleted_block_device = block_devices[0]
        updated_block_devices = [new_block_device] + block_devices[1:]
        deleted_partition = partitions[0]
        update_partitions = [new_partition] + partitions[1:]
        volume_group.update_block_devices_and_partitions(
            updated_block_devices, update_partitions)
        self.assertIsNone(deleted_block_device.filesystem)
        self.assertIsNone(deleted_partition.filesystem)
        self.assertEquals(
            volume_group.id,
            new_block_device.filesystem.filesystem_group.id)
        self.assertEquals(
            volume_group.id, new_partition.filesystem.filesystem_group.id)
        for device in block_devices[1:] + partitions[1:]:
            self.assertEquals(
                volume_group.id, device.filesystem.filesystem_group.id)

    def test_create_logical_volume(self):
        volume_group = factory.make_VolumeGroup()
        name = factory.make_name()
        vguuid = "%s" % uuid4()
        size = random.randint(MIN_BLOCK_DEVICE_SIZE, volume_group.get_size())
        logical_volume = volume_group.create_logical_volume(
            name=name, uuid=vguuid, size=size)
        logical_volume = reload_object(logical_volume)
        self.assertThat(logical_volume, MatchesStructure.byEquality(
            name=name,
            uuid=vguuid,
            size=size,
            block_size=volume_group.get_virtual_block_device_block_size(),
            ))


class TestRAID(MAASServerTestCase):

    def test_objects_is_RAIDManager(self):
        self.assertIsInstance(RAID.objects, RAIDManager)

    def test_init_raises_ValueError_if_group_type_not_set_to_raid_type(self):
        self.assertRaises(
            ValueError, RAID, group_type=FILESYSTEM_GROUP_TYPE.LVM_VG)

    def test_create_raid(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        for bd in block_devices[5:]:
            factory.make_PartitionTable(block_device=bd)
        partitions = [
            bd.get_partitiontable().add_partition()
            for bd in block_devices[5:]
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        spare_block_device = block_devices[0]
        spare_partition = partitions[0]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_6,
            uuid=uuid,
            block_devices=block_devices[1:5],
            partitions=partitions[1:],
            spare_devices=[spare_block_device],
            spare_partitions=[spare_partition])
        self.assertEqual('md0', raid.name)
        self.assertEqual(6 * partition_size, raid.get_size())
        self.assertEqual(FILESYSTEM_GROUP_TYPE.RAID_6, raid.group_type)
        self.assertEqual(uuid, raid.uuid)
        self.assertEqual(10, raid.filesystems.count())
        self.assertEqual(8, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID).count())
        self.assertEqual(2, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID_SPARE).count())

    def test_create_raid_0_with_a_spare_fails(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=10 * 1000 ** 4)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 0 must have at least 2 raid "
                    "devices and no spares.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_0,
                uuid=uuid,
                block_devices=block_devices[1:],
                partitions=[],
                spare_devices=block_devices[:1],
                spare_partitions=[])

    def test_create_raid_without_devices_fails(self):
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'At least one filesystem must have been "
                    "added.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_0,
                uuid=uuid,
                block_devices=[],
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_create_raid_0_with_one_element_fails(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 0 must have at least 2 raid "
                    "devices and no spares.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_0,
                uuid=uuid,
                block_devices=[block_device],
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_create_raid_1_with_spares(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        for bd in block_devices[5:]:
            factory.make_PartitionTable(block_device=bd)
        partitions = [
            bd.get_partitiontable().add_partition()
            for bd in block_devices[5:]
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        spare_block_device = block_devices[0]
        spare_partition = partitions[0]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_1,
            uuid=uuid,
            block_devices=block_devices[1:5],
            partitions=partitions[1:],
            spare_devices=[spare_block_device],
            spare_partitions=[spare_partition])
        self.assertEqual('md0', raid.name)
        self.assertEqual(partition_size, raid.get_size())
        self.assertEqual(FILESYSTEM_GROUP_TYPE.RAID_1, raid.group_type)
        self.assertEqual(uuid, raid.uuid)
        self.assertEqual(10, raid.filesystems.count())
        self.assertEqual(8, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID).count())
        self.assertEqual(2, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID_SPARE).count())

    def test_create_raid_1_with_one_element_fails(self):
        node = factory.make_Node()
        block_device = factory.make_PhysicalBlockDevice(node=node)
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 1 must have at least 2 raid "
                    "devices and any number of spares.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_1,
                uuid=uuid,
                block_devices=[block_device],
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_create_raid_5_with_spares(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        for bd in block_devices[5:]:
            factory.make_PartitionTable(block_device=bd)
        partitions = [
            bd.get_partitiontable().add_partition()
            for bd in block_devices[5:]
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        spare_block_device = block_devices[0]
        spare_partition = partitions[0]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices[1:5],
            partitions=partitions[1:],
            spare_devices=[spare_block_device],
            spare_partitions=[spare_partition])
        self.assertEqual('md0', raid.name)
        self.assertEqual(7 * partition_size, raid.get_size())
        self.assertEqual(FILESYSTEM_GROUP_TYPE.RAID_5, raid.group_type)
        self.assertEqual(uuid, raid.uuid)
        self.assertEqual(10, raid.filesystems.count())
        self.assertEqual(8, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID).count())
        self.assertEqual(2, raid.filesystems.filter(
            fstype=FILESYSTEM_TYPE.RAID_SPARE).count())

    def test_create_raid_5_with_2_elements_fails(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=10 * 1000 ** 4)
            for _ in range(2)
        ]
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 5 must have at least 3 raid "
                    "devices and any number of spares.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_5,
                uuid=uuid,
                block_devices=block_devices,
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_create_raid_6_with_3_elements_fails(self):
        node = factory.make_Node()
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node)
            for _ in range(3)
        ]
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'RAID level 6 must have at least 4 raid "
                    "devices and any number of spares.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_6,
                uuid=uuid,
                block_devices=block_devices,
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_create_raid_with_block_device_from_other_node_fails(self):
        node1 = factory.make_Node()
        node2 = factory.make_Node()
        block_devices_1 = [
            factory.make_PhysicalBlockDevice(node=node1)
            for _ in range(5)
        ]
        block_devices_2 = [
            factory.make_PhysicalBlockDevice(node=node2)
            for _ in range(5)
        ]
        uuid = unicode(uuid4())
        with ExpectedException(
                ValidationError,
                re.escape(
                    "{'__all__': [u'All added filesystems must belong to the "
                    "same node.']}")):
            RAID.objects.create_raid(
                name='md0',
                level=FILESYSTEM_GROUP_TYPE.RAID_1,
                uuid=uuid,
                block_devices=block_devices_1 + block_devices_2,
                partitions=[],
                spare_devices=[],
                spare_partitions=[])

    def test_add_device_to_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        device = factory.make_PhysicalBlockDevice(node=node, size=device_size)
        raid.add_device(device, FILESYSTEM_TYPE.RAID)
        self.assertEqual(11, raid.filesystems.count())
        self.assertEqual(10 * device_size, raid.get_size())

    def test_add_spare_device_to_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        device = factory.make_PhysicalBlockDevice(node=node, size=device_size)
        raid.add_device(device, FILESYSTEM_TYPE.RAID_SPARE)
        self.assertEqual(11, raid.filesystems.count())
        self.assertEqual(9 * device_size, raid.get_size())

    def test_add_partition_to_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=node, size=device_size)).add_partition()
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        raid.add_partition(partition, FILESYSTEM_TYPE.RAID)
        self.assertEqual(11, raid.filesystems.count())
        self.assertEqual(10 * partition_size, raid.get_size())

    def test_add_spare_partition_to_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=node, size=device_size)).add_partition()
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        raid.add_partition(partition, FILESYSTEM_TYPE.RAID_SPARE)
        self.assertEqual(11, raid.filesystems.count())
        self.assertEqual(9 * partition_size, raid.get_size())

    def test_add_device_from_another_node_to_array_fails(self):
        node = factory.make_Node()
        other_node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        device = factory.make_PhysicalBlockDevice(
            node=other_node, size=device_size)
        with ExpectedException(
            ValidationError,
            re.escape(
                "[u'Device needs to be from the same node as the rest of the "
                "array.']")):
            raid.add_device(device, FILESYSTEM_TYPE.RAID)
        self.assertEqual(10, raid.filesystems.count())  # Still 10 devices
        self.assertEqual(9 * device_size, raid.get_size())

    def test_add_partition_from_another_node_to_array_fails(self):
        node = factory.make_Node()
        other_node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=other_node, size=device_size)).add_partition()
        with ExpectedException(
                ValidationError,
                re.escape(
                    "[u'Partition must be on a device from the same node as "
                    "the rest of the array.']")):
            raid.add_partition(partition, FILESYSTEM_TYPE.RAID)
        self.assertEqual(10, raid.filesystems.count())  # Nothing added
        self.assertEqual(9 * device_size, raid.get_size())

    def test_add_already_used_device_to_array_fails(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        device = factory.make_PhysicalBlockDevice(node=node, size=device_size)
        Filesystem.objects.create(
            block_device=device, mount_point='/export/home',
            fstype=FILESYSTEM_TYPE.EXT4)
        with ExpectedException(
            ValidationError,
            re.escape(
                "[u'There is another filesystem on this device.']")):
            raid.add_device(device, FILESYSTEM_TYPE.RAID)
        self.assertEqual(10, raid.filesystems.count())  # Nothing added.
        self.assertEqual(9 * device_size, raid.get_size())

    def test_remove_device_from_array_invalidates_array_fails(self):
        """Checks it's not possible to remove a device from an RAID in such way
        as to make the RAID invalid (a 1-device RAID-0/1, a 2-device RAID-5
        etc). The goal is to make sure we trigger the RAID internal validation.
        """
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(4)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_6,
            uuid=uuid,
            block_devices=block_devices)
        fsids_before = [fs.id for fs in raid.filesystems.all()]
        with ExpectedException(
            ValidationError,
            re.escape(
                "{'__all__': [u'RAID level 6 must have at least 4 raid "
                "devices and any number of spares.']}")):
            raid.remove_device(block_devices[0])
        self.assertEqual(4, raid.filesystems.count())
        self.assertEqual(2 * device_size, raid.get_size())
        # Ensure the filesystems are the exact same before and after.
        self.assertItemsEqual(
            fsids_before, [fs.id for fs in raid.filesystems.all()])

    def test_remove_partition_from_array_invalidates_array_fails(self):
        """Checks it's not possible to remove a partition from an RAID in such
        way as to make the RAID invalid (a 1-device RAID-0/1, a 2-device RAID-5
        etc). The goal is to make sure we trigger the RAID internal validation.
        """
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        partitions = [
            factory.make_PartitionTable(
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=device_size)).add_partition()
            for _ in range(4)
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_6,
            uuid=uuid,
            partitions=partitions)
        fsids_before = [fs.id for fs in raid.filesystems.all()]
        with ExpectedException(
            ValidationError,
            re.escape(
                "{'__all__': [u'RAID level 6 must have at least 4 raid "
                "devices and any number of spares.']}")):
            raid.remove_partition(partitions[0])
        self.assertEqual(4, raid.filesystems.count())
        self.assertEqual(2 * partition_size, raid.get_size())
        # Ensure the filesystems are the exact same before and after.
        self.assertItemsEqual(
            fsids_before, [fs.id for fs in raid.filesystems.all()])

    def test_remove_device_from_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices[:-2],
            spare_devices=block_devices[-2:])
        raid.remove_device(block_devices[0])
        self.assertEqual(9, raid.filesystems.count())
        self.assertEqual(6 * device_size, raid.get_size())

    def test_remove_partition_from_array(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        partitions = [
            factory.make_PartitionTable(
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=device_size)).add_partition()
            for _ in range(10)
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            partitions=partitions[:-2],
            spare_partitions=partitions[-2:])
        raid.remove_partition(partitions[0])
        self.assertEqual(9, raid.filesystems.count())
        self.assertEqual(6 * partition_size, raid.get_size())

    def test_remove_invalid_partition_from_array_fails(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        partitions = [
            factory.make_PartitionTable(
                block_device=factory.make_PhysicalBlockDevice(
                    node=node, size=device_size)).add_partition()
            for _ in range(10)
        ]
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = device_size - PARTITION_TABLE_EXTRA_SPACE
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            partitions=partitions)
        with ExpectedException(
            ValidationError,
            re.escape(
                "[u'Partition does not belong to this array.']")):
            raid.remove_partition(
                factory.make_PartitionTable(
                    block_device=factory.make_PhysicalBlockDevice(
                        node=node, size=device_size)).add_partition())
        self.assertEqual(10, raid.filesystems.count())
        self.assertEqual(9 * partition_size, raid.get_size())

    def test_remove_device_from_array_fails(self):
        node = factory.make_Node()
        device_size = 10 * 1000 ** 4
        block_devices = [
            factory.make_PhysicalBlockDevice(node=node, size=device_size)
            for _ in range(10)
        ]
        uuid = unicode(uuid4())
        raid = RAID.objects.create_raid(
            name='md0',
            level=FILESYSTEM_GROUP_TYPE.RAID_5,
            uuid=uuid,
            block_devices=block_devices)
        with ExpectedException(
                ValidationError,
                re.escape("[u'Device does not belong to this array.']")):
            raid.remove_device(
                factory.make_PhysicalBlockDevice(node=node, size=device_size))
        self.assertEqual(10, raid.filesystems.count())
        self.assertEqual(9 * device_size, raid.get_size())


class TestBcache(MAASServerTestCase):

    def test_objects_is_BcacheManager(self):
        self.assertIsInstance(Bcache.objects, BcacheManager)

    def test_group_type_set_to_BCACHE(self):
        obj = Bcache()
        self.assertEquals(FILESYSTEM_GROUP_TYPE.BCACHE, obj.group_type)

    def test_create_bcache_with_physical_block_devices(self):
        """Checks creation of a Bcache with physical block devices for caching
        and backing roles."""
        node = factory.make_Node()
        backing_size = 10 * 1000 ** 4
        cache_size = 1000 ** 4
        cache_device = factory.make_PhysicalBlockDevice(
            node=node, size=cache_size)
        backing_device = factory.make_PhysicalBlockDevice(
            node=node, size=backing_size)
        uuid = unicode(uuid4())
        bcache = Bcache.objects.create_bcache(
            name='bcache0',
            uuid=uuid,
            cache_device=cache_device,
            backing_device=backing_device,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK)

        # Verify the filesystems were properly created on the target devices
        self.assertEqual(backing_size, bcache.get_size())
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_CACHE, cache_device.filesystem.fstype)
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_BACKING, backing_device.filesystem.fstype)
        self.assertEqual(bcache, cache_device.filesystem.filesystem_group)
        self.assertEqual(bcache, backing_device.filesystem.filesystem_group)

    def test_create_bcache_with_virtual_block_devices(self):
        """Checks creation of a Bcache with virtual block devices for caching
        and backing roles."""
        node = factory.make_Node()
        backing_size = 10 * 1000 ** 4
        cache_size = 1000 ** 4
        # A caching device that's ridiculously fast to read from, but slow for
        # writing to it.
        cache_device = RAID.objects.create_raid(
            block_devices=[
                factory.make_PhysicalBlockDevice(node=node, size=cache_size)
                for _ in range(10)],
            level=FILESYSTEM_GROUP_TYPE.RAID_1).virtual_device
        # A ridiculously reliable backing store.
        backing_device = RAID.objects.create_raid(
            block_devices=[
                factory.make_PhysicalBlockDevice(node=node, size=backing_size)
                for _ in range(12)],  # 10 data devices, 2 checksum devices.
            level=FILESYSTEM_GROUP_TYPE.RAID_6).virtual_device

        bcache = Bcache.objects.create_bcache(
            cache_device=cache_device,
            backing_device=backing_device,
            cache_mode=CACHE_MODE_TYPE.WRITEAROUND)

        # Verify the filesystems were properly created on the target devices
        self.assertEqual(10 * backing_size, bcache.get_size())
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_CACHE, cache_device.filesystem.fstype)
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_BACKING, backing_device.filesystem.fstype)
        self.assertEqual(bcache, cache_device.filesystem.filesystem_group)
        self.assertEqual(bcache, backing_device.filesystem.filesystem_group)

    def test_create_bcache_with_partitions(self):
        """Checks creation of a Bcache with partitions for caching and backing
        roles."""
        node = factory.make_Node()
        backing_size = 10 * 1000 ** 4
        cache_size = 1000 ** 4
        cache_partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=node, size=cache_size)).add_partition()
        backing_partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=node, size=backing_size)).add_partition()
        # Partition size will be smaller than the disk, because of overhead.
        partition_size = backing_size - PARTITION_TABLE_EXTRA_SPACE
        uuid = unicode(uuid4())
        bcache = Bcache.objects.create_bcache(
            name='bcache0',
            uuid=uuid,
            cache_partition=cache_partition,
            backing_partition=backing_partition,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK)

        # Verify the filesystems were properly created on the target devices
        self.assertEqual(partition_size, bcache.get_size())
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_CACHE, cache_partition.filesystem.fstype)
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_BACKING,
            backing_partition.filesystem.fstype)
        self.assertEqual(bcache, cache_partition.filesystem.filesystem_group)
        self.assertEqual(bcache, backing_partition.filesystem.filesystem_group)

    def test_create_bcache_with_block_devices_and_partition(self):
        """Checks creation of a Bcache with a partition for caching and a
        physical block device for backing."""
        node = factory.make_Node()
        backing_size = 10 * 1000 ** 4
        cache_size = 1000 ** 4
        cache_partition = factory.make_PartitionTable(
            block_device=factory.make_PhysicalBlockDevice(
                node=node, size=cache_size)).add_partition()
        backing_device = factory.make_PhysicalBlockDevice(
            node=node, size=backing_size)
        uuid = unicode(uuid4())
        bcache = Bcache.objects.create_bcache(
            name='bcache0',
            uuid=uuid,
            cache_partition=cache_partition,
            backing_device=backing_device,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK)

        # Verify the filesystems were properly created on the target devices
        self.assertEqual(backing_size, bcache.get_size())
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_CACHE, cache_partition.filesystem.fstype)
        self.assertEqual(
            FILESYSTEM_TYPE.BCACHE_BACKING, backing_device.filesystem.fstype)
        self.assertEqual(bcache, cache_partition.filesystem.filesystem_group)
        self.assertEqual(bcache, backing_device.filesystem.filesystem_group)

    def test_delete_bcache(self):
        """Ensures deletion of a bcache also deletes bcache filesystems from
        caching and backing devices."""
        node = factory.make_Node()
        backing_size = 10 * 1000 ** 4
        cache_size = 1000 ** 4
        cache_device = factory.make_PhysicalBlockDevice(
            node=node, size=cache_size)
        backing_device = factory.make_PhysicalBlockDevice(
            node=node, size=backing_size)
        bcache = Bcache.objects.create_bcache(
            cache_device=cache_device,
            backing_device=backing_device,
            cache_mode=CACHE_MODE_TYPE.WRITEBACK)

        # Save the IDs (we'll need them below).
        caching_fs_id = cache_device.filesystem.id
        backing_fs_id = backing_device.filesystem.id

        bcache.delete()

        # Verify both filesystems were deleted.
        self.assertIsNone(cache_device.filesystem)
        self.assertIsNone(backing_device.filesystem)

        # Make sure the filesystems were actually deleted from the database.
        self.assertEqual(0, Filesystem.objects.filter(
            id__in=[caching_fs_id, backing_fs_id]).count())