/* * AppleCommander - An Apple ][ image utility. * Copyright (C) 2003-2022 by Robert Greene * robgreene at users.sourceforge.net * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package com.webcodepro.applecommander.util; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import org.junit.Test; import com.webcodepro.applecommander.storage.Disk; import com.webcodepro.applecommander.storage.DiskFullException; import com.webcodepro.applecommander.storage.FileEntry; import com.webcodepro.applecommander.storage.compare.ComparisonResult; import com.webcodepro.applecommander.storage.compare.DiskDiff; import com.webcodepro.applecommander.storage.os.dos33.DosFormatDisk; import com.webcodepro.applecommander.storage.os.prodos.ProdosFormatDisk; import com.webcodepro.applecommander.storage.physical.ByteArrayImageLayout; import com.webcodepro.applecommander.storage.physical.DosOrder; import com.webcodepro.applecommander.storage.physical.NibbleOrder; import com.webcodepro.applecommander.storage.physical.ProdosOrder; /** * Test AppleUtil. */ public class AppleUtilTest { /** * These constants were pulled from Applesoft itself. */ @Test public void testApplesoftFloat() { testApplesoftFloat(1.0, 0x8100000000L); testApplesoftFloat(10.0, 0x8420000000L); testApplesoftFloat(0.5, 0x8000000000L); testApplesoftFloat(-0.5, 0x8080000000L); testApplesoftFloat(0.25, 0x7F00000000L); testApplesoftFloat(-32768.0, 0x9080000000L); testApplesoftFloat(99999999.9, 0x9B3EBC1FFDL); testApplesoftFloat(999999999.0, 0x9E6E6B27FDL); testApplesoftFloat(1000000000.0, 0x9E6E6B2800L); testApplesoftFloat(Math.sqrt(0.5), 0x803504F334L); testApplesoftFloat(Math.sqrt(2.0), 0x813504F334L); testApplesoftFloat(Math.log(2.0), 0x80317217F8L); testApplesoftFloat(Math.PI / 2, 0x81490FDAA2L); testApplesoftFloat(Math.PI * 2, 0x83490FDAA2L); } protected void testApplesoftFloat(double question, long correctAnswer) { byte[] testAnswer = AppleUtil.getApplesoftFloat(question); long answer = testAnswer[0] & 0xff; answer <<= 8; answer |= testAnswer[1] & 0xff; answer <<= 8; answer |= testAnswer[2] & 0xff; answer <<= 8; answer |= testAnswer[3] & 0xff; answer <<= 8; answer |= testAnswer[4] & 0xff; // Allow some variance = +/- 1 (that would be the least-significant bit) if (Math.abs(answer - correctAnswer) > 1) { fail("Numbers should match - " + question); //$NON-NLS-1$ } } @Test public void testChangeDosImageOrder() throws DiskFullException { // Straight DOS disk in standard DOS order DosFormatDisk dosDiskDosOrder = DosFormatDisk.create("dostemp.dsk", //$NON-NLS-1$ new DosOrder(new ByteArrayImageLayout(Disk.APPLE_140KB_DISK)))[0]; FileEntry fileEntry = dosDiskDosOrder.createFile(); fileEntry.setFilename("TESTFILE"); //$NON-NLS-1$ fileEntry.setFiletype("T"); //$NON-NLS-1$ fileEntry.setFileData("This is a test file.".getBytes()); //$NON-NLS-1$ // A duplicate - then we change it to a NIB disk image... DosFormatDisk dosDiskNibbleOrder = DosFormatDisk.create("dostemp2.nib", //$NON-NLS-1$ new NibbleOrder(new ByteArrayImageLayout(Disk.APPLE_140KB_DISK)))[0]; AppleUtil.changeImageOrderByTrackAndSector(dosDiskDosOrder.getImageOrder(), dosDiskNibbleOrder.getImageOrder()); // Confirm that these disks are identical: ComparisonResult result = DiskDiff.create(dosDiskDosOrder, dosDiskDosOrder) .selectCompareByTrackSectorGeometry().compare(); assertEquals("Expected disks to have no differences", 0, result.getDifferenceCount()); } @Test public void testChangeProdosImageOrder() throws DiskFullException { // Straight ProDOS disk in standard ProDOS block order ProdosFormatDisk prodosDiskDosOrder = ProdosFormatDisk.create("prodostemp.po", //$NON-NLS-1$ "prodostemp", //$NON-NLS-1$ new ProdosOrder(new ByteArrayImageLayout(Disk.APPLE_140KB_DISK)))[0]; FileEntry fileEntry = prodosDiskDosOrder.createFile(); fileEntry.setFilename("TESTFILE"); //$NON-NLS-1$ fileEntry.setFiletype("TXT"); //$NON-NLS-1$ fileEntry.setFileData("This is a test file.".getBytes()); //$NON-NLS-1$ // A duplicate - then we change it to a NIB disk image... ProdosFormatDisk prodosDiskNibbleOrder = ProdosFormatDisk.create("prodostemp2.nib", //$NON-NLS-1$ "prodostemp2", //$NON-NLS-1$ new NibbleOrder(new ByteArrayImageLayout(Disk.APPLE_140KB_DISK)))[0]; AppleUtil.changeImageOrderByBlock(prodosDiskDosOrder.getImageOrder(), prodosDiskNibbleOrder.getImageOrder()); // Confirm that these disks are identical: ComparisonResult result = DiskDiff.create(prodosDiskDosOrder, prodosDiskNibbleOrder) .selectCompareByBlockGeometry().compare(); assertEquals("Expected disks to have no differences", 0, result.getDifferenceCount()); } @Test public void testGetHexDump_expectedWidth() { final int expectedWidth = 76; // Setup an array of all byte values byte[] data = new byte[256]; for (int i=0; i assertTrue(Integer.toString(i), i >= ' ')); } } } @Test public void testGetWordValue_beyondEdge() { byte[] data = new byte[] { 0x01, 0x02, 0x03, 0x04 }; assertEquals(0x0201, AppleUtil.getWordValue(data, 0)); assertEquals(0x0302, AppleUtil.getWordValue(data, 1)); assertEquals(0x0403, AppleUtil.getWordValue(data, 2)); assertEquals(0x0000, AppleUtil.getWordValue(data, 3)); assertEquals(0x0000, AppleUtil.getWordValue(data, 4)); } }