moto/tests/test_textract/test_server.py

81 lines
2.9 KiB
Python
Raw Normal View History

2022-02-17 19:00:48 +00:00
"""Test different server responses."""
import sure # noqa # pylint: disable=unused-import
2022-02-21 15:13:36 +00:00
import json
2022-02-17 19:00:48 +00:00
import moto.server as server
2022-02-21 15:13:36 +00:00
from moto import mock_textract
2022-02-17 19:00:48 +00:00
2022-02-21 15:13:36 +00:00
@mock_textract
def test_textract_start_text_detection():
2022-02-17 19:00:48 +00:00
backend = server.create_backend_app("textract")
test_client = backend.test_client()
2022-02-21 15:13:36 +00:00
headers = {"X-Amz-Target": "X-Amz-Target=Textract.StartDocumentTextDetection"}
request_body = {
"DocumentLocation": {
2022-03-10 14:39:59 +00:00
"S3Object": {"Bucket": "bucket", "Name": "name", "Version": "version"}
2022-02-21 15:13:36 +00:00
}
}
resp = test_client.post("/", headers=headers, json=request_body)
data = json.loads(resp.data.decode("utf-8"))
2022-02-17 19:00:48 +00:00
resp.status_code.should.equal(200)
2022-02-21 15:13:36 +00:00
data["JobId"].should.be.an(str)
@mock_textract
def test_textract_start_text_detection_without_document_location():
backend = server.create_backend_app("textract")
test_client = backend.test_client()
headers = {"X-Amz-Target": "X-Amz-Target=Textract.StartDocumentTextDetection"}
resp = test_client.post("/", headers=headers, json={})
data = json.loads(resp.data.decode("utf-8"))
resp.status_code.should.equal(400)
data["__type"].should.equal("InvalidParameterException")
data["message"].should.equal(
"An input parameter violated a constraint. For example, in synchronous operations, an InvalidParameterException exception occurs when neither of the S3Object or Bytes values are supplied in the Document request parameter. Validate your parameter before calling the API operation again."
)
@mock_textract
def test_textract_get_text_detection():
backend = server.create_backend_app("textract")
test_client = backend.test_client()
headers = {"X-Amz-Target": "X-Amz-Target=Textract.StartDocumentTextDetection"}
request_body = {
"DocumentLocation": {
2022-03-10 14:39:59 +00:00
"S3Object": {"Bucket": "bucket", "Name": "name", "Version": "version"}
2022-02-21 15:13:36 +00:00
}
}
resp = test_client.post("/", headers=headers, json=request_body)
start_job_data = json.loads(resp.data.decode("utf-8"))
headers = {"X-Amz-Target": "X-Amz-Target=Textract.GetDocumentTextDetection"}
request_body = {
"JobId": start_job_data["JobId"],
}
resp = test_client.post("/", headers=headers, json=request_body)
resp.status_code.should.equal(200)
data = json.loads(resp.data.decode("utf-8"))
data["JobStatus"].should.equal("SUCCEEDED")
@mock_textract
def test_textract_get_text_detection_without_job_id():
backend = server.create_backend_app("textract")
test_client = backend.test_client()
headers = {"X-Amz-Target": "X-Amz-Target=Textract.GetDocumentTextDetection"}
request_body = {
"JobId": "invalid_job_id",
}
resp = test_client.post("/", headers=headers, json=request_body)
resp.status_code.should.equal(400)
data = json.loads(resp.data.decode("utf-8"))
data["__type"].should.equal("InvalidJobIdException")
data["message"].should.equal("An invalid job identifier was passed.")