/
githubmirror
/
syncthing
Обзор
Документация
Войти
/
githubmirror
/
syncthing
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/model/sharedpullerstate_test.go
36 строк
788 B
Jakob Borg
feat: switch logging framework (#10220)
07 авг 2025, 12:19
Не верифицирован
07 авг 2025, 12:19
836045e
Код
Авторство
О чём код?
// 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" ) // 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", } fd, err := s.tempFile() if err != nil { t.Fatal(err) } if fd == nil { t.Fatal("Unexpected nil fd") } s.fail(nil) s.finalClose() }