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,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-09-27 12:44:15 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
2014-10-25 23:54:50 +00:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
2015-04-22 22:54:31 +00:00
|
|
|
|
|
|
|
"github.com/syncthing/syncthing/internal/sync"
|
2014-10-25 23:54:50 +00:00
|
|
|
)
|
2014-09-27 12:44:15 +00:00
|
|
|
|
|
|
|
func TestSourceFileOK(t *testing.T) {
|
|
|
|
s := sharedPullerState{
|
|
|
|
realName: "testdata/foo",
|
2015-04-22 22:54:31 +00:00
|
|
|
mut: sync.NewMutex(),
|
2014-09-27 12:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd, err := s.sourceFile()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if fd == nil {
|
|
|
|
t.Fatal("Unexpected nil fd")
|
|
|
|
}
|
|
|
|
|
|
|
|
bs := make([]byte, 6)
|
|
|
|
n, err := fd.Read(bs)
|
|
|
|
|
|
|
|
if n != len(bs) {
|
2014-11-12 11:32:25 +00:00
|
|
|
t.Fatalf("Wrong read length %d != %d", n, len(bs))
|
2014-09-27 12:44:15 +00:00
|
|
|
}
|
|
|
|
if string(bs) != "foobar" {
|
2014-11-12 11:32:25 +00:00
|
|
|
t.Fatalf("Wrong contents %s != foobar", string(bs))
|
2014-09-27 12:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.failed(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSourceFileBad(t *testing.T) {
|
|
|
|
s := sharedPullerState{
|
|
|
|
realName: "nonexistent",
|
2015-04-22 22:54:31 +00:00
|
|
|
mut: sync.NewMutex(),
|
2014-09-27 12:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd, err := s.sourceFile()
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Unexpected nil error")
|
|
|
|
}
|
|
|
|
if fd != nil {
|
|
|
|
t.Fatal("Unexpected non-nil fd")
|
|
|
|
}
|
|
|
|
if err := s.failed(); err == nil {
|
|
|
|
t.Fatal("Unexpected nil failed()")
|
|
|
|
}
|
|
|
|
}
|
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.
|
|
|
|
os.Mkdir("testdata/read_only_dir", 0555)
|
|
|
|
defer func() {
|
|
|
|
os.Chmod("testdata/read_only_dir", 0755)
|
|
|
|
os.RemoveAll("testdata/read_only_dir")
|
|
|
|
}()
|
|
|
|
|
2014-10-25 23:54:50 +00:00
|
|
|
s := sharedPullerState{
|
|
|
|
tempName: "testdata/read_only_dir/.temp_name",
|
2015-04-22 22:54:31 +00:00
|
|
|
mut: sync.NewMutex(),
|
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")
|
|
|
|
}
|
|
|
|
|
2015-01-07 23:12:12 +00:00
|
|
|
s.fail("Test done", nil)
|
2015-04-16 20:18:17 +00:00
|
|
|
s.finalClose()
|
2014-10-25 23:54:50 +00:00
|
|
|
}
|