mirror of
				https://gitcode.com/gitea/gitea.git
				synced 2025-10-26 13:16:28 +08:00 
			
		
		
		
	 e81ccc406b
			
		
	
	e81ccc406b
	
	
	
		
			
			Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2022 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| //go:build !windows
 | |
| 
 | |
| package util
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestApplyUmask(t *testing.T) {
 | |
| 	f, err := os.CreateTemp(t.TempDir(), "test-filemode-")
 | |
| 	assert.NoError(t, err)
 | |
| 
 | |
| 	err = os.Chmod(f.Name(), 0o777)
 | |
| 	assert.NoError(t, err)
 | |
| 	st, err := os.Stat(f.Name())
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 0o777, st.Mode().Perm()&0o777)
 | |
| 
 | |
| 	oldDefaultUmask := defaultUmask
 | |
| 	defaultUmask = 0o037
 | |
| 	defer func() {
 | |
| 		defaultUmask = oldDefaultUmask
 | |
| 	}()
 | |
| 	err = ApplyUmask(f.Name(), os.ModePerm)
 | |
| 	assert.NoError(t, err)
 | |
| 	st, err = os.Stat(f.Name())
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 0o740, st.Mode().Perm()&0o777)
 | |
| }
 |