File: filelock_test.go

package info (click to toggle)
kitty 0.42.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 28,564 kB
  • sloc: ansic: 82,787; python: 55,191; objc: 5,122; sh: 1,295; xml: 364; makefile: 143; javascript: 78
file content (43 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download | duplicates (2)
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
// License: GPLv3 Copyright: 2024, Kovid Goyal, <kovid at kovidgoyal.net>

package utils

import (
	"fmt"
	"os"
	"os/exec"
	"testing"
)

var _ = fmt.Print

func TestFileLock(t *testing.T) {
	tdir := t.TempDir()

	file_descriptor, err := os.Open(tdir)
	if err != nil {
		t.Fatalf("Initial open of %s failed with error: %s", tdir, err)
	}
	if err = LockFileExclusive(file_descriptor); err != nil {
		file_descriptor.Close()
		t.Fatalf("Initial lock of %s failed with error: %s", tdir, err)
	}
	defer func() {
		_ = UnlockFile(file_descriptor)
		file_descriptor.Close()
	}()
	cmd := exec.Command(KittyExe(), "+runpy", `
import sys, os, fcntl
fd = os.open(sys.argv[-1], os.O_RDONLY)
try:
	fcntl.flock(fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
except BlockingIOError:
    sys.exit(0)
else:
	print("Lock unexpectedly succeeded", flush=True)
	sys.exit(1)
`, tdir)
	if output, err := cmd.CombinedOutput(); err != nil {
		t.Fatalf("Lock test process failed with error: %s and output:\n%s", err, string(output))
	}
}