aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pama/pama_test.go
blob: 7a4d19615c5cf914f5e2acfc43fcdf719ede2dbe (plain) (blame)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package pama_test

import (
	"errors"

	"git.sr.ht/~rjarry/aerc/lib/pama"
	"git.sr.ht/~rjarry/aerc/lib/pama/models"
)

var errNotFound = errors.New("not found")

func newCommit(id, subj, tag string) models.Commit {
	return models.Commit{ID: id, Subject: subj, Tag: tag}
}

func newTestManager(
	commits []string,
	subjects []string,
	data map[string]models.Project,
	current string,
) (pama.PatchManager, models.RevisionController, models.PersistentStorer) {
	rc := mockRevctrl{
		commitIDs: commits,
		titles:    subjects,
	}
	store := mockStore{
		data:    data,
		current: current,
	}
	return pama.FromFunc(
		nil,
		func(_ string, _ string) (models.RevisionController, error) {
			return &rc, nil
		},
		func() models.PersistentStorer {
			return &store
		},
	), &rc, &store
}

type mockRevctrl struct {
	commitIDs []string
	titles    []string
}

func (c *mockRevctrl) Support() bool {
	return true
}

func (c *mockRevctrl) Clean() bool {
	return true
}

func (c *mockRevctrl) Root() (string, error) {
	return "", nil
}

func (c *mockRevctrl) Head() (string, error) {
	return c.commitIDs[len(c.commitIDs)-1], nil
}

func (c *mockRevctrl) History(commit string) ([]string, error) {
	for i, s := range c.commitIDs {
		if s == commit {
			cp := make([]string, len(c.commitIDs[i+1:]))
			copy(cp, c.commitIDs[i+1:])
			return cp, nil
		}
	}
	return nil, errNotFound
}

func (c *mockRevctrl) Exists(commit string) bool {
	for _, s := range c.commitIDs {
		if s == commit {
			return true
		}
	}
	return false
}

func (c *mockRevctrl) Subject(commit string) string {
	for i, s := range c.commitIDs {
		if s == commit {
			return c.titles[i]
		}
	}
	return ""
}

func (c *mockRevctrl) Author(commit string) string {
	return ""
}

func (c *mockRevctrl) Date(commit string) string {
	return ""
}

func (c *mockRevctrl) Remove(commit string) error {
	for i, s := range c.commitIDs {
		if s == commit {
			c.commitIDs = append(c.commitIDs[:i], c.commitIDs[i+1:]...)
			c.titles = append(c.titles[:i], c.titles[i+1:]...)
			// modify commitIDs to simulate a "real" change in
			// commit history that will also change all subsequent
			// commitIDs
			for j := i; j < len(c.commitIDs); j++ {
				c.commitIDs[j] += "_new"
			}
			return nil
		}
	}
	return errNotFound
}

func (c *mockRevctrl) ApplyCmd() string {
	return ""
}

type mockStore struct {
	data    map[string]models.Project
	current string
}

func (s *mockStore) StoreProject(p models.Project, ow bool) error {
	_, ok := s.data[p.Name]
	if ok && !ow {
		return errors.New("alreay there")
	}
	s.data[p.Name] = p
	return nil
}

func (s *mockStore) DeleteProject(name string) error {
	delete(s.data, name)
	return nil
}

func (s *mockStore) CurrentName() (string, error) {
	return s.current, nil
}

func (s *mockStore) SetCurrent(c string) error {
	s.current = c
	return nil
}

func (s *mockStore) Current() (models.Project, error) {
	return s.data[s.current], nil
}

func (s *mockStore) Names() ([]string, error) {
	var names []string
	for name := range s.data {
		names = append(names, name)
	}
	return names, nil
}

func (s *mockStore) Projects() ([]models.Project, error) {
	var ps []models.Project
	for _, p := range s.data {
		ps = append(ps, p)
	}
	return ps, nil
}