-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tests from the diskfs.go global comment section and update them as they are slightly out of date.
- Loading branch information
Showing
3 changed files
with
125 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
issues: | ||
exclude-files: | ||
- "example_test\\.go$" | ||
linters-settings: | ||
errcheck: | ||
check-type-assertions: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
package diskfs_test | ||
|
||
import ( | ||
"crypto/rand" | ||
"os" | ||
|
||
diskfs "github.com/diskfs/go-diskfs" | ||
"github.com/diskfs/go-diskfs/disk" | ||
"github.com/diskfs/go-diskfs/filesystem" | ||
"github.com/diskfs/go-diskfs/partition/gpt" | ||
"github.com/diskfs/go-diskfs/partition/mbr" | ||
) | ||
|
||
// Create a disk image of size 10MB with a FAT32 filesystem spanning the entire disk. | ||
func ExampleCreate_fat32() { | ||
|
||
var size int64 | ||
size = 10 * 1024 * 1024 // 10 MB | ||
|
||
diskImg := "/tmp/disk.img" | ||
defer os.Remove(diskImg) | ||
theDisk, _ := diskfs.Create(diskImg, size, diskfs.SectorSizeDefault) | ||
|
||
fs, err := theDisk.CreateFilesystem(disk.FilesystemSpec{ | ||
Partition: 0, | ||
FSType: filesystem.TypeFat32, | ||
}) | ||
} | ||
|
||
// Create a disk of size 20MB with an MBR partition table, a single partition beginning at block 2048 (1MB), | ||
// of size 10MB filled with a FAT32 filesystem. | ||
func ExampleCreate_mbr() { | ||
var size int64 | ||
size = 20 * 1024 * 1024 // 20 MB | ||
|
||
diskImg := "/tmp/disk.img" | ||
theDisk, _ := diskfs.Create(diskImg, size, diskfs.SectorSizeDefault) | ||
|
||
table := &mbr.Table{ | ||
LogicalSectorSize: 512, | ||
PhysicalSectorSize: 512, | ||
Partitions: []*mbr.Partition{ | ||
{ | ||
Bootable: false, | ||
Type: mbr.Linux, | ||
Start: 2048, | ||
Size: 20480, | ||
}, | ||
}, | ||
} | ||
|
||
theDisk.Partition(table) | ||
|
||
fs, err := theDisk.CreateFilesystem(disk.FilesystemSpec{ | ||
Partition: 1, | ||
FSType: filesystem.TypeFat32, | ||
}) | ||
} | ||
|
||
// Create a disk of size 20MB with a GPT partition table, a single partition beginning at block 2048 (1MB), of size 10MB, and fill with the contents from the 10MB file "/root/contents.dat" | ||
func ExampleCreate_gpt() { | ||
var size int64 | ||
size = 20 * 1024 * 1024 // 20 MB | ||
|
||
diskImg := "/tmp/disk.img" | ||
defer os.Remove(diskImg) | ||
theDisk, _ := diskfs.Create(diskImg, size, diskfs.Raw, diskfs.SectorSizeDefault) | ||
|
||
table := &gpt.Table{ | ||
LogicalSectorSize: 512, | ||
PhysicalSectorSize: 512, | ||
ProtectiveMBR: true, | ||
Partitions: []*gpt.Partition{ | ||
{ | ||
//FIXME: what should I put here? Start and Size were missing in the original example | ||
}, | ||
}, | ||
} | ||
|
||
theDisk.Partition(table) | ||
|
||
f, err := os.Open("/root/contents.dat") | ||
written, err := theDisk.WritePartitionContents(1, f) | ||
} | ||
|
||
// Create a disk of size 20MB with an MBR partition table, a single partition beginning at block 2048 (1MB), | ||
// of size 10MB filled with a FAT32 filesystem, and create some directories and files in that filesystem. | ||
func ExampleCreate_fat32WithDirsAndFiles() { | ||
var size int64 | ||
size = 20 * 1024 * 1024 // 20 MB | ||
|
||
diskImg := "/tmp/disk.img" | ||
defer os.Remove(diskImg) | ||
theDisk, _ := diskfs.Create(diskImg, size, diskfs.Raw, diskfs.SectorSizeDefault) | ||
|
||
table := &mbr.Table{ | ||
LogicalSectorSize: 512, | ||
PhysicalSectorSize: 512, | ||
Partitions: []*mbr.Partition{ | ||
{ | ||
Bootable: false, | ||
Type: mbr.Linux, | ||
Start: 2048, | ||
Size: 20480, | ||
}, | ||
}, | ||
} | ||
|
||
theDisk.Partition(table) | ||
|
||
fs, err := theDisk.CreateFilesystem(disk.FilesystemSpec{ | ||
Partition: 1, | ||
FSType: filesystem.TypeFat32, | ||
}) | ||
|
||
err = fs.Mkdir("/FOO/BAR") | ||
|
||
rw, err := fs.OpenFile("/FOO/BAR/AFILE.EXE", os.O_CREATE|os.O_RDWR) | ||
b := make([]byte, 1024, 1024) | ||
rand.Read(b) | ||
written, err := rw.Write(b) | ||
} |