|
| 1 | +# Copyright 2024 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 | +from feature_store import create_feature_view_from_bq_source_with_embedding_management |
| 16 | +import test_constants as constants |
| 17 | + |
| 18 | + |
| 19 | +def test_create_feature_view_from_bq_source_with_embedding_management( |
| 20 | + mock_sdk_init, |
| 21 | + mock_get_feature_online_store, |
| 22 | +): |
| 23 | + create_feature_view_from_bq_source_with_embedding_management.create_feature_view_from_bq_source_with_embedding_management( |
| 24 | + project=constants.PROJECT, |
| 25 | + location=constants.LOCATION, |
| 26 | + existing_feature_online_store_id=constants.FEATURE_ONLINE_STORE_ID, |
| 27 | + feature_view_id=constants.FEATURE_VIEW_ID, |
| 28 | + bq_table_uri=constants.FEATURE_VIEW_BQ_URI, |
| 29 | + entity_id_columns=constants.FEATURE_VIEW_BQ_ENTITY_ID_COLUMNS, |
| 30 | + embedding_column=constants.FEATURE_VIEW_BQ_EMBEDDING_COLUMN, |
| 31 | + embedding_dimensions=constants.FEATURE_VIEW_BQ_EMBEDDING_DIMENSIONS, |
| 32 | + ) |
| 33 | + |
| 34 | + mock_sdk_init.assert_called_once_with( |
| 35 | + project=constants.PROJECT, location=constants.LOCATION |
| 36 | + ) |
| 37 | + |
| 38 | + mock_get_feature_online_store.assert_called_once() |
| 39 | + mock_get_feature_online_store.return_value.create_feature_view.assert_called_once_with( |
| 40 | + name=constants.FEATURE_VIEW_ID, |
| 41 | + source=constants.FEATURE_VIEW_BQ_SOURCE, |
| 42 | + index_config=constants.FEATURE_VIEW_BQ_INDEX_CONFIG, |
| 43 | + ) |
0 commit comments