/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2017 jPOS Software SRL
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.jpos.iso;
import junit.framework.TestCase;
/**
* @author joconnor
* @author apr
*/
public class IFE_AMOUNTTest extends TestCase
{
public void testPack() throws Exception
{
ISOField field = new ISOField(12, "D123");
IFE_AMOUNT packager = new IFE_AMOUNT(6, "Should be C4F0F0F1F2F3");
TestUtils.assertEquals(
ISOUtil.hex2byte ("C4F0F0F1F2F3"),
packager.pack(field));
}
public void testUnpack() throws Exception
{
byte[] raw = new byte[]{ 68, 48, 48, 49, 50, 51};
IFE_AMOUNT packager = new IFE_AMOUNT(6, "Should be C4F0F0F1F2F3");
ISOField field = new ISOField();
packager.unpack(field, ISOUtil.hex2byte ("C4F0F0F1F2F3"), 0);
assertEquals("D00123", (String) field.getValue());
}
public void testReversability() throws Exception
{
String origin = "D0000123";
ISOField f = new ISOField(12, origin);
IFE_AMOUNT packager = new IFE_AMOUNT(8, "Should be C4F0F0F1F2F3");
ISOField unpack = new ISOField();
packager.unpack(unpack, packager.pack(f), 0);
assertEquals(origin, (String) unpack.getValue());
}
}