Search in sources :

Example 6 with ISOVError

use of org.jpos.iso.ISOVError in project jPOS by jpos.

the class VErrorParserTest method testGetVErrors2.

@SuppressWarnings("unchecked")
@Test
public void testGetVErrors2() throws Throwable {
    VErrorParser vErrorParser = new VErrorParser();
    ISOVError FirstError = new ISOVError("testVErrorParserDescription", "testVErrorParserRejectCode");
    ISOComponent c = new ISOVMsg(new ISOMsg("testVErrorParserMti"), FirstError);
    Vector result = vErrorParser.getVErrors(c);
    assertEquals("result.size()", 1, result.size());
    assertSame("result.get(0)", FirstError, result.get(0));
}
Also used : ISOComponent(org.jpos.iso.ISOComponent) ISOVError(org.jpos.iso.ISOVError) ISOMsg(org.jpos.iso.ISOMsg) ISOVMsg(org.jpos.iso.ISOVMsg) Vector(java.util.Vector) Test(org.junit.Test)

Example 7 with ISOVError

use of org.jpos.iso.ISOVError in project jPOS by jpos.

the class VErrorParserTest method testGetVErrors8.

@SuppressWarnings("unchecked")
@Test
public void testGetVErrors8() throws Throwable {
    VErrorParser vErrorParser = new VErrorParser();
    ISOVError FirstError = new ISOVError("testVErrorParserDescription");
    ISOComponent c = new ISOVMsg(new ISOMsg(), FirstError);
    Vector result = vErrorParser.getVErrors(c);
    assertEquals("result.size()", 1, result.size());
    assertSame("result.get(0)", FirstError, result.get(0));
}
Also used : ISOComponent(org.jpos.iso.ISOComponent) ISOVError(org.jpos.iso.ISOVError) ISOMsg(org.jpos.iso.ISOMsg) ISOVMsg(org.jpos.iso.ISOVMsg) Vector(java.util.Vector) Test(org.junit.Test)

Example 8 with ISOVError

use of org.jpos.iso.ISOVError in project jPOS by jpos.

the class VErrorParserTest method testGetVErrors6.

@SuppressWarnings("unchecked")
@Test
public void testGetVErrors6() throws Throwable {
    VErrorParser vErrorParser = new VErrorParser();
    ISOMsg Source = new ISOVMsg(new ISOMsg(), new ISOVError("testVErrorParserDescription"));
    Source.set(100, "testVErrorParserValue");
    Vector result = vErrorParser.getVErrors(new ISOVMsg(Source));
    assertEquals("result.size()", 0, result.size());
}
Also used : ISOVError(org.jpos.iso.ISOVError) ISOMsg(org.jpos.iso.ISOMsg) ISOVMsg(org.jpos.iso.ISOVMsg) Vector(java.util.Vector) Test(org.junit.Test)

Example 9 with ISOVError

use of org.jpos.iso.ISOVError in project jPOS by jpos.

the class ISOBaseValidatingPackagerTest method testValidateThrowsNullPointerException3.

@Test
public void testValidateThrowsNullPointerException3() throws Throwable {
    ISOVError FirstError = new ISOVError("testISOBaseValidatingPackagerDescription", "testISOBaseValidatingPackagerRejectCode");
    ISOBaseValidator[] msgVlds = new ISOBaseValidator[1];
    msgVlds[0] = new MSGTEST02();
    ISOBaseValidatingPackager iSOBaseValidatingPackager = new ISOBaseValidatingPackager();
    iSOBaseValidatingPackager.setMsgValidator(msgVlds);
    ISOComponent m = new ISOVMsg(new ISOMsg(), FirstError);
    ISOValidator[] fvlds = new ISOValidator[0];
    iSOBaseValidatingPackager.setFieldValidator(fvlds);
    try {
        iSOBaseValidatingPackager.validate(m);
        fail("Expected NullPointerException to be thrown");
    } catch (NullPointerException ex) {
        assertNull("ex.getMessage()", ex.getMessage());
    }
}
Also used : ISOComponent(org.jpos.iso.ISOComponent) ISOVError(org.jpos.iso.ISOVError) ISOMsg(org.jpos.iso.ISOMsg) ISOValidator(org.jpos.iso.ISOValidator) ISOBaseValidator(org.jpos.iso.ISOBaseValidator) ISOVMsg(org.jpos.iso.ISOVMsg) MSGTEST02(org.jpos.iso.validator.MSGTEST02) Test(org.junit.Test)

Aggregations

ISOVError (org.jpos.iso.ISOVError)9 Test (org.junit.Test)9 ISOMsg (org.jpos.iso.ISOMsg)7 ISOVMsg (org.jpos.iso.ISOVMsg)7 ISOComponent (org.jpos.iso.ISOComponent)5 Vector (java.util.Vector)4 ISOBaseValidator (org.jpos.iso.ISOBaseValidator)2 ISOField (org.jpos.iso.ISOField)2 ISOVField (org.jpos.iso.ISOVField)2 MSGTEST02 (org.jpos.iso.validator.MSGTEST02)2 ISOFieldValidator (org.jpos.iso.ISOFieldValidator)1 ISOValidator (org.jpos.iso.ISOValidator)1 IVA_ALPHANUM (org.jpos.iso.IVA_ALPHANUM)1