55using System . Threading . Tasks ;
66using Eryph . ConfigModel ;
77using Eryph . ConfigModel . Catlets ;
8+ using Eryph . Core ;
89using Eryph . Core . Genetics ;
910using Eryph . Core . VmAgent ;
1011using Eryph . VmManagement . Data . Core ;
@@ -55,6 +56,7 @@ public async Task PlanDriveStorageSettings_MultipleDrives_DrivesHaveCorrectContr
5556 new CatletDriveConfig
5657 {
5758 Type = CatletDriveType . Vhd ,
59+ Store = EryphConstants . DefaultDataStoreName ,
5860 Name = "sda" ,
5961 } ,
6062 new CatletDriveConfig
@@ -65,6 +67,7 @@ public async Task PlanDriveStorageSettings_MultipleDrives_DrivesHaveCorrectContr
6567 new CatletDriveConfig
6668 {
6769 Type = CatletDriveType . Vhd ,
70+ Store = EryphConstants . DefaultDataStoreName ,
6871 Name = "sdb" ,
6972 } ,
7073 new CatletDriveConfig
@@ -132,6 +135,7 @@ public async Task PlanDriveStorageSettings_UsesCorrectExtensionForVhdType(
132135 {
133136 Type = driveType ,
134137 Name = "sda" ,
138+ Store = EryphConstants . DefaultDataStoreName ,
135139 }
136140 ] ,
137141 } ;
@@ -174,6 +178,7 @@ public async Task PlanDriveStorageSettings_NewDiskWithoutConfiguredSizeAndWithPa
174178 {
175179 Type = CatletDriveType . Vhd ,
176180 Name = "sda" ,
181+ Store = EryphConstants . DefaultDataStoreName ,
177182 Source = "gene:testorg/testset/testtag:sda" ,
178183 }
179184 ] ,
@@ -229,6 +234,7 @@ public async Task PlanDriveStorageSettings_NewDiskWithoutConfiguredSizeAndWithou
229234 {
230235 Type = CatletDriveType . Vhd ,
231236 Name = "sda" ,
237+ Store = EryphConstants . DefaultDataStoreName ,
232238 }
233239 ] ,
234240 } ;
@@ -269,6 +275,7 @@ public async Task PlanDriveStorageSettings_NewDiskWithConfiguredSizeAndWithoutPa
269275 {
270276 Type = CatletDriveType . Vhd ,
271277 Name = "sda" ,
278+ Store = EryphConstants . DefaultDataStoreName ,
272279 Size = 42 ,
273280 }
274281 ] ,
@@ -315,6 +322,7 @@ public async Task PlanDriveStorageSettings_NewDiskWithConfiguredSizeAndWithSmall
315322 {
316323 Type = CatletDriveType . Vhd ,
317324 Name = "sda" ,
325+ Store = EryphConstants . DefaultDataStoreName ,
318326 Source = "gene:testorg/testset/testtag:sda" ,
319327 Size = 42 ,
320328 }
@@ -371,6 +379,7 @@ public async Task PlanDriveStorageSettings_NewDiskWithConfiguredSizeAndWithLarge
371379 {
372380 Type = CatletDriveType . Vhd ,
373381 Name = "sda" ,
382+ Store = EryphConstants . DefaultDataStoreName ,
374383 Source = "gene:testorg/testset/testtag:sda" ,
375384 Size = 42 ,
376385 }
@@ -415,6 +424,7 @@ public async Task PlanDriveStorageSettings_ExistingDiskWithConfiguredSizeTooSmal
415424 new CatletDriveConfig
416425 {
417426 Type = CatletDriveType . Vhd ,
427+ Store = EryphConstants . DefaultDataStoreName ,
418428 Name = "sda" ,
419429 Size = 42 ,
420430 }
@@ -449,6 +459,7 @@ public async Task PlanDriveStorageSettings_ExistingDiskWithConfiguredSizeLarger_
449459 {
450460 Type = CatletDriveType . Vhd ,
451461 Name = "sda" ,
462+ Store = EryphConstants . DefaultDataStoreName ,
452463 Size = 42 ,
453464 }
454465 ] ,
0 commit comments