/**
   * Validates that isActiveKemId returns false when the KEMID is closed (closed indicator is true).
   */
  public void testIsActiveKemId_False() {
    KEMID kemid = KemIdFixture.CLOSED_KEMID_RECORD.createKemidRecord();
    EndowmentTransactionLine endowmentTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_INCOME
            .createEndowmentTransactionLine(false);

    assertFalse(
        rule.isActiveKemId(
            endowmentTransactionLine, rule.getErrorPrefix(endowmentTransactionLine, -1)));
  }
  /**
   * Validates that validateKemId returns false when the kemid on the transaction line does not
   * exist in the db.
   */
  public void testValidateKemId_False() {
    EndowmentTransactionLine endowmentTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_INCOME
            .createEndowmentTransactionLine(false);
    endowmentTransactionLine.setKemid(EndowTestConstants.INVALID_KEMID);

    assertFalse(
        rule.validateKemId(
            endowmentTransactionLine, rule.getErrorPrefix(endowmentTransactionLine, -1)));
  }
  /**
   * Validates that validateTransactionUnitsGreaterThanZero returns false when transaction units is
   * zero.
   */
  public void testTransactionUnitsPositive_False() {

    EndowmentTransactionLine endowmentTargetTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_ZERO_UNITS
            .createEndowmentTransactionLine(false);

    assertFalse(
        rule.validateTransactionUnitsGreaterThanZero(
            endowmentTargetTransactionLine,
            rule.getErrorPrefix(endowmentTargetTransactionLine, -1)));
  }
  /**
   * Validates that validateTransactionAmountGreaterThanZero returns true when transaction amount is
   * greater than zero.
   */
  public void testTransactionsLineAmountPositive_True() {

    EndowmentTransactionLine endowmentTargetTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_POSITIVE_AMT
            .createEndowmentTransactionLine(false);

    assertTrue(
        rule.validateTransactionAmountGreaterThanZero(
            endowmentTargetTransactionLine,
            rule.getErrorPrefix(endowmentTargetTransactionLine, -1)));
  }
  /**
   * Validates that validateKemId returns true when the kemid on the transaction line exists in the
   * db.
   */
  public void testValidateKemId_True() {

    KEMID kemid = KemIdFixture.OPEN_KEMID_RECORD.createKemidRecord();
    EndowmentTransactionLine endowmentTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_INCOME
            .createEndowmentTransactionLine(false);

    assertTrue(
        rule.validateKemId(
            endowmentTransactionLine, rule.getErrorPrefix(endowmentTransactionLine, -1)));
  }
  /**
   * Validates that canKEMIDHaveAPrincipalTransaction returns false when the transaction line IP
   * indicator is P and the principal restriction code is NA.
   */
  public void testKemidPrincRestrNotNAWhenTransLinePrincipal_False() {
    EndowmentTransactionLine endowmentTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_PRINCIPAL
            .createEndowmentTransactionLine(false);
    KEMID kemid = KemIdFixture.NA_PRINC_RESTR_KEMID_RECORD.createKemidRecord();
    endowmentTransactionLine.setKemid(kemid.getKemid());
    endowmentTransactionLine.setKemidObj(kemid);

    assertFalse(
        rule.canKEMIDHaveAPrincipalTransaction(
            endowmentTransactionLine, rule.getErrorPrefix(endowmentTransactionLine, -1)));
  }
  /**
   * Validates that validateNoTransactionRestriction returns true when the KEMID has a transaction
   * restriction code different from NTRAN.
   */
  public void testTransactionsNotAllowedForNTRANKemid_True() {

    KEMID ntranKemid = KemIdFixture.ALLOW_TRAN_KEMID_RECORD.createKemidRecord();
    EndowmentTargetTransactionLine endowmentTargetTransactionLine =
        new EndowmentTargetTransactionLine();
    endowmentTargetTransactionLine.setKemid(ntranKemid.getKemid());
    endowmentTargetTransactionLine.setKemidObj(ntranKemid);

    assertTrue(
        rule.validateNoTransactionRestriction(
            endowmentTargetTransactionLine,
            rule.getErrorPrefix(endowmentTargetTransactionLine, -1)));
  }
  /**
   * Validates that validateEndowmentTransactionTypeCode returns false when the etran code type is
   * not income or expense.
   */
  public void testEtranCodeIncomeOrExpense_False() {

    EndowmentTransactionLine endowmentTargetTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_POSITIVE_AMT
            .createEndowmentTransactionLine(false);
    EndowmentTransactionCode endowmentTransactionCode =
        EndowmentTransactionCodeFixture.ASSET_TRANSACTION_CODE.createEndowmentTransactionCode();
    endowmentTargetTransactionLine.setEtranCode(endowmentTransactionCode.getCode());
    endowmentTargetTransactionLine.setEtranCodeObj(endowmentTransactionCode);

    assertFalse(
        rule.validateEndowmentTransactionTypeCode(
            document,
            endowmentTargetTransactionLine,
            rule.getErrorPrefix(endowmentTargetTransactionLine, -1)));
  }
  /**
   * Validates that validateChartMatch returns false when etran code gl chart does not match the
   * chart for KEMID general ledger account.
   */
  public void testKemidEtranCodeMatch_False() {
    EndowmentTransactionLine endowmentTargetTransactionLine =
        EndowmentTransactionLineFixture.ENDOWMENT_TRANSACTIONAL_LINE_INCOME
            .createEndowmentTransactionLine(false);
    EndowmentTransactionCode endowmentTransactionCode =
        EndowmentTransactionCodeFixture.INCOME_TRANSACTION_CODE.createEndowmentTransactionCode();
    KEMID kemid = KemIdFixture.OPEN_KEMID_RECORD.createKemidRecord();
    GLLink glLink = GLLinkFixture.GL_LINK_UA_CHART.createGLLink();
    KemidGeneralLedgerAccount generalLedgerAccount =
        KemidGeneralLedgerAccountFixture.KEMID_GL_ACCOUNT.createKemidGeneralLedgerAccount();

    kemid.getKemidGeneralLedgerAccounts().add(generalLedgerAccount);
    endowmentTransactionCode.getGlLinks().add(glLink);
    endowmentTargetTransactionLine.setKemid(kemid.getKemid());
    endowmentTargetTransactionLine.setKemidObj(kemid);
    endowmentTargetTransactionLine.setEtranCode(endowmentTransactionCode.getCode());
    endowmentTargetTransactionLine.setEtranCodeObj(endowmentTransactionCode);

    assertFalse(
        rule.validateChartMatch(
            endowmentTargetTransactionLine,
            rule.getErrorPrefix(endowmentTargetTransactionLine, -1)));
  }