2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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-08 23:52:18 -07:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-09-27 05:44:15 -07:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
2014-10-25 16:54:50 -07:00
|
|
|
import (
|
|
|
|
"testing"
|
2015-04-22 15:54:31 -07:00
|
|
|
|
2017-08-19 07:36:56 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2015-08-06 02:29:25 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2014-10-25 16:54:50 -07:00
|
|
|
)
|
2014-09-27 05:44:15 -07:00
|
|
|
|
2014-10-25 16:54:50 -07:00
|
|
|
// Test creating temporary file inside read-only directory
|
|
|
|
func TestReadOnlyDir(t *testing.T) {
|
2019-01-11 05:56:05 -07:00
|
|
|
testOs := &fatalOs{t}
|
|
|
|
|
2014-11-20 15:27:49 -07:00
|
|
|
// Create a read only directory, clean it up afterwards.
|
2019-01-11 05:56:05 -07:00
|
|
|
testOs.Mkdir("testdata/read_only_dir", 0555)
|
2014-11-20 15:27:49 -07:00
|
|
|
defer func() {
|
2019-01-11 05:56:05 -07:00
|
|
|
testOs.Chmod("testdata/read_only_dir", 0755)
|
|
|
|
testOs.RemoveAll("testdata/read_only_dir")
|
2014-11-20 15:27:49 -07:00
|
|
|
}()
|
|
|
|
|
2014-10-25 16:54:50 -07:00
|
|
|
s := sharedPullerState{
|
2017-08-19 07:36:56 -07:00
|
|
|
fs: fs.NewFilesystem(fs.FilesystemTypeBasic, "testdata"),
|
|
|
|
tempName: "read_only_dir/.temp_name",
|
2016-04-15 03:59:41 -07:00
|
|
|
mut: sync.NewRWMutex(),
|
2014-10-25 16:54:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fd, err := s.tempFile()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if fd == nil {
|
|
|
|
t.Fatal("Unexpected nil fd")
|
|
|
|
}
|
|
|
|
|
2015-01-07 16:12:12 -07:00
|
|
|
s.fail("Test done", nil)
|
2015-04-16 13:18:17 -07:00
|
|
|
s.finalClose()
|
2014-10-25 16:54:50 -07:00
|
|
|
}
|