Fix orphaned objects deletion bug (#15657)
* Fix orphaned objects deletion bug * extend test Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
		
							parent
							
								
									c80d7f33b6
								
							
						
					
					
						commit
						f5eb33c354
					
				
					 2 changed files with 39 additions and 3 deletions
				
			
		|  | @ -296,11 +296,15 @@ func CountOrphanedObjects(subject, refobject, joinCond string) (int64, error) { | ||||||
| 
 | 
 | ||||||
| // DeleteOrphanedObjects delete subjects with have no existing refobject anymore
 | // DeleteOrphanedObjects delete subjects with have no existing refobject anymore
 | ||||||
| func DeleteOrphanedObjects(subject, refobject, joinCond string) error { | func DeleteOrphanedObjects(subject, refobject, joinCond string) error { | ||||||
| 	_, err := x.In("id", builder.Select("`"+subject+"`.id"). | 	subQuery := builder.Select("`"+subject+"`.id"). | ||||||
| 		From("`"+subject+"`"). | 		From("`"+subject+"`"). | ||||||
| 		Join("LEFT", "`"+refobject+"`", joinCond). | 		Join("LEFT", "`"+refobject+"`", joinCond). | ||||||
| 		Where(builder.IsNull{"`" + refobject + "`.id"})). | 		Where(builder.IsNull{"`" + refobject + "`.id"}) | ||||||
| 		Delete("`" + subject + "`") | 	sql, args, err := builder.Delete(builder.In("id", subQuery)).From("`" + subject + "`").ToSQL() | ||||||
|  | 	if err != nil { | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | 	_, err = x.Exec(append([]interface{}{sql}, args...)...) | ||||||
| 	return err | 	return err | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
							
								
								
									
										32
									
								
								models/consistency_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								models/consistency_test.go
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,32 @@ | ||||||
|  | // Copyright 2021 Gitea. All rights reserved.
 | ||||||
|  | // Use of this source code is governed by a MIT-style
 | ||||||
|  | // license that can be found in the LICENSE file.
 | ||||||
|  | 
 | ||||||
|  | package models | ||||||
|  | 
 | ||||||
|  | import ( | ||||||
|  | 	"testing" | ||||||
|  | 
 | ||||||
|  | 	"github.com/stretchr/testify/assert" | ||||||
|  | ) | ||||||
|  | 
 | ||||||
|  | func TestDeleteOrphanedObjects(t *testing.T) { | ||||||
|  | 	assert.NoError(t, PrepareTestDatabase()) | ||||||
|  | 
 | ||||||
|  | 	countBefore, err := x.Count(&PullRequest{}) | ||||||
|  | 	assert.NoError(t, err) | ||||||
|  | 
 | ||||||
|  | 	_, err = x.Insert(&PullRequest{IssueID: 1000}, &PullRequest{IssueID: 1001}, &PullRequest{IssueID: 1003}) | ||||||
|  | 	assert.NoError(t, err) | ||||||
|  | 
 | ||||||
|  | 	orphaned, err := CountOrphanedObjects("pull_request", "issue", "pull_request.issue_id=issue.id") | ||||||
|  | 	assert.NoError(t, err) | ||||||
|  | 	assert.EqualValues(t, 3, orphaned) | ||||||
|  | 
 | ||||||
|  | 	err = DeleteOrphanedObjects("pull_request", "issue", "pull_request.issue_id=issue.id") | ||||||
|  | 	assert.NoError(t, err) | ||||||
|  | 
 | ||||||
|  | 	countAfter, err := x.Count(&PullRequest{}) | ||||||
|  | 	assert.NoError(t, err) | ||||||
|  | 	assert.EqualValues(t, countBefore, countAfter) | ||||||
|  | } | ||||||
		Loading…
	
		Reference in a new issue