forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_wsbfev1.py
224 lines (191 loc) · 6.2 KB
/
test_wsbfev1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#!/usr/bin/python
# -*- coding: utf8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3, 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 MERCHANTIBILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
"""Test para WSBFEv1"""
__author__ = "Mariano Reingart <reingart@gmail.com>"
__copyright__ = "Copyright (C) 2010-2019 Mariano Reingart"
__license__ = "GPL 3.0"
import os
import sys
from datetime import datetime, timedelta
import pytest
from pyafipws.wsaa import WSAA
from pyafipws.wsbfev1 import WSBFEv1
from pysimplesoap.simplexml import SimpleXMLElement
from builtins import str
__WSDL__ = "http://wswhomo.afip.gov.ar/WSBFEv1/service.asmx"
__obj__ = WSBFEv1()
__service__ = "wsbfe"
CUIT = 20267565393
CERT = "reingart.crt"
PKEY = "reingart.key"
CACERT = "conf/afip_ca_info.crt"
CACHE = ""
# Debido a que Python solicita una opción de diseño, hay una advertencia
# sobre una conexión no cerrada al ejecutar las pruebas.
# https://github.com/kennethreitz/requests/issues/3912
# Esto puede ser molesto al ejecutar las pruebas, por lo tanto,
# suprimir la advertencia como se discute en
# https://github.com/kennethreitz/requests/issues/1882
# obteniendo el TA para pruebas
pytestmark =pytest.mark.vcr
def test_dummy(auth):
"""Test de estado del servidor."""
wsbfev1 = auth
print(wsbfev1.client.help("BFEDummy"))
wsbfev1.Dummy()
print("AppServerStatus", wsbfev1.AppServerStatus)
print("DbServerStatus", wsbfev1.DbServerStatus)
print("AuthServerStatus", wsbfev1.AuthServerStatus)
assert wsbfev1.AppServerStatus == "OK"
assert wsbfev1.DbServerStatus=="OK"
assert wsbfev1.AuthServerStatus== "OK"
def test_crear_factura(auth):
"""Test de creación de una factura (Interna)."""
wsbfev1 =auth
tipo_cbte = 1 # factura "A"
punto_vta = 5
tipo_doc = 80
nro_doc = 20888888883
zona = 1
# Obtengo el último número de comprobante y le agrego 1
cbte_nro = int(wsbfev1.GetLastCMP(tipo_cbte, punto_vta)) + 1
fecha_cbte = datetime.now().strftime("%Y%m%d")
imp_moneda_id = "PES" # (ver tabla de parámetros)
imp_moneda_ctz = 1
imp_neto = "1450.00"
impto_liq = "304.50" # 21% IVA
impto_liq_rni = imp_tot_conc = imp_op_ex = "0.00"
imp_perc = imp_iibb = imp_perc_mun = imp_internos = "0.00"
imp_total = "1754.50"
fecha_venc_pago = None
# Creo una factura (internamente, no se llama al WebService)
fact = wsbfev1.CrearFactura(
tipo_doc,
nro_doc,
zona,
tipo_cbte,
punto_vta,
cbte_nro,
fecha_cbte,
imp_total,
imp_neto,
impto_liq,
imp_tot_conc,
impto_liq_rni,
imp_op_ex,
imp_perc,
imp_iibb,
imp_perc_mun,
imp_internos,
imp_moneda_id,
imp_moneda_ctz,
fecha_venc_pago,
)
assert fact==True
def test_agregar_item(auth):
"""Test Agregar Item."""
wsbfev1 =auth
test_crear_factura(auth)
# Agrego un item:
ncm = "2101.11.10"
sec = ""
umed = 5 # unidades
ds = "Cafe"
qty = "10.00"
precio = "150.00"
bonif = "50.00"
iva_id = 5
imp_total = "1754.50"
item = wsbfev1.AgregarItem(
ncm, sec, ds, qty, umed, precio, bonif, iva_id, imp_total
)
assert item==True
def test_agregar_cbte_asoc(auth):
"""Test agregar comprobante asociado."""
wsbfev1 =auth
test_crear_factura(auth) # 20-21 solo para nc y nd
cbteasoc_tipo = 19
cbteasoc_pto_vta = 40
cbteasoc_nro = 1234
cbteasoc_cuit = 20111111111
cbteasoc_fecha = None
cbteasoc = wsbfev1.AgregarCmpAsoc(
cbteasoc_tipo, cbteasoc_pto_vta, cbteasoc_nro, cbteasoc_cuit, cbteasoc_fecha
)
assert cbteasoc==True
def test_agregar_opcional(auth):
"""Test agregar opcional."""
wsbfev1 =auth
test_agregar_item(auth)
idz = "1010"
ds = "pyafipws"
opcional = wsbfev1.AgregarOpcional(idz, ds)
assert opcional==True
def test_autorizar(auth):
"""Test Autorizar Comprobante."""
wsbfev1 =auth
test_agregar_item(auth)
# test_agregar_cbte_asoc
idx = int(wsbfev1.GetLastID()) + 1
# Llamo al WebService de Autorización para obtener el CAE
wsbfev1.Authorize(idx)
assert (wsbfev1.Resultado== "A")
assert isinstance(wsbfev1.CAE,str)
assert (wsbfev1.CAE)
# ten = datetime.now() + timedelta(days=10)
# assert (wsbfev1.Vencimiento == ten.strftime("%d/%m/%Y"))
def test_consulta(auth):
"""Test para obtener los datos de un comprobante autorizado."""
wsbfev1 = auth
# obtengo el ultimo comprobante:
tipo_cbte = 1
punto_vta = 5
cbte_nro = wsbfev1.GetLastCMP(tipo_cbte, punto_vta)
wsbfev1.GetCMP(tipo_cbte, punto_vta, cbte_nro)
# obtengo datos para comprobar
cae = wsbfev1.CAE
punto_vta = wsbfev1.PuntoVenta
cbte_nro = wsbfev1.CbteNro
imp_total = wsbfev1.ImpTotal
assert wsbfev1.CAE== cae
assert (wsbfev1.CbteNro== cbte_nro)
assert (wsbfev1.ImpTotal== imp_total)
def test_recuperar_numero_comprobante(auth):
"""Test devuelve numero de comprobante."""
wsbfev1 = auth
tipo_cbte = 1
punto_vta = 5
cbte_ejemp = "1234"
cbte_nro = wsbfev1.GetLastCMP(tipo_cbte, punto_vta)
assert len(str(cbte_nro)) == len(cbte_ejemp)
def test_recuperar_ultima_id(auth):
"""Test ultimo Id."""
test_consulta(auth)
wsbfev1 = auth
t = wsbfev1.XmlResponse.decode('utf-8')
idy = str(t[t.find("<Id>")+4:t.find("</Id>")])
idx = str(wsbfev1.GetLastID())
print(idy)
assert idy==idx
def test_parametros(auth):
"""Test Parametros."""
wsbfev1 = auth
# verifico si devuelven datos
assert wsbfev1.GetParamTipoCbte()
assert wsbfev1.GetParamZonas()
assert wsbfev1.GetParamMon()
assert wsbfev1.GetParamTipoDoc()
assert wsbfev1.GetParamTipoIVA()
assert wsbfev1.GetParamUMed()
assert wsbfev1.GetParamNCM()
# no funciona / no existe en el servidor homo wsbfe
# assertIsNotNone(wsbfev1.GetParamCtz('DOL'))