summaryrefslogtreecommitdiffstats
path: root/pkg/integration/components/prompt_asserter.go
blob: 9fea5bdf2d0d5fa039a2967680716401f87846ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package components

type PromptAsserter struct {
	t               *TestDriver
	hasCheckedTitle bool
}

func (self *PromptAsserter) getViewAsserter() *View {
	return self.t.Views().Confirmation()
}

// asserts that the popup has the expected title
func (self *PromptAsserter) Title(expected *matcher) *PromptAsserter {
	self.getViewAsserter().Title(expected)

	self.hasCheckedTitle = true

	return self
}

// asserts on the text initially present in the prompt
func (self *PromptAsserter) InitialText(expected *matcher) *PromptAsserter {
	self.getViewAsserter().Content(expected)

	return self
}

func (self *PromptAsserter) Type(value string) *PromptAsserter {
	self.t.typeContent(value)

	return self
}

func (self *PromptAsserter) Clear() *PromptAsserter {
	panic("Clear method not yet implemented!")
}

func (self *PromptAsserter) Confirm() {
	self.checkNecessaryChecksCompleted()

	self.getViewAsserter().PressEnter()
}

func (self *PromptAsserter) Cancel() {
	self.checkNecessaryChecksCompleted()

	self.getViewAsserter().PressEscape()
}

func (self *PromptAsserter) checkNecessaryChecksCompleted() {
	if !self.hasCheckedTitle {
		self.t.Fail("You must check the title of a prompt popup by calling Title() before calling Confirm()/Cancel().")
	}
}

func (self *PromptAsserter) SuggestionLines(matchers ...*matcher) *PromptAsserter {
	self.t.Views().Suggestions().Lines(matchers...)

	return self
}

func (self *PromptAsserter) SuggestionTopLines(matchers ...*matcher) *PromptAsserter {
	self.t.Views().Suggestions().TopLines(matchers...)

	return self
}

func (self *PromptAsserter) SelectFirstSuggestion() *PromptAsserter {
	self.t.press(self.t.keys.Universal.TogglePanel)
	self.t.Views().Suggestions().
		IsFocused().
		SelectedLineIdx(0)

	return self
}

func (self *PromptAsserter) SelectSuggestion(matcher *matcher) *PromptAsserter {
	self.t.press(self.t.keys.Universal.TogglePanel)
	self.t.Views().Suggestions().
		IsFocused().
		NavigateToListItem(matcher)

	return self
}