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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
import pytest
import py.error
from dotfiles.dotfile import Dotfile, unique_suffix
def test_unique_suffix_overlap():
(name, target) = unique_suffix(py.path.local('/foo/baz'),
py.path.local('/foo/bar/bat'))
assert 'baz' == name
assert 'bar/bat' == target
@pytest.mark.xfail(reason='this is a bug')
def test_unique_suffix_no_overlap():
(name, target) = unique_suffix(py.path.local('/a/b/c'),
py.path.local('/d/e/f'))
assert '/a/b/c' == name
assert '/d/e/f' == target
def test_state_error(tmpdir):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.join(".vimrc")
target = repo.join("vimrc")
dotfile = Dotfile(name, target)
assert 'error' == dotfile.state
def test_state_missing(tmpdir):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.join(".vimrc")
target = repo.ensure("vimrc")
dotfile = Dotfile(name, target)
assert 'missing' == dotfile.state
def test_state_conflict(tmpdir):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.ensure(".vimrc")
target = repo.ensure("vimrc")
dotfile = Dotfile(name, target)
assert 'conflict' == dotfile.state
def test_state_ok(tmpdir):
repo = tmpdir.join("Dotfiles", dir=1)
name = tmpdir.join(".vimrc")
target = repo.ensure("vimrc")
dotfile = Dotfile(name, target)
name.mksymlinkto(target)
assert 'ok' == dotfile.state
name.remove()
assert 'missing' == dotfile.state
@pytest.mark.parametrize("times", range(1, 4))
def test_add(tmpdir, times):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.ensure(".vimrc")
target = repo.join("vimrc")
dotfile = Dotfile(name, target)
dotfile.add()
assert target.check(file=1, link=0)
assert name.check(file=1, link=1)
assert name.samefile(target)
for x in range(2, times):
with pytest.raises(OSError):
dotfile.add()
assert target.check(file=1, link=0)
assert name.check(file=1, link=1)
assert name.samefile(target)
@pytest.mark.parametrize("times", range(1, 4))
def test_remove(tmpdir, times):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.join(".vimrc")
target = repo.ensure("vimrc")
name.mksymlinkto(target)
dotfile = Dotfile(name, target)
dotfile.remove()
assert False == target.check()
assert name.check(file=1, link=0)
for x in range(2, times):
with pytest.raises(OSError):
dotfile.remove()
assert False == target.check()
assert name.check(file=1, link=0)
@pytest.mark.parametrize("times", range(1, 4))
def test_sync(tmpdir, times):
repo = tmpdir.ensure("Dotfiles", dir=1)
name = tmpdir.join(".vimrc")
target = repo.ensure("vimrc")
dotfile = Dotfile(name, target)
dotfile.sync()
assert target.check(file=1, link=0)
assert name.check(file=1, link=1)
assert name.samefile(target)
for x in range(2, times):
with pytest.raises(py.error.EEXIST):
dotfile.sync()
assert target.check(file=1, link=0)
assert name.check(file=1, link=1)
assert name.samefile(target)
@pytest.mark.xfail(reason='not implemented yet')
def test_unsync():
raise NotImplementedError
|