2022-12-27 01:50:00 +02:00
|
|
|
package components
|
|
|
|
|
|
|
|
type ConfirmationAsserter struct {
|
|
|
|
assert *Assert
|
|
|
|
input *Input
|
|
|
|
hasCheckedTitle bool
|
|
|
|
hasCheckedContent bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *ConfirmationAsserter) getViewAsserter() *ViewAsserter {
|
2022-12-27 06:07:11 +02:00
|
|
|
return self.assert.Views().ByName("confirmation")
|
2022-12-27 01:50:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2022-12-27 02:34:41 +02:00
|
|
|
func (self *ConfirmationAsserter) Confirm() {
|
2022-12-27 01:50:00 +02:00
|
|
|
self.checkNecessaryChecksCompleted()
|
|
|
|
|
|
|
|
self.input.Confirm()
|
|
|
|
}
|
|
|
|
|
2022-12-27 02:34:41 +02:00
|
|
|
func (self *ConfirmationAsserter) Cancel() {
|
2022-12-27 01:50:00 +02:00
|
|
|
self.checkNecessaryChecksCompleted()
|
|
|
|
|
|
|
|
self.input.Press(self.input.keys.Universal.Return)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *ConfirmationAsserter) checkNecessaryChecksCompleted() {
|
|
|
|
if !self.hasCheckedContent || !self.hasCheckedTitle {
|
|
|
|
self.assert.Fail("You must both check the content and title of a confirmation popup by calling Title()/Content() before calling Confirm()/Cancel().")
|
|
|
|
}
|
|
|
|
}
|