-
Notifications
You must be signed in to change notification settings - Fork 0
/
touchfile_test.go
159 lines (131 loc) · 3.77 KB
/
touchfile_test.go
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package touchfile
import (
"context"
"os"
"testing"
"time"
)
func TestNewTouchFile(t *testing.T) {
tf, err := NewTouchFile("")
defer os.Remove(tf.path)
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
if tf == nil {
t.Fatal("TouchFile should not be nil")
}
path := tf.Path()
if path == "" {
t.Error("TouchFile path should not be empty")
}
if _, err := os.Stat(path); os.IsNotExist(err) {
t.Error("TouchFile path should exist")
}
}
func TestNewTouchFileWithSpecificPath(t *testing.T) {
tmpFile, err := os.CreateTemp("", "touchfile-test-temp-")
if err != nil {
t.Fatalf("(setup) failed to create temp file for named touch file: %v", err)
}
defer os.Remove(tmpFile.Name())
tmpFile.Close()
tf, err := NewTouchFile(tmpFile.Name())
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
if tf.Path() != tmpFile.Name() {
t.Errorf("TouchFile path should match provided path: %s", tmpFile.Name())
}
}
func TestLockAndUnlock(t *testing.T) {
tf, err := NewTouchFile("")
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
defer os.Remove(tf.path)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
err = tf.SharedLock(ctx)
if err != nil {
t.Fatalf("should successfully acquire lock: %v", err)
}
err = tf.Unlock()
if err != nil {
t.Errorf("should successfully release lock: %v", err)
}
}
func TestSharedLocking(t *testing.T) {
tf1, err := NewTouchFile("")
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
defer os.Remove(tf1.path)
tf2, err := NewTouchFile(tf1.Path())
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
tf3, err := NewTouchFile(tf1.Path())
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
err = tf1.SharedLock(context.Background())
if err != nil {
t.Fatalf("should successfully acquire first shared lock: %v", err)
}
err = tf2.SharedLock(context.Background())
if err != nil {
t.Fatalf("should successfully acquire second shared lock: %v", err)
}
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
defer cancel()
err = tf3.ExclusiveLock(ctx)
if err == nil {
t.Error("should not be able to acquire exclusive lock, expected timeout error")
}
}
func TestLockTimeout(t *testing.T) {
tf1, err := NewTouchFile("")
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
defer os.Remove(tf1.path)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
// First lock the file
err = tf1.ExclusiveLock(ctx)
if err != nil {
t.Fatalf("should successfully acquire initial lock: %v", err)
}
defer tf1.Unlock()
// Try locking again with a different context that times out quickly
tf2, err := NewTouchFile(tf1.path)
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
timeoutCtx, timeoutCancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer timeoutCancel()
err = tf2.ExclusiveLock(timeoutCtx)
if err == nil {
t.Error("should not be able to acquire lock, expected timeout error")
}
}
func TestWithLock(t *testing.T) {
tf, err := NewTouchFile("")
if err != nil {
t.Fatalf("should not error when creating a new TouchFile: %v", err)
}
defer os.Remove(tf.path)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
executed := false
err = tf.WithLock(ctx, Shared, func() error {
executed = true
return nil
})
if err != nil {
t.Fatalf("should successfully acquire lock and execute function: %v", err)
}
if !executed {
t.Fatal("provided function should have been executed")
}
}