mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package components
|
|
|
|
type ConfirmationAsserter struct {
|
|
input *Input
|
|
hasCheckedTitle bool
|
|
hasCheckedContent bool
|
|
}
|
|
|
|
func (self *ConfirmationAsserter) getViewAsserter() *View {
|
|
return self.input.Views().Confirmation()
|
|
}
|
|
|
|
// asserts that the confirmation view has the expected title
|
|
func (self *ConfirmationAsserter) Title(expected *matcher) *ConfirmationAsserter {
|
|
self.getViewAsserter().Title(expected)
|
|
|
|
self.hasCheckedTitle = true
|
|
|
|
return self
|
|
}
|
|
|
|
// asserts that the confirmation view has the expected content
|
|
func (self *ConfirmationAsserter) Content(expected *matcher) *ConfirmationAsserter {
|
|
self.getViewAsserter().Content(expected)
|
|
|
|
self.hasCheckedContent = true
|
|
|
|
return self
|
|
}
|
|
|
|
func (self *ConfirmationAsserter) Confirm() {
|
|
self.checkNecessaryChecksCompleted()
|
|
|
|
self.getViewAsserter().PressEnter()
|
|
}
|
|
|
|
func (self *ConfirmationAsserter) Cancel() {
|
|
self.checkNecessaryChecksCompleted()
|
|
|
|
self.getViewAsserter().PressEscape()
|
|
}
|
|
|
|
func (self *ConfirmationAsserter) checkNecessaryChecksCompleted() {
|
|
if !self.hasCheckedContent || !self.hasCheckedTitle {
|
|
self.input.Fail("You must both check the content and title of a confirmation popup by calling Title()/Content() before calling Confirm()/Cancel().")
|
|
}
|
|
}
|