/* * Copyright 2011 Red Hat, Inc. and/or its affiliates. * * This 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 software 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.infinispan.util; import org.testng.annotations.Test; import static org.testng.AssertJUnit.assertEquals; /** * Test utility methods * * @author Galder ZamarreƱo * @since 5.1 */ @Test(groups = "functional", testName = "util.UtilTest") public class UtilTest { public void testToHexString() { byte[] sample1 = { -36, -4, 27, 111, 3, 49, 118, -49, 55, 74, 25, 12, 57, -96, 17, -119, -30, -113, 98, -42, -52, 49, 74, 93, 44, -94, 39, -71, -54, 37, 108, -102, -113, 82, 73, -88, 103, 88, -44, -49, -58, 127, -93, 83, 32, 124, 18, 83, 35, -116, -38, 43, -26, -87, 20, -82, -29, 36, -20, 50, 97, -18, -30, 80}; assertEquals("dcfc1b6f033176cf374a190c39a01189e28f62d6cc314a5d2ca227b9ca" + "256c9a8f5249a86758d4cfc67fa353207c1253238cda2be6a914aee324ec3261eee250", Util.toHexString(sample1)); byte[] sample2 = { -36, -4, 27, 111, 3, 49, 118 }; assertEquals("dcfc1b6f033176", Util.toHexString(sample2, 8)); byte[] sample3 = { -36, -4, 27, 111, 3, 49, 118, -49 }; assertEquals("dcfc1b6f033176cf", Util.toHexString(sample3, 8)); byte[] sample4 = { -36, -4, 27, 111, 3, 49, 118, -49, 55}; assertEquals("dcfc1b6f033176cf", Util.toHexString(sample4, 8)); } }