Update Card Cat to 1.7 on the integration tests

This commit is contained in:
Iván Izaguirre
2025-01-01 22:22:17 +01:00
parent 156877e2ab
commit 2df5347e39
2 changed files with 11 additions and 11 deletions

View File

@@ -15,7 +15,7 @@ func testCardDetectedInternal(t *testing.T, model string, card string, slot stri
overrides.set(confRamworks, "none")
overrides.set(slot, card)
overrides.set(confS6, "diskii,disk1=\"<internal>/Card Cat 1.6.dsk\"")
overrides.set(confS6, "diskii,disk1=\"<internal>/Card Cat 1.7.dsk\"")
at, err := makeApple2Tester(model, overrides)
if err != nil {
@@ -33,27 +33,27 @@ func testCardDetectedInternal(t *testing.T, model string, card string, slot stri
func TestCardsDetected(t *testing.T) {
t.Run("test Memory Expansion card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "memexp", "s2", 50_000_000, "2 03-00-05-D0 Apple II Memory Expansion Card (SP)")
testCardDetectedInternal(t, "2enh", "memexp", "s2", 50_000_000, "2 Apple II Memory Expansion Card (SP)")
})
t.Run("test Mouse card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "mouse", "s2", 50_000_000, "2 38-18-01-20 Apple II Mouse Card")
testCardDetectedInternal(t, "2enh", "mouse", "s2", 50_000_000, "2 Apple II Mouse Card")
})
t.Run("test Parallel printer card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "parallel", "s2", 50_000_000, "2 48-48-58-FF Apple Parallel Interface Card")
testCardDetectedInternal(t, "2enh", "parallel", "s2", 50_000_000, "2 Apple Parallel Interface Card")
})
t.Run("test ThunderClock Plus card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "thunderclock", "s2", 50_000_000, "2 FF-05-18-B8 ThunderClock Plus Card")
testCardDetectedInternal(t, "2enh", "thunderclock", "s2", 50_000_000, "2 ThunderClock Plus Card")
})
t.Run("test Z80 Softcard card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "z80softcard", "s2", 50_000_000, "2 :: :: :: :: Z80 Card")
testCardDetectedInternal(t, "2enh", "z80softcard", "s2", 50_000_000, "2 Z80 Card")
})
t.Run("test VidHD card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "vidhd", "s2", 50_000_000, "2 :: :: :: :: No Firmware Card Detected")
testCardDetectedInternal(t, "2enh", "vidhd", "s2", 50_000_000, "2 No Firmware Card Detected")
})
t.Run("test Saturn card", func(t *testing.T) {
@@ -61,19 +61,19 @@ func TestCardsDetected(t *testing.T) {
})
t.Run("test Videx Videoterm card", func(t *testing.T) {
testCardDetectedInternal(t, "2plus", "videx", "s3", 50_000_000, "3 38-18-01-82 Videx 80 Column Text Display Card")
testCardDetectedInternal(t, "2plus", "videx", "s3", 50_000_000, "3 Videx 80 Column Text Display Card")
})
t.Run("test Videx Ultraterm card", func(t *testing.T) {
testCardDetectedInternal(t, "2plus", "videxultraterm", "s3", 50_000_000, "3 38-18-01-87 ? Unknown 80-Column Display Card")
testCardDetectedInternal(t, "2plus", "videxultraterm", "s3", 50_000_000, "3 ? Unknown 80-Column Display Card")
})
t.Run("test Dan 2 SD card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "dan2sd", "s2", 50_000_000, "2 03-3C-01-9D DAN II Card")
testCardDetectedInternal(t, "2enh", "dan2sd", "s2", 50_000_000, "2 DAN II Card")
})
t.Run("test ProDOS ROM Drive card", func(t *testing.T) {
testCardDetectedInternal(t, "2enh", "prodosromdrive", "s2", 50_000_000, "2 03-3C-C9-9B ProDOS ROM Drive Card")
testCardDetectedInternal(t, "2enh", "prodosromdrive", "s2", 50_000_000, "2 ProDOS ROM Drive Card")
})
t.Run("test RAMWorks aux card", func(t *testing.T) {