-
Notifications
You must be signed in to change notification settings - Fork 0
/
awwan_sudo_test.go
244 lines (201 loc) · 4.91 KB
/
awwan_sudo_test.go
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// SPDX-FileCopyrightText: 2023 M. Shulhan <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later
//go:build integration
package awwan
import (
"bytes"
"context"
"io/fs"
"os"
"path/filepath"
"testing"
"git.sr.ht/~shulhan/pakakeh.go/lib/test"
"git.sr.ht/~shulhan/pakakeh.go/lib/test/mock"
)
func TestAwwan_Local_SudoGet(t *testing.T) {
type testCase struct {
desc string
lineRange string
fileDest string
sudoPass string
expContent string
expError string
expMode fs.FileMode
}
// Load the test data.
var (
baseDir = filepath.Join(`testdata`, `local`)
testdataFile = filepath.Join(baseDir, `get.data`)
tdata *test.Data
err error
)
tdata, err = test.LoadData(testdataFile)
if err != nil {
t.Fatal(err)
}
var (
mockTerm = mock.ReadWriter{}
aww *Awwan
)
aww, err = New(baseDir)
if err != nil {
t.Fatal(err)
}
// Mock terminal to read passphrase for private key.
aww.cryptoc.termrw = &mockTerm
var cases = []testCase{{
desc: `WithPlainFile`,
lineRange: `3`,
sudoPass: "awwan\n",
fileDest: filepath.Join(baseDir, `tmp`, `os-release`),
expContent: string(tdata.Output[`tmp/os-release`]),
expMode: 420,
}, {
desc: `WithInvalidPassword`,
lineRange: `3`,
sudoPass: "invalid\n",
expError: `Local: SudoCopy: ExecLocal: exit status 1`,
}, {
desc: `WithMode`,
lineRange: `9`,
sudoPass: "awwan\nawwan\n",
fileDest: filepath.Join(baseDir, `tmp`, `sudoget_with_mode.txt`),
expContent: string(tdata.Output[`tmp/os-release`]),
expMode: 0706,
}, {
desc: `WithOwner`,
lineRange: `11`,
sudoPass: "awwan\nawwan\n",
fileDest: filepath.Join(baseDir, `tmp`, `sudoget_with_owner.txt`),
expContent: string(tdata.Output[`tmp/os-release`]),
expMode: 420,
}}
var (
ctx = context.Background()
script = filepath.Join(baseDir, `get.aww`)
mockin = &mockStdin{}
req *ExecRequest
c testCase
gotContent []byte
)
for _, c = range cases {
t.Log(c.desc)
req, err = NewExecRequest(CommandModeLocal, script, c.lineRange)
if err != nil {
t.Fatal(err)
}
// Mock the request stdin to read password from buffer.
mockin.buf.Reset()
mockin.buf.WriteString(c.sudoPass)
req.stdin = mockin
err = aww.Local(ctx, req)
if err != nil {
test.Assert(t, `Local: error`, c.expError, err.Error())
continue
}
gotContent, err = os.ReadFile(c.fileDest)
if err != nil {
t.Fatal(err)
}
test.Assert(t, `content`, c.expContent, string(gotContent))
var fi os.FileInfo
fi, err = os.Stat(c.fileDest)
if err != nil {
t.Fatal(err)
}
test.Assert(t, `mode`, c.expMode, fi.Mode().Perm())
}
}
func TestAwwan_Local_SudoPut(t *testing.T) {
type testCase struct {
desc string
lineRange string
keyPass string
sudoPass string
fileDest string
expError string
expContent string
expMode fs.FileMode
}
// Load the test data output.
var (
baseDir = filepath.Join(`testdata`, `local`)
script = filepath.Join(baseDir, `put.aww`)
tdata *test.Data
err error
)
tdata, err = test.LoadData(filepath.Join(baseDir, `put.data`))
if err != nil {
t.Fatal(err)
}
var cases = []testCase{{
desc: `WithTextFile`,
lineRange: `7-8`,
sudoPass: "awwan\nawwan\n",
fileDest: `/etc/plain.txt`,
expContent: string(tdata.Output[`tmp/plain.txt`]),
expMode: 420,
}, {
desc: `WithMode`,
lineRange: `14`,
sudoPass: "awwan\nawwan\n",
fileDest: `/etc/sudoput_with_mode.txt`,
expContent: string(tdata.Output[`tmp/plain.txt`]),
expMode: 0516,
}, {
desc: `WithOwner`,
lineRange: `16`,
sudoPass: "awwan\nawwan\nawwan\n",
fileDest: `/etc/sudoput_with_owner.txt`,
expContent: string(tdata.Output[`tmp/plain.txt`]),
expMode: 420,
}}
var (
ctx = context.Background()
mockin = &mockStdin{}
mockout = &bytes.Buffer{}
mockTerm = mock.ReadWriter{}
aww *Awwan
req *ExecRequest
c testCase
gotContent []byte
)
for _, c = range cases {
t.Log(c.desc)
aww, err = New(baseDir)
if err != nil {
t.Fatal(err)
}
// Mock terminal to read passphrase for private key.
mockTerm.BufRead.Reset()
mockTerm.BufRead.WriteString(c.keyPass)
aww.cryptoc.termrw = &mockTerm
if len(c.fileDest) != 0 {
_ = os.Remove(c.fileDest)
}
req, err = NewExecRequest(CommandModeLocal, script, c.lineRange)
if err != nil {
t.Fatal(err)
}
mockin.buf.Reset()
mockin.buf.WriteString(c.sudoPass)
req.stdin = mockin
err = aww.Local(ctx, req)
if err != nil {
test.Assert(t, `Local error`, c.expError, err.Error())
continue
}
t.Log(mockout.String())
gotContent, err = os.ReadFile(c.fileDest)
if err != nil {
t.Fatal(err)
}
test.Assert(t, `content`, c.expContent, string(gotContent))
var fi os.FileInfo
fi, err = os.Stat(c.fileDest)
if err != nil {
t.Fatal(err)
}
test.Assert(t, `permission`, c.expMode, fi.Mode().Perm())
}
}