2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-09-27 12:44:15 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
2014-10-25 23:54:50 +00:00
|
|
|
import (
|
2019-02-12 15:04:04 +00:00
|
|
|
"os"
|
2014-10-25 23:54:50 +00:00
|
|
|
"testing"
|
2015-04-22 22:54:31 +00:00
|
|
|
|
2017-08-19 14:36:56 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2014-10-25 23:54:50 +00:00
|
|
|
)
|
2014-09-27 12:44:15 +00:00
|
|
|
|
2014-10-25 23:54:50 +00:00
|
|
|
// Test creating temporary file inside read-only directory
|
|
|
|
func TestReadOnlyDir(t *testing.T) {
|
2014-11-20 22:27:49 +00:00
|
|
|
// Create a read only directory, clean it up afterwards.
|
2019-02-12 15:04:04 +00:00
|
|
|
tmpDir := createTmpDir()
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
if err := os.Chmod(tmpDir, 0555); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.Chmod(tmpDir, 0755)
|
2014-11-20 22:27:49 +00:00
|
|
|
|
2014-10-25 23:54:50 +00:00
|
|
|
s := sharedPullerState{
|
2019-02-12 15:04:04 +00:00
|
|
|
fs: fs.NewFilesystem(fs.FilesystemTypeBasic, tmpDir),
|
|
|
|
tempName: ".temp_name",
|
2016-04-15 10:59:41 +00:00
|
|
|
mut: sync.NewRWMutex(),
|
2014-10-25 23:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd, err := s.tempFile()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if fd == nil {
|
|
|
|
t.Fatal("Unexpected nil fd")
|
|
|
|
}
|
|
|
|
|
2019-03-04 13:01:52 +00:00
|
|
|
s.fail(nil)
|
2015-04-16 20:18:17 +00:00
|
|
|
s.finalClose()
|
2014-10-25 23:54:50 +00:00
|
|
|
}
|