Add test case for new API update
This commit is contained in:
parent
54c23e800f
commit
fdeee58560
24
tests/test_set_28_jpg_invoice_subsidiary.py
Normal file
24
tests/test_set_28_jpg_invoice_subsidiary.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import sys
|
||||||
|
sys.path.append(".")
|
||||||
|
from tests.utils import login, make_sbt_request
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
import deepdiff
|
||||||
|
|
||||||
|
HOST = os.environ.get("IDP_HOST", "XXXXXXXXXXXXXXXXXXXXX")
|
||||||
|
USERNAME = os.environ.get("IDP_USERNAME", "XXXXXXXXXXXXXXXXXXXXX")
|
||||||
|
PASSWORD = os.environ.get("IDP_PASSWORD", "XXXXXXXXXXXXXXXXXXXXX")
|
||||||
|
token = login(HOST, USERNAME, PASSWORD)
|
||||||
|
|
||||||
|
|
||||||
|
def test_invoice_number():
|
||||||
|
invoice_files = ["test_samples/test_27/invoice_no_jpeg.jpeg",]
|
||||||
|
imei_files = [
|
||||||
|
"test_samples/test_27/invoice_no_jpeg.jpeg",
|
||||||
|
]
|
||||||
|
data = make_sbt_request(host=HOST, token=token, invoice_files=invoice_files, imei_files=imei_files, ensure_success=False, sub="SME")
|
||||||
|
document = data["data"]["data"]["document"][0]
|
||||||
|
gt = json.load(open("test_samples/test_27/result.json", "r"))
|
||||||
|
diff = deepdiff.DeepDiff(document, gt)
|
||||||
|
|
||||||
|
assert diff == {}, f"Different result! GT: {gt}; RESULT: {document}"
|
Loading…
Reference in New Issue
Block a user