- Resolves: rhbz#1988383 Do SRV discovery in ipa-getkeytab if -s and -H aren't provided - Resolves: rhbz#1986329 ipa-server install failure without DNS - Resolves: rhbz#1980734 Remove python3-pexpect as dependency for ipatests pkg - Resolves: rhbz#1992538 Backport recent test fixes in python3-ipatests
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From f7997ed0b7d5b915c0184bf8e8864ff935cd6232 Mon Sep 17 00:00:00 2001
 | |
| From: Florence Blanc-Renaud <flo@redhat.com>
 | |
| Date: Fri, 16 Jul 2021 15:21:48 +0200
 | |
| Subject: [PATCH] webui tests: fix algo for finding available idrange
 | |
| 
 | |
| The webui tests for ID range evaluate a potentially free id range
 | |
| by looking for existing ranges and picking a range = max value
 | |
| + 1 million.
 | |
| 
 | |
| With the addition of subuid range this algorithm produces values
 | |
| over the limit because the subuid range goes from
 | |
| 2,147,483,648 to 4,294,836,224 and the max base id is 4,294,967,295.
 | |
| 
 | |
| Ignore the subuid range when picking a potential range.
 | |
| Fixes: https://pagure.io/freeipa/issue/8919
 | |
| Reviewed-By: Rob Crittenden <rcritten@redhat.com>
 | |
| ---
 | |
|  ipatests/test_webui/task_range.py | 6 ++++++
 | |
|  1 file changed, 6 insertions(+)
 | |
| 
 | |
| diff --git a/ipatests/test_webui/task_range.py b/ipatests/test_webui/task_range.py
 | |
| index db34f6f11..f0664d35a 100644
 | |
| --- a/ipatests/test_webui/task_range.py
 | |
| +++ b/ipatests/test_webui/task_range.py
 | |
| @@ -64,6 +64,12 @@ class range_tasks(UI_driver):
 | |
|          max_rid = 0
 | |
|  
 | |
|          for idrange in idranges:
 | |
| +            # IPA.TEST_subid_range is automatically created near the end
 | |
| +            # of the allowed ids, taking from 2,147,483,648 to 4,294,836,224
 | |
| +            # Ignore this range when looking for available ids otherwise
 | |
| +            # we won't find any value < max baseid 4,294,967,295
 | |
| +            if idrange['cn'][0].endswith("_subid_range"):
 | |
| +                continue
 | |
|              size = int(idrange['ipaidrangesize'][0])
 | |
|              base_id = int(idrange['ipabaseid'][0])
 | |
|  
 | |
| -- 
 | |
| 2.31.1
 | |
| 
 |