|
| 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_optimized_public_feature_online_store_sample |
| 16 | +import test_constants as constants |
| 17 | + |
| 18 | + |
| 19 | +def test_create_optimized_feature_online_store_sample( |
| 20 | + mock_sdk_init, mock_create_optimized_public_online_store |
| 21 | +): |
| 22 | + |
| 23 | + create_optimized_public_feature_online_store_sample.create_optimized_public_feature_online_store_sample( |
| 24 | + project=constants.PROJECT, |
| 25 | + location=constants.LOCATION, |
| 26 | + feature_online_store_id=constants.FEATURE_ONLINE_STORE_ID, |
| 27 | + ) |
| 28 | + |
| 29 | + mock_sdk_init.assert_called_once_with( |
| 30 | + project=constants.PROJECT, location=constants.LOCATION |
| 31 | + ) |
| 32 | + |
| 33 | + mock_create_optimized_public_online_store.assert_called_once_with( |
| 34 | + constants.FEATURE_ONLINE_STORE_ID |
| 35 | + ) |
0 commit comments