2021-07-02 02:35:26 +00:00
|
|
|
package prodos
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateVolume(t *testing.T) {
|
|
|
|
var tests = []struct {
|
|
|
|
blocks int
|
|
|
|
wantVolumeName string
|
|
|
|
wantFreeBlocks int
|
|
|
|
}{
|
|
|
|
{65535, "MAX", 65513},
|
|
|
|
{65500, "ALMOST.MAX", 65478},
|
|
|
|
{280, "FLOPPY", 273},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
testname := fmt.Sprintf("%d", tt.blocks)
|
|
|
|
t.Run(testname, func(t *testing.T) {
|
2022-01-23 21:58:34 +00:00
|
|
|
file := NewMemoryFile(0x2000000)
|
2021-07-03 12:37:21 +00:00
|
|
|
|
2022-01-23 21:58:34 +00:00
|
|
|
CreateVolume(file, file, tt.wantVolumeName, tt.blocks)
|
2021-07-03 12:37:21 +00:00
|
|
|
|
2021-07-02 02:35:26 +00:00
|
|
|
volumeHeader, _, fileEntries := ReadDirectory(file, "")
|
|
|
|
if volumeHeader.VolumeName != tt.wantVolumeName {
|
|
|
|
t.Errorf("got volume name %s, want %s", volumeHeader.VolumeName, tt.wantVolumeName)
|
|
|
|
}
|
|
|
|
if volumeHeader.TotalBlocks != tt.blocks {
|
|
|
|
t.Errorf("got total blocks %d, want %d", volumeHeader.TotalBlocks, tt.blocks)
|
|
|
|
}
|
|
|
|
if len(fileEntries) > 0 {
|
|
|
|
t.Errorf("got files %d, want 0", len(fileEntries))
|
|
|
|
}
|
|
|
|
|
|
|
|
volumeBitmap := ReadVolumeBitmap(file)
|
2021-07-03 12:37:21 +00:00
|
|
|
freeBlockCount := GetFreeBlockCount(volumeBitmap, tt.blocks)
|
2021-07-02 02:35:26 +00:00
|
|
|
if freeBlockCount != tt.wantFreeBlocks {
|
|
|
|
t.Errorf("got free blocks: %d, want %d", freeBlockCount, tt.wantFreeBlocks)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|