/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library 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 Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.jnode.test.fs.hfsplus.catalog; import org.jnode.fs.hfsplus.HfsUnicodeString; import org.jnode.fs.hfsplus.catalog.CatalogKey; import org.jnode.fs.hfsplus.catalog.CatalogNodeId; import org.junit.Test; import static org.junit.Assert.assertEquals; public class CatalogKeyTest { byte[] KEY_AS_BYTES_ARRAY = new byte[]{0, 24, 0, 0, 0, 7, 0, 8, 0, 116, 0, 101, 0, 115, 0, 116, 0, 46, 0, 116, 0, 120, 0, 116}; String NODE_NAME_AS_STRING = "test.txt"; @Test public void testKeyFromBytesArray() { CatalogKey key = new CatalogKey(KEY_AS_BYTES_ARRAY, 0); assertEquals(NODE_NAME_AS_STRING, key.getNodeName().getUnicodeString()); assertEquals(26, key.getKeyLength()); assertEquals(7, key.getParentId().getId()); } @Test public void testConstructFromCNIDAndString() { CatalogNodeId id = CatalogNodeId.HFSPLUS_START_CNID; HfsUnicodeString string = new HfsUnicodeString(NODE_NAME_AS_STRING); CatalogKey key = new CatalogKey(id, string); assertEquals(NODE_NAME_AS_STRING, key.getNodeName().getUnicodeString()); assertEquals(24, key.getKeyLength()); assertEquals(7, key.getParentId().getId()); } @Test public void testConstructFromCNIDAndEmptyString() { CatalogNodeId id = CatalogNodeId.HFSPLUS_START_CNID; HfsUnicodeString string = new HfsUnicodeString(""); CatalogKey key = new CatalogKey(id, string); assertEquals("", key.getNodeName().getUnicodeString()); assertEquals(8, key.getKeyLength()); assertEquals(7, key.getParentId().getId()); } }