Ejemplo n.º 1
0
 @Test
 public void deveObterPisstComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoPISST pisst = FabricaDeObjetosFake.getNFNotaInfoItemImpostoPISST();
   imposto.setPisst(pisst);
   Assert.assertEquals(pisst, imposto.getPisst());
 }
 @Test
 public void deveGerarXMLDeAcordoComOPadraoEstabelecido() {
   final String xmlEsperado =
       "<NFNotaInfoItemImpostoPISAliquota><CST>01</CST><vBC>999999999999.99</vBC><pPIS>99.99</pPIS><vPIS>999999999999.99</vPIS></NFNotaInfoItemImpostoPISAliquota>";
   Assert.assertEquals(
       xmlEsperado, FabricaDeObjetosFake.getNFNotaInfoItemImpostoPISAliquota().toString());
 }
Ejemplo n.º 3
0
 @Test
 public void deveObterIpiComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoIPI impostoIPI = FabricaDeObjetosFake.getNFNotaInfoItemImpostoIPI();
   imposto.setIpi(impostoIPI);
   Assert.assertEquals(impostoIPI, imposto.getIpi());
 }
Ejemplo n.º 4
0
 @Test
 public void deveObterIssqnComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoISSQN issqn = FabricaDeObjetosFake.getNFNotaInfoItemImpostoISSQN();
   imposto.setIssqn(issqn);
   Assert.assertEquals(issqn, imposto.getIssqn());
 }
Ejemplo n.º 5
0
 @Test
 public void deveObterIcmsUfDestinoComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoICMSUFDestino icmsUfDestino =
       FabricaDeObjetosFake.getNFNotaaInfoItemImpostoICMSUFDestino();
   imposto.setIcmsUfDestino(icmsUfDestino);
   Assert.assertEquals(icmsUfDestino, imposto.getIcmsUfDestino());
 }
Ejemplo n.º 6
0
 @Test
 public void deveObterImpostoImportacaoComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoImportacao notaInfoItemImpostoImportacao =
       FabricaDeObjetosFake.getNFNotaInfoItemImpostoImportacao();
   imposto.setImpostoImportacao(notaInfoItemImpostoImportacao);
   Assert.assertEquals(notaInfoItemImpostoImportacao, imposto.getImpostoImportacao());
 }
Ejemplo n.º 7
0
 @Test
 public void deveObterIcmsComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoICMS notaInfoItemImpostoICMS =
       FabricaDeObjetosFake.getNFNotaInfoItemImpostoICMS();
   imposto.setIcms(notaInfoItemImpostoICMS);
   Assert.assertEquals(notaInfoItemImpostoICMS, imposto.getIcms());
 }
Ejemplo n.º 8
0
 @Test
 public void deveObterCofinsstComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoCOFINSST notaInfoItemImpostoCOFINSST =
       FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINSST();
   imposto.setCofinsst(notaInfoItemImpostoCOFINSST);
   Assert.assertEquals(notaInfoItemImpostoCOFINSST, imposto.getCofinsst());
 }
Ejemplo n.º 9
0
 @Test
 public void deveObterNFNotaInfoItemImpostoCOFINSComoFoiSetado() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   final NFNotaInfoItemImpostoCOFINS notaInfoItemImpostoCOFINS =
       FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINS();
   imposto.setCofins(notaInfoItemImpostoCOFINS);
   Assert.assertEquals(notaInfoItemImpostoCOFINS, imposto.getCofins());
 }
Ejemplo n.º 10
0
 @Test
 public void devePermitirValorTotalTributosNulo() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   imposto.setCofins(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINS());
   imposto.setCofinsst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINSST());
   imposto.setIcms(FabricaDeObjetosFake.getNFNotaInfoItemImpostoICMS());
   imposto.setImpostoImportacao(FabricaDeObjetosFake.getNFNotaInfoItemImpostoImportacao());
   imposto.setIpi(FabricaDeObjetosFake.getNFNotaInfoItemImpostoIPI());
   imposto.setPis(FabricaDeObjetosFake.getNFNotaInfoItemImpostoPIS());
   imposto.setPisst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoPISST());
   imposto.setIcmsUfDestino(FabricaDeObjetosFake.getNFNotaaInfoItemImpostoICMSUFDestino());
   imposto.toString();
 }
Ejemplo n.º 11
0
  @Test
  public void naoDevePermitirSetarISSQNCasoICMSouIPIouIICasoEstejamSetados() {
    final NFNotaInfoItemImposto imposto1 = new NFNotaInfoItemImposto();
    imposto1.setIcms(FabricaDeObjetosFake.getNFNotaInfoItemImpostoICMS());

    try {
      imposto1.setIssqn(FabricaDeObjetosFake.getNFNotaInfoItemImpostoISSQN());
    } catch (final IllegalStateException e) {
    }
    final NFNotaInfoItemImposto imposto2 = new NFNotaInfoItemImposto();
    imposto2.setIpi(FabricaDeObjetosFake.getNFNotaInfoItemImpostoIPI());

    try {
      imposto2.setIssqn(FabricaDeObjetosFake.getNFNotaInfoItemImpostoISSQN());
    } catch (final IllegalStateException e) {
    }

    final NFNotaInfoItemImposto imposto3 = new NFNotaInfoItemImposto();
    imposto3.setImpostoImportacao(FabricaDeObjetosFake.getNFNotaInfoItemImpostoImportacao());

    try {
      imposto3.setIssqn(FabricaDeObjetosFake.getNFNotaInfoItemImpostoISSQN());
    } catch (final IllegalStateException e) {
    }
  }
Ejemplo n.º 12
0
 @Test(expected = IllegalStateException.class)
 public void naoDevePermitirPisNulo() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   imposto.setCofins(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINS());
   imposto.setCofinsst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINSST());
   imposto.setIcms(FabricaDeObjetosFake.getNFNotaInfoItemImpostoICMS());
   imposto.setImpostoImportacao(FabricaDeObjetosFake.getNFNotaInfoItemImpostoImportacao());
   imposto.setIpi(FabricaDeObjetosFake.getNFNotaInfoItemImpostoIPI());
   imposto.setPisst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoPISST());
   imposto.setValorTotalTributos(new BigDecimal("999999999999.99"));
   imposto.setIcmsUfDestino(FabricaDeObjetosFake.getNFNotaaInfoItemImpostoICMSUFDestino());
   imposto.toString();
 }
 @Test
 public void devePermitirIssqnNulo() {
   final NFNotaInfoItemImposto imposto = new NFNotaInfoItemImposto();
   imposto.setCofins(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINS());
   imposto.setCofinsst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoCOFINSST());
   imposto.setIcms(FabricaDeObjetosFake.getNFNotaInfoItemImpostoICMS());
   imposto.setImpostoImportacao(FabricaDeObjetosFake.getNFNotaInfoItemImpostoImportacao());
   imposto.setIpi(FabricaDeObjetosFake.getNFNotaInfoItemImpostoIPI());
   imposto.setPis(FabricaDeObjetosFake.getNFNotaInfoItemImpostoPIS());
   imposto.setPisst(FabricaDeObjetosFake.getNFNotaInfoItemImpostoPISST());
   imposto.setValorTotalTributos(new BigDecimal("999999999999.99"));
   imposto.toString();
 }
Ejemplo n.º 14
0
 @Test
 public void deveGerarXMLDeAcordoComOPadraoEstabelecido() {
   final String xmlEsperado =
       "<NFNotaInfoItemImposto><vTotTrib>999999999999.99</vTotTrib><ICMS><ICMS00><orig>0</orig><CST>00</CST><modBC>1</modBC><vBC>999999999999.99</vBC><pICMS>99.99</pICMS><vICMS>999999999999.99</vICMS></ICMS00></ICMS><IPI><clEnq>157br</clEnq><CNPJProd>12345678901234</CNPJProd><cSelo>iNEFifS1jexTxcCvgjlQ186nR6JAwM2koyjbWKA1DJSLmZy432GoSwoygXc5</cSelo><qSelo>999999999999</qSelo><cEnq>aT2</cEnq><IPITrib><CST>49</CST><vBC>999999999999.99</vBC><pIPI>99.99</pIPI><vIPI>999999999999.99</vIPI></IPITrib></IPI><II><vBC>999999999999.99</vBC><vDespAdu>999999999999.99</vDespAdu><vII>999999999999.99</vII><vIOF>999999999999.99</vIOF></II><PIS><PISAliq><CST>01</CST><vBC>999999999999.99</vBC><pPIS>99.99</pPIS><vPIS>999999999999.99</vPIS></PISAliq></PIS><PISST><qBCProd>99999999999.9999</qBCProd><vAliqProd>9999999999.9999</vAliqProd><vPIS>999999999999.99</vPIS></PISST><COFINS><COFINSAliq><CST>01</CST><vBC>999999999999.99</vBC><pCOFINS>99.99</pCOFINS><vCOFINS>999999999999.99</vCOFINS></COFINSAliq></COFINS><COFINSST><vBC>999999999999.99</vBC><pCOFINS>99.99</pCOFINS><vCOFINS>999999999999.00</vCOFINS></COFINSST><ICMSUFDest><vBCUFDest>9999999999999.99</vBCUFDest><pFCPUFDest>999.9999</pFCPUFDest><pICMSUFDest>999.9999</pICMSUFDest><pICMSInter>7.00</pICMSInter><pICMSInterPart>999.9999</pICMSInterPart><vFCPUFDest>9999999999999.99</vFCPUFDest><vICMSUFDest>9999999999999.99</vICMSUFDest><vICMSUFRemet>9999999999999.99</vICMSUFRemet></ICMSUFDest></NFNotaInfoItemImposto>";
   Assert.assertEquals(xmlEsperado, FabricaDeObjetosFake.getNFNotaInfoItemImposto().toString());
 }
Ejemplo n.º 15
0
 @Test
 public void deveGerarXMLDeAcordoComOPadraoEstabelecido() {
   final String xmlEsperado =
       "<NFNotaInfoLocal><CNPJ>12345678901234</CNPJ><xLgr>t59le7pl2eVn390y026Ebgh3HXtvEBzsMp4BzZJEwIazezToxeeKJCvm1GoG</xLgr><nro>YHTewrLNvzYaBmSbwxkDYcEZTCMORFVPAc6t6C5p0Bfu1globey70KWnaHHa</nro><xCpl>ifyKIg3j3eZtlNVAj3XJYZiJCrul6VLL85E7x6Kx6DVeChwlRLEkCQn7k5pe</xCpl><xBairro>JE17uXBNBnYTSTSQgqXcGLOR6f22SnahtFHr5MoHQZtZhTowVe3SVwl57kil</xBairro><cMun>9999999</cMun><xMun>OpXKhaHINo7OwLkVGvRq43HNwyBAgXTKcarl6Jsq8NzOBs70eZM4zL6fELOI</xMun><UF>RS</UF></NFNotaInfoLocal>";
   Assert.assertEquals(xmlEsperado, FabricaDeObjetosFake.getNFNotaInfoLocal().toString());
 }