-
Notifications
You must be signed in to change notification settings - Fork 105
228 lines (202 loc) · 7.3 KB
/
sftp-test.yml
File metadata and controls
228 lines (202 loc) · 7.3 KB
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
name: wolfSSH SFTP Test
on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
create_matrix:
runs-on: ubuntu-latest
outputs:
versions: ${{ steps.json.outputs.versions }}
steps:
- name: Create wolfSSL version matrix
id: json
run: |
current=`curl -s https://api.github.com/repos/wolfssl/wolfssl/releases | grep tag_name | cut -d : -f 2,3 | tr -d \" | tr -d , | tr -d ' ' | head -1`
last=`curl -s https://api.github.com/repos/wolfssl/wolfssl/releases | grep tag_name | cut -d : -f 2,3 | tr -d \" | tr -d , | tr -d ' ' | head -2 | tail -1`
VERSIONS=$(echo "[ \"master\", \"$current\", \"$last\" ]")
echo "wolfSSL versions found: $VERSIONS"
echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
build_wolfssl:
needs: create_matrix
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
name: Build wolfssl
runs-on: ${{ matrix.os }}
timeout-minutes: 4
steps:
- name: Checking cache for wolfssl
uses: actions/cache@v4
id: cache-wolfssl
with:
path: build-dir/
key: wolfssh-sftp-wolfssl-${{ matrix.wolfssl }}-${{ matrix.os }}-keygen
lookup-only: true
- name: Checkout, build, and install wolfssl
if: steps.cache-wolfssl.outputs.cache-hit != 'true'
uses: wolfSSL/actions-build-autotools-project@v1
with:
repository: wolfssl/wolfssl
ref: ${{ matrix.wolfssl }}
path: wolfssl
configure: --enable-ssh --enable-keygen
check: false
install: true
build_wolfssh:
needs:
- build_wolfssl
- create_matrix
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
name: Build and test wolfsftp
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checking cache for wolfssl
uses: actions/cache@v4
with:
path: build-dir/
key: wolfssh-sftp-wolfssl-${{ matrix.wolfssl }}-${{ matrix.os }}-keygen
fail-on-cache-miss: true
- uses: actions/checkout@v4
with:
path: wolfssh/
- name: autogen
working-directory: ./wolfssh/
run: ./autogen.sh
- name: configure
working-directory: ./wolfssh/
run : |
./configure --enable-sftp LDFLAGS="-L${{ github.workspace }}/build-dir/lib" CPPFLAGS="-I${{ github.workspace }}/build-dir/include -DWOLFSSH_NO_FPKI"
- name: make
working-directory: ./wolfssh/
run: make
- name: Create test file
run: |
dd if=/dev/urandom of=/tmp/test.dat bs=1M count=2
echo "Created 2MB test file at /tmp/test.dat"
md5sum /tmp/test.dat > /tmp/test.md5
- name: Start echoserver
working-directory: ./wolfssh/
run: |
./examples/echoserver/echoserver -f &
echo "Echoserver started with PID: $!"
sleep 2 # Give the server time to start
- name: Run SFTP test
working-directory: ./wolfssh/
run: |
mkdir -p /tmp/sftp_test_dir
# Create expect script to automate the SFTP client interaction
cat > /tmp/sftp_test.exp << 'EOF'
#!/usr/bin/expect -f
set timeout 60
spawn ./examples/sftpclient/wolfsftp -N -h 127.0.0.1 -p 22222 -u jill
expect "Password:"
send "upthehill\r"
expect "wolfSSH sftp>"
send "put /tmp/test.dat /tmp/sftp_test_dir/test_received.dat\r"
expect "wolfSSH sftp>"
send "exit\r"
expect eof
EOF
chmod +x /tmp/sftp_test.exp
# Install expect
sudo apt-get update && sudo apt-get install -y expect
# Run the expect script
/tmp/sftp_test.exp
# Verify the files match
echo "Verifying file integrity..."
if cmp -s /tmp/test.dat /tmp/sftp_test_dir/test_received.dat; then
echo "SFTP Test PASSED: Files match"
else
echo "SFTP Test FAILED: Files do not match"
exit 1
fi
build_wolfssh_large_rw:
needs:
- build_wolfssl
- create_matrix
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
name: Test wolfsftp large RW (10MB chunks, 3GB file)
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- name: Checking cache for wolfssl
uses: actions/cache@v4
with:
path: build-dir/
key: wolfssh-sftp-wolfssl-${{ matrix.wolfssl }}-${{ matrix.os }}-keygen
fail-on-cache-miss: true
- uses: actions/checkout@v4
with:
path: wolfssh/
- name: autogen
working-directory: ./wolfssh/
run: ./autogen.sh
- name: configure
working-directory: ./wolfssh/
run: |
./configure --enable-all \
LDFLAGS="-L${{ github.workspace }}/build-dir/lib" \
CPPFLAGS="-I${{ github.workspace }}/build-dir/include -DWOLFSSH_NO_SFTP_TIMEOUT -DWOLFSSH_MAX_SFTP_RW=10485760 -DWOLFSSH_MAX_CHN_NAMESZ=4200"
- name: make
working-directory: ./wolfssh/
run: make
- name: Create 3GB test file
working-directory: ./wolfssh/
run: |
dd if=/dev/urandom of=seed.dat bs=1M count=10
for i in $(seq 1 308); do cat seed.dat >> large_test.dat; done
rm seed.dat
sha256sum large_test.dat > large_test.dat.sha256
echo "Created 3GB test file, SHA-256: $(cat large_test.dat.sha256)"
- name: Start echoserver
working-directory: ./wolfssh/
run: |
./examples/echoserver/echoserver -N -1 -R /tmp/echoserver_ready -d "$(pwd)" &
echo $! > /tmp/echoserver.pid
for i in $(seq 1 30); do
[ -s /tmp/echoserver_ready ] && break
sleep 0.2
done
if [ ! -s /tmp/echoserver_ready ]; then
echo "ERROR: echoserver failed to start"
exit 1
fi
echo "Echoserver ready on port $(cat /tmp/echoserver_ready)"
- name: SFTP get 3GB file with 10MB chunk size
working-directory: ./wolfssh/
run: |
port=$(cat /tmp/echoserver_ready)
./examples/sftpclient/wolfsftp -N -u jill -P upthehill -p "$port" \
-G -l /tmp/large_test_copy.dat -r "$(pwd)/large_test.dat"
- name: Verify file integrity
working-directory: ./wolfssh/
run: |
expected=$(awk '{print $1}' large_test.dat.sha256)
actual=$(sha256sum /tmp/large_test_copy.dat | awk '{print $1}')
echo "Expected SHA-256: $expected"
echo "Actual SHA-256: $actual"
if [ "$expected" != "$actual" ]; then
echo "FAIL: SHA-256 mismatch"
exit 1
fi
echo "PASS: 3GB SFTP transfer with WOLFSSH_MAX_SFTP_RW=10485760 succeeded"
- name: Stop echoserver
if: always()
run: kill "$(cat /tmp/echoserver.pid)" 2>/dev/null || true