@@ -1346,31 +1346,31 @@ var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *TestContext
1346
1346
1347
1347
By ("creating first unrelated snapshot" )
1348
1348
// Create volume source and afterwards the first unrelated snapshot.
1349
- volReq := MakeCreateVolumeReq (sc , "listSnapshots-volume-unrelated1" )
1349
+ volReq := MakeCreateVolumeReq (sc , "listSnapshots-snapshot-id- volume-unrelated1" )
1350
1350
volumeUnrelated1 , err := c .CreateVolume (context .Background (), volReq )
1351
1351
Expect (err ).NotTo (HaveOccurred ())
1352
1352
1353
- snapshotReq := MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-unrelated1" , volumeUnrelated1 .GetVolume ().GetVolumeId ())
1353
+ snapshotReq := MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-id-snapshot- unrelated1" , volumeUnrelated1 .GetVolume ().GetVolumeId ())
1354
1354
snapshotUnrelated1 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1355
1355
Expect (err ).NotTo (HaveOccurred ())
1356
1356
1357
1357
By ("creating target snapshot" )
1358
1358
// Create volume source and afterwards the target snapshot.
1359
- volReq = MakeCreateVolumeReq (sc , "listSnapshots-volume-target" )
1359
+ volReq = MakeCreateVolumeReq (sc , "listSnapshots-snapshot-id- volume-target" )
1360
1360
volumeTarget , err := c .CreateVolume (context .Background (), volReq )
1361
1361
Expect (err ).NotTo (HaveOccurred ())
1362
1362
1363
- snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-target" , volumeTarget .GetVolume ().GetVolumeId ())
1363
+ snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-id-snapshot- target" , volumeTarget .GetVolume ().GetVolumeId ())
1364
1364
snapshotTarget , err := c .CreateSnapshot (context .Background (), snapshotReq )
1365
1365
Expect (err ).NotTo (HaveOccurred ())
1366
1366
1367
1367
By ("creating second unrelated snapshot" )
1368
1368
// Create volume source and afterwards the second unrelated snapshot.
1369
- volReq = MakeCreateVolumeReq (sc , "listSnapshots-volume-unrelated2" )
1369
+ volReq = MakeCreateVolumeReq (sc , "listSnapshots-snapshot-id- volume-unrelated2" )
1370
1370
volumeUnrelated2 , err := c .CreateVolume (context .Background (), volReq )
1371
1371
Expect (err ).NotTo (HaveOccurred ())
1372
1372
1373
- snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-unrelated2" , volumeUnrelated2 .GetVolume ().GetVolumeId ())
1373
+ snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-id-snapshot- unrelated2" , volumeUnrelated2 .GetVolume ().GetVolumeId ())
1374
1374
snapshotUnrelated2 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1375
1375
Expect (err ).NotTo (HaveOccurred ())
1376
1376
@@ -1425,25 +1425,25 @@ var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *TestContext
1425
1425
1426
1426
By ("creating first unrelated snapshot" )
1427
1427
// Create volume source and afterwards the first unrelated snapshot.
1428
- volReq := MakeCreateVolumeReq (sc , "listSnapshots-volume-unrelated1" )
1428
+ volReq := MakeCreateVolumeReq (sc , "listSnapshots-src-vol-id- volume-unrelated1" )
1429
1429
volumeUnrelated1 , err := c .CreateVolume (context .Background (), volReq )
1430
1430
Expect (err ).NotTo (HaveOccurred ())
1431
1431
1432
- snapshotReq := MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-unrelated1" , volumeUnrelated1 .GetVolume ().GetVolumeId ())
1432
+ snapshotReq := MakeCreateSnapshotReq (sc , "listSnapshots-src-vol-id- snapshot-unrelated1" , volumeUnrelated1 .GetVolume ().GetVolumeId ())
1433
1433
snapshotUnrelated1 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1434
1434
Expect (err ).NotTo (HaveOccurred ())
1435
1435
1436
1436
By ("creating target snapshots" )
1437
1437
// Create volume source and afterwards the two target snapshots.
1438
- volReq = MakeCreateVolumeReq (sc , "listSnapshots-volume-target" )
1438
+ volReq = MakeCreateVolumeReq (sc , "listSnapshots-src-vol-id- volume-target" )
1439
1439
volumeTarget , err := c .CreateVolume (context .Background (), volReq )
1440
1440
Expect (err ).NotTo (HaveOccurred ())
1441
1441
1442
- snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-target1" , volumeTarget .GetVolume ().GetVolumeId ())
1442
+ snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-src-vol-id- snapshot-target1" , volumeTarget .GetVolume ().GetVolumeId ())
1443
1443
snapshotTarget1 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1444
1444
Expect (err ).NotTo (HaveOccurred ())
1445
1445
1446
- snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-target2" , volumeTarget .GetVolume ().GetVolumeId ())
1446
+ snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-src-vol-id- snapshot-target2" , volumeTarget .GetVolume ().GetVolumeId ())
1447
1447
snapshotTarget2 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1448
1448
Expect (err ).NotTo (HaveOccurred ())
1449
1449
@@ -1454,11 +1454,11 @@ var _ = DescribeSanity("ListSnapshots [Controller Server]", func(sc *TestContext
1454
1454
1455
1455
By ("creating second unrelated snapshot" )
1456
1456
// Create volume source and afterwards the second unrelated snapshot.
1457
- volReq = MakeCreateVolumeReq (sc , "listSnapshots-volume-unrelated2" )
1457
+ volReq = MakeCreateVolumeReq (sc , "listSnapshots-src-vol-id- volume-unrelated2" )
1458
1458
volumeUnrelated2 , err := c .CreateVolume (context .Background (), volReq )
1459
1459
Expect (err ).NotTo (HaveOccurred ())
1460
1460
1461
- snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-snapshot-unrelated2" , volumeUnrelated2 .GetVolume ().GetVolumeId ())
1461
+ snapshotReq = MakeCreateSnapshotReq (sc , "listSnapshots-src-vol-id- snapshot-unrelated2" , volumeUnrelated2 .GetVolume ().GetVolumeId ())
1462
1462
snapshotUnrelated2 , err := c .CreateSnapshot (context .Background (), snapshotReq )
1463
1463
Expect (err ).NotTo (HaveOccurred ())
1464
1464
0 commit comments