mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
1103a27337
This fixes various test issues with Go 1.20. - Most tests rewritten to use fakefs where possible - Some tests that were already skipped, or dubious (invasive, unmaintainable, unclear what they even tested) have been removed - Some actual code rewritten to better support testing in fakefs Co-authored-by: Eric P <eric@kastelo.net>
39 lines
862 B
Go
39 lines
862 B
Go
// Copyright (C) 2014 The Syncthing Authors.
|
|
//
|
|
// 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,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package model
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
|
"github.com/syncthing/syncthing/lib/rand"
|
|
"github.com/syncthing/syncthing/lib/sync"
|
|
)
|
|
|
|
// Test creating temporary file inside read-only directory
|
|
func TestReadOnlyDir(t *testing.T) {
|
|
ffs := fs.NewFilesystem(fs.FilesystemTypeFake, rand.String(32))
|
|
ffs.Mkdir("testdir", 0o555)
|
|
|
|
s := sharedPullerState{
|
|
fs: ffs,
|
|
tempName: "testdir/.temp_name",
|
|
mut: sync.NewRWMutex(),
|
|
}
|
|
|
|
fd, err := s.tempFile()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if fd == nil {
|
|
t.Fatal("Unexpected nil fd")
|
|
}
|
|
|
|
s.fail(nil)
|
|
s.finalClose()
|
|
}
|