Files
atlantis/server/events/project_locker_test.go
Nish Krishnan 7ac8106f8a Add structured logger (#54) (#1467)
This is two changes:

Replacing all usages of SimpleLogger with it's interface SimpleLogging which makes it easier to swap out loggers going forward
Nukes SimpleLogger in favor of StructuredLogger which allows us to better analyze logs in our log management system we choose.
2021-04-06 12:02:25 -07:00

142 lines
4.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 (
"fmt"
"testing"
. "github.com/petergtz/pegomock"
"github.com/runatlantis/atlantis/server/events"
"github.com/runatlantis/atlantis/server/events/locking"
"github.com/runatlantis/atlantis/server/events/locking/mocks"
"github.com/runatlantis/atlantis/server/events/models"
"github.com/runatlantis/atlantis/server/events/vcs"
"github.com/runatlantis/atlantis/server/logging"
. "github.com/runatlantis/atlantis/testing"
)
func TestDefaultProjectLocker_TryLockWhenLocked(t *testing.T) {
var githubClient *vcs.GithubClient
mockClient := vcs.NewClientProxy(githubClient, nil, nil, nil, nil)
mockLocker := mocks.NewMockLocker()
locker := events.DefaultProjectLocker{
Locker: mockLocker,
VCSClient: mockClient,
}
expProject := models.Project{}
expWorkspace := "default"
expPull := models.PullRequest{}
expUser := models.User{}
lockingPull := models.PullRequest{
Num: 2,
}
When(mockLocker.TryLock(expProject, expWorkspace, expPull, expUser)).ThenReturn(
locking.TryLockResponse{
LockAcquired: false,
CurrLock: models.ProjectLock{
Pull: lockingPull,
},
LockKey: "",
},
nil,
)
res, err := locker.TryLock(logging.NewNoopLogger(t), expPull, expUser, expWorkspace, expProject)
link, _ := mockClient.MarkdownPullLink(lockingPull)
Ok(t, err)
Equals(t, &events.TryLockResponse{
LockAcquired: false,
LockFailureReason: fmt.Sprintf("This project is currently locked by an unapplied plan from pull %s. To continue, delete the lock from %s or apply that plan and merge the pull request.\n\nOnce the lock is released, comment `atlantis plan` here to re-plan.", link, link),
}, res)
}
func TestDefaultProjectLocker_TryLockWhenLockedSamePull(t *testing.T) {
RegisterMockTestingT(t)
var githubClient *vcs.GithubClient
mockClient := vcs.NewClientProxy(githubClient, nil, nil, nil, nil)
mockLocker := mocks.NewMockLocker()
locker := events.DefaultProjectLocker{
Locker: mockLocker,
VCSClient: mockClient,
}
expProject := models.Project{}
expWorkspace := "default"
expPull := models.PullRequest{Num: 2}
expUser := models.User{}
lockingPull := models.PullRequest{
Num: 2,
}
lockKey := "key"
When(mockLocker.TryLock(expProject, expWorkspace, expPull, expUser)).ThenReturn(
locking.TryLockResponse{
LockAcquired: false,
CurrLock: models.ProjectLock{
Pull: lockingPull,
},
LockKey: lockKey,
},
nil,
)
res, err := locker.TryLock(logging.NewNoopLogger(t), expPull, expUser, expWorkspace, expProject)
Ok(t, err)
Equals(t, true, res.LockAcquired)
// UnlockFn should work.
mockLocker.VerifyWasCalled(Never()).Unlock(lockKey)
err = res.UnlockFn()
Ok(t, err)
mockLocker.VerifyWasCalledOnce().Unlock(lockKey)
}
func TestDefaultProjectLocker_TryLockUnlocked(t *testing.T) {
RegisterMockTestingT(t)
var githubClient *vcs.GithubClient
mockClient := vcs.NewClientProxy(githubClient, nil, nil, nil, nil)
mockLocker := mocks.NewMockLocker()
locker := events.DefaultProjectLocker{
Locker: mockLocker,
VCSClient: mockClient,
}
expProject := models.Project{}
expWorkspace := "default"
expPull := models.PullRequest{Num: 2}
expUser := models.User{}
lockingPull := models.PullRequest{
Num: 2,
}
lockKey := "key"
When(mockLocker.TryLock(expProject, expWorkspace, expPull, expUser)).ThenReturn(
locking.TryLockResponse{
LockAcquired: true,
CurrLock: models.ProjectLock{
Pull: lockingPull,
},
LockKey: lockKey,
},
nil,
)
res, err := locker.TryLock(logging.NewNoopLogger(t), expPull, expUser, expWorkspace, expProject)
Ok(t, err)
Equals(t, true, res.LockAcquired)
// UnlockFn should work.
mockLocker.VerifyWasCalled(Never()).Unlock(lockKey)
err = res.UnlockFn()
Ok(t, err)
mockLocker.VerifyWasCalledOnce().Unlock(lockKey)
}