mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 21:38:00 +00:00
Signed-off-by: Andrew Carter <andrew@emailcarter.com> Signed-off-by: Luke Massa <lukefrederickmassa@gmail.com> Co-authored-by: Finn Arne Gangstad <finnag@gmail.com> Co-authored-by: Rui Chen <rui@chenrui.dev> Co-authored-by: PePe Amengual <2208324+jamengual@users.noreply.github.com> Co-authored-by: Luke Massa <lukefrederickmassa@gmail.com>
173 lines
5.3 KiB
Go
173 lines
5.3 KiB
Go
// Copyright 2017 HootSuite Media Inc.
|
|
//
|
|
// 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.
|
|
// Modified hereafter by contributors to runatlantis/atlantis.
|
|
|
|
package events_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/runatlantis/atlantis/server/events"
|
|
. "github.com/runatlantis/atlantis/testing"
|
|
)
|
|
|
|
var repo = "repo/owner"
|
|
var workspace = "default"
|
|
var path = "."
|
|
|
|
func TestTryLock(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
// The first lock should succeed.
|
|
unlockFn, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
|
|
// Now another lock for the same repo, workspace, and pull should fail
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
ErrEquals(t, "the default workspace at path . is currently locked by another"+
|
|
" command that is running for this pull request.\n"+
|
|
"Wait until the previous command is complete and try again", err)
|
|
|
|
// Unlock should work.
|
|
unlockFn()
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
}
|
|
|
|
func TestTryLockDifferentWorkspaces(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
t.Log("a lock for the same repo and pull but different workspace should succeed")
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
_, err = locker.TryLock(repo, 1, "new-workspace", path)
|
|
Ok(t, err)
|
|
|
|
t.Log("and both should now be locked")
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
Assert(t, err != nil, "exp err")
|
|
_, err = locker.TryLock(repo, 1, "new-workspace", path)
|
|
Assert(t, err != nil, "exp err")
|
|
}
|
|
|
|
func TestTryLockDifferentRepo(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
t.Log("a lock for a different repo but the same workspace and pull should succeed")
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
newRepo := "owner/newrepo"
|
|
_, err = locker.TryLock(newRepo, 1, workspace, path)
|
|
Ok(t, err)
|
|
|
|
t.Log("and both should now be locked")
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
ErrContains(t, "currently locked", err)
|
|
_, err = locker.TryLock(newRepo, 1, workspace, path)
|
|
ErrContains(t, "currently locked", err)
|
|
}
|
|
|
|
func TestTryLockDifferentPulls(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
t.Log("a lock for a different pull but the same repo and workspace should succeed")
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
newPull := 2
|
|
_, err = locker.TryLock(repo, newPull, workspace, path)
|
|
Ok(t, err)
|
|
|
|
t.Log("and both should now be locked")
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
ErrContains(t, "currently locked", err)
|
|
_, err = locker.TryLock(repo, newPull, workspace, path)
|
|
ErrContains(t, "currently locked", err)
|
|
}
|
|
|
|
func TestTryLockDifferentPaths(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
t.Log("a lock for a different path but the same repo, pull, and workspace should succeed")
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
newPath := "new-path"
|
|
_, err = locker.TryLock(repo, 1, workspace, newPath)
|
|
Ok(t, err)
|
|
|
|
t.Log("and both should now be locked")
|
|
_, err = locker.TryLock(repo, 1, workspace, path)
|
|
ErrContains(t, "currently locked", err)
|
|
_, err = locker.TryLock(repo, 1, workspace, newPath)
|
|
ErrContains(t, "currently locked", err)
|
|
}
|
|
|
|
func TestUnlock(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
|
|
t.Log("unlocking should work")
|
|
unlockFn, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
unlockFn()
|
|
_, err = locker.TryLock(repo, 1, workspace, "")
|
|
Ok(t, err)
|
|
}
|
|
|
|
func TestUnlockDifferentWorkspaces(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
t.Log("unlocking should work for different workspaces")
|
|
unlockFn1, err1 := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err1)
|
|
unlockFn2, err2 := locker.TryLock(repo, 1, "new-workspace", path)
|
|
Ok(t, err2)
|
|
unlockFn1()
|
|
unlockFn2()
|
|
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
_, err = locker.TryLock(repo, 1, "new-workspace", path)
|
|
Ok(t, err)
|
|
}
|
|
|
|
func TestUnlockDifferentRepos(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
t.Log("unlocking should work for different repos")
|
|
unlockFn1, err1 := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err1)
|
|
newRepo := "owner/newrepo"
|
|
unlockFn2, err2 := locker.TryLock(newRepo, 1, workspace, path)
|
|
Ok(t, err2)
|
|
unlockFn1()
|
|
unlockFn2()
|
|
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
_, err = locker.TryLock(newRepo, 1, workspace, path)
|
|
Ok(t, err)
|
|
}
|
|
|
|
func TestUnlockDifferentPulls(t *testing.T) {
|
|
locker := events.NewDefaultWorkingDirLocker()
|
|
t.Log("unlocking should work for different pulls")
|
|
unlockFn1, err1 := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err1)
|
|
newPull := 2
|
|
unlockFn2, err2 := locker.TryLock(repo, newPull, workspace, path)
|
|
Ok(t, err2)
|
|
unlockFn1()
|
|
unlockFn2()
|
|
|
|
_, err := locker.TryLock(repo, 1, workspace, path)
|
|
Ok(t, err)
|
|
_, err = locker.TryLock(repo, newPull, workspace, path)
|
|
Ok(t, err)
|
|
}
|