mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
fa0fa8b1d0
This requires a further set of gofmt -s improvements to the code, but nothing major. golangci-lint 1.45.2 brings golang 1.18 support which might be needed in the future. Signed-off-by: Dirk Müller <dirk@dmllr.de>
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
//go:build linux || darwin || freebsd || openbsd || netbsd || dragonfly
|
|
|
|
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package flock
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Test_UnitFlock(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
path string
|
|
wantCheck bool
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "Basic Flock Test",
|
|
path: "/tmp/testlock.test",
|
|
|
|
wantCheck: true,
|
|
wantErr: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
lock, err := Acquire(tt.path)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("Acquire() error = %v, wantErr %v", err, tt.wantErr)
|
|
return
|
|
}
|
|
|
|
if got := CheckLock(tt.path); got != tt.wantCheck {
|
|
t.Errorf("CheckLock() = %+v\nWant = %+v", got, tt.wantCheck)
|
|
}
|
|
|
|
if err := Release(lock); (err != nil) != tt.wantErr {
|
|
t.Errorf("Release() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
|
|
if got := CheckLock(tt.path); got == tt.wantCheck {
|
|
t.Errorf("CheckLock() = %+v\nWant = %+v", got, !tt.wantCheck)
|
|
}
|
|
})
|
|
}
|
|
}
|