mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	[backport/v1.9] Fix reading git notes from nested trees (#8189)
* Fix reading notes from nested trees The GIT documentation for notes states "Permitted pathnames have the form ab/cd/ef/.../abcdef...: a sequence of directory names of two hexadecimal digits each followed by a filename with the rest of the object ID." * Add test case * Fix new lines
This commit is contained in:
		
				
					committed by
					
						 techknowlogick
						techknowlogick
					
				
			
			
				
	
			
			
			
						parent
						
							91ea086ebe
						
					
				
				
					commit
					6883c007d3
				
			| @@ -22,3 +22,17 @@ func TestGetNotes(t *testing.T) { | ||||
| 	assert.Equal(t, []byte("Note contents\n"), note.Message) | ||||
| 	assert.Equal(t, "Vladimir Panteleev", note.Commit.Author.Name) | ||||
| } | ||||
|  | ||||
| func TestGetNestedNotes(t *testing.T) { | ||||
| 	repoPath := filepath.Join(testReposDir, "repo3_notes") | ||||
| 	repo, err := OpenRepository(repoPath) | ||||
| 	assert.NoError(t, err) | ||||
|  | ||||
| 	note := Note{} | ||||
| 	err = GetNote(repo, "3e668dbfac39cbc80a9ff9c61eb565d944453ba4", ¬e) | ||||
| 	assert.NoError(t, err) | ||||
| 	assert.Equal(t, []byte("Note 2"), note.Message) | ||||
| 	err = GetNote(repo, "ba0a96fa63532d6c5087ecef070b0250ed72fa47", ¬e) | ||||
| 	assert.NoError(t, err) | ||||
| 	assert.Equal(t, []byte("Note 1"), note.Message) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user