2022-02-21 15:13:36 +00:00
import json
2023-11-30 15:55:51 +00:00
2022-02-17 19:00:48 +00:00
import moto . server as server
2024-01-07 12:03:33 +00:00
from moto import mock_aws
2022-02-17 19:00:48 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2022-02-21 15:13:36 +00:00
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 " : {
" S3Object " : { " Bucket " : " bucket " , " Name " : " name " , " Version " : " version " }
}
}
resp = test_client . post ( " / " , headers = headers , json = request_body )
data = json . loads ( resp . data . decode ( " utf-8 " ) )
2023-07-09 17:01:29 +00:00
assert resp . status_code == 200
assert isinstance ( data [ " JobId " ] , str )
2022-02-21 15:13:36 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2023-12-30 14:24:42 +00:00
def test_detect_document_text ( ) :
backend = server . create_backend_app ( " textract " )
test_client = backend . test_client ( )
headers = { " X-Amz-Target " : " X-Amz-Target=Textract.DetectDocumentText " }
request_body = {
" DocumentLocation " : {
" S3Object " : { " Bucket " : " bucket " , " Name " : " name " , " Version " : " version " }
}
}
resp = test_client . post ( " / " , headers = headers , json = request_body )
data = json . loads ( resp . data . decode ( " utf-8 " ) )
assert resp . status_code == 200
assert isinstance ( data [ " Blocks " ] , list )
2024-01-07 12:03:33 +00:00
@mock_aws
2022-02-21 15:13:36 +00:00
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 " ) )
2023-07-09 17:01:29 +00:00
assert resp . status_code == 400
assert data [ " __type " ] == " InvalidParameterException "
assert (
data [ " message " ]
== " 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. "
2022-02-21 15:13:36 +00:00
)
2024-01-07 12:03:33 +00:00
@mock_aws
2022-02-21 15:13:36 +00:00
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 " : {
" S3Object " : { " Bucket " : " bucket " , " Name " : " name " , " Version " : " version " }
}
}
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 )
2023-07-09 17:01:29 +00:00
assert resp . status_code == 200
2022-02-21 15:13:36 +00:00
data = json . loads ( resp . data . decode ( " utf-8 " ) )
2023-07-09 17:01:29 +00:00
assert data [ " JobStatus " ] == " SUCCEEDED "
2022-02-21 15:13:36 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2022-02-21 15:13:36 +00:00
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 )
2023-07-09 17:01:29 +00:00
assert resp . status_code == 400
2022-02-21 15:13:36 +00:00
data = json . loads ( resp . data . decode ( " utf-8 " ) )
2023-07-09 17:01:29 +00:00
assert data [ " __type " ] == " InvalidJobIdException "
assert data [ " message " ] == " An invalid job identifier was passed. "