mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-10-31 10:39:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| #  Copyright 2025 Collate
 | |
| #  Licensed under the Collate Community License, Version 1.0 (the "License");
 | |
| #  you may not use this file except in compliance with the License.
 | |
| #  You may obtain a copy of the License at
 | |
| #  https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
 | |
| #  Unless required by applicable law or agreed to in writing, software
 | |
| #  distributed under the License is distributed on an "AS IS" BASIS,
 | |
| #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| #  See the License for the specific language governing permissions and
 | |
| #  limitations under the License.
 | |
| 
 | |
| """test time utils"""
 | |
| 
 | |
| from datetime import datetime
 | |
| from unittest import mock
 | |
| from unittest.mock import patch
 | |
| 
 | |
| from metadata.utils.time_utils import (
 | |
|     get_beginning_of_day_timestamp_mill,
 | |
|     get_end_of_day_timestamp_mill,
 | |
| )
 | |
| 
 | |
| NOW_UTC = datetime(2022, 11, 15, 10, 30, 45, 776132)
 | |
| 
 | |
| 
 | |
| @patch("metadata.utils.time_utils.datetime", wraps=datetime)
 | |
| def test_get_beginning_of_day_timestamp_mill(mock_dt):
 | |
|     mock_dt.now = mock.Mock(return_value=NOW_UTC)
 | |
|     assert get_beginning_of_day_timestamp_mill() == 1668470400000
 | |
| 
 | |
| 
 | |
| @patch("metadata.utils.time_utils.datetime", wraps=datetime)
 | |
| def test_get_end_of_day_timestamp_mill(mock_dt):
 | |
|     mock_dt.now.return_value = NOW_UTC
 | |
|     assert get_end_of_day_timestamp_mill() == 1668556799999
 | 
