|
| 1 | +# Copyright 2021 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | + |
| 16 | +import test_constants as constants |
| 17 | +import create_and_import_dataset_video_sample |
| 18 | + |
| 19 | +from google.cloud.aiplatform import schema |
| 20 | + |
| 21 | + |
| 22 | +def test_create_and_import_dataset_video_sample( |
| 23 | + mock_sdk_init, mock_create_video_dataset |
| 24 | +): |
| 25 | + |
| 26 | + create_and_import_dataset_video_sample.create_and_import_dataset_video_sample( |
| 27 | + project=constants.PROJECT, |
| 28 | + location=constants.LOCATION, |
| 29 | + src_uris=constants.GCS_SOURCES, |
| 30 | + display_name=constants.DISPLAY_NAME, |
| 31 | + ) |
| 32 | + |
| 33 | + mock_sdk_init.assert_called_once_with( |
| 34 | + project=constants.PROJECT, location=constants.LOCATION |
| 35 | + ) |
| 36 | + mock_create_video_dataset.assert_called_once_with( |
| 37 | + display_name=constants.DISPLAY_NAME, |
| 38 | + gcs_source=constants.GCS_SOURCES, |
| 39 | + import_schema_uri=schema.dataset.ioformat.video.classification, |
| 40 | + sync=True, |
| 41 | + ) |
0 commit comments