コード例 #1
0
 def test_already_exists(self, mock_hook):
     mock_hook.return_value.create_product_set.side_effect = AlreadyExists(message='')
     # Exception AlreadyExists not raised, caught in the operator's execute() - idempotence
     op = CloudVisionCreateProductSetOperator(
         location=LOCATION_TEST,
         product_set=PRODUCTSET_TEST,
         product_set_id=PRODUCTSET_ID_TEST,
         project_id='mock-project-id',
         task_id='id',
     )
     result = op.execute(None)
     self.assertEqual(PRODUCTSET_ID_TEST, result)
コード例 #2
0
 def test_minimal_green_path(self, mock_hook):
     mock_hook.return_value.create_product_set.return_value = {}
     op = CloudVisionCreateProductSetOperator(location=LOCATION_TEST,
                                              product_set=PRODUCTSET_TEST,
                                              task_id='id')
     op.execute(context=None)
     mock_hook.assert_called_once_with(gcp_conn_id=GCP_CONN_ID)
     mock_hook.return_value.create_product_set.assert_called_once_with(
         location=LOCATION_TEST,
         product_set=PRODUCTSET_TEST,
         product_set_id=None,
         project_id=None,
         retry=None,
         timeout=None,
         metadata=None,
     )
コード例 #3
0
ファイル: example_vision.py プロジェクト: yulei-li/airflow
# [START howto_operator_vision_detect_image_param]
DETECT_IMAGE = {"source": {"image_uri": GCP_VISION_ANNOTATE_IMAGE_URL}}
# [END howto_operator_vision_detect_image_param]

with models.DAG('example_gcp_vision_autogenerated_id',
                schedule_interval='@once',
                start_date=days_ago(1)) as dag_autogenerated_id:
    # ################################## #
    # ### Autogenerated IDs examples ### #
    # ################################## #

    # [START howto_operator_vision_product_set_create]
    product_set_create = CloudVisionCreateProductSetOperator(
        location=GCP_VISION_LOCATION,
        product_set=product_set,
        retry=Retry(maximum=10.0),
        timeout=5,
        task_id='product_set_create',
    )
    # [END howto_operator_vision_product_set_create]

    product_set_create_output = product_set_create.output

    # [START howto_operator_vision_product_set_get]
    product_set_get = CloudVisionGetProductSetOperator(
        location=GCP_VISION_LOCATION,
        product_set_id=product_set_create_output,
        task_id='product_set_get',
    )
    # [END howto_operator_vision_product_set_get]