File: watcher_readdcw_test.go

package info (click to toggle)
golang-github-syncthing-notify 0.0~git20180806.b76b458-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 440 kB
  • sloc: makefile: 3
file content (67 lines) | stat: -rw-r--r-- 1,729 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (c) 2014-2015 The Notify Authors. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.

// +build windows

package notify

import "testing"

// TODO(ppknap) : remove notify.Create event.
func rcreate(w *W, path string) WCase {
	cas := create(w, path)
	cas.Events = append(cas.Events,
		&Call{P: path, E: FileActionAdded},
	)
	return cas
}

// TODO(ppknap) : remove notify.Remove event.
func rremove(w *W, path string) WCase {
	cas := remove(w, path)
	cas.Events = append(cas.Events,
		&Call{P: path, E: FileActionRemoved},
	)
	return cas
}

// TODO(ppknap) : remove notify.Rename event.
func rrename(w *W, oldpath, newpath string) WCase {
	cas := rename(w, oldpath, newpath)
	cas.Events = append(cas.Events,
		&Call{P: oldpath, E: FileActionRenamedOldName},
		&Call{P: newpath, E: FileActionRenamedNewName},
	)
	return cas
}

// TODO(ppknap) : remove notify.Write event.
func rwrite(w *W, path string, p []byte) WCase {
	cas := write(w, path, p)
	cas.Events = append(cas.Events,
		&Call{P: path, E: FileActionModified},
	)
	return cas
}

var events = []Event{
	FileNotifyChangeFileName,
	FileNotifyChangeDirName,
	FileNotifyChangeSize,
}

func TestWatcherReadDirectoryChangesW(t *testing.T) {
	w := NewWatcherTest(t, "testdata/vfs.txt", events...)
	defer w.Close()

	cases := [...]WCase{
		rcreate(w, "src/github.com/rjeczalik/fs/fs_windows.go"),
		rcreate(w, "src/github.com/rjeczalik/fs/subdir/"),
		rremove(w, "src/github.com/rjeczalik/fs/fs.go"),
		rrename(w, "src/github.com/rjeczalik/fs/LICENSE", "src/github.com/rjeczalik/fs/COPYLEFT"),
		rwrite(w, "src/github.com/rjeczalik/fs/cmd/gotree/go.go", []byte("XD")),
	}

	w.ExpectAny(cases[:])
}