Skip to content

Commit

Permalink
set-up UT
Browse files Browse the repository at this point in the history
  • Loading branch information
anh-bolt committed Aug 15, 2024
1 parent 0eb0bc7 commit f7edc56
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
sudo apt install openssh-server
sudo sh -c 'echo "ChallengeResponseAuthentication no" >> /etc/ssh/sshd_config'
sudo sh -c 'echo "PasswordAuthentication no" >> /etc/ssh/sshd_config'
sudo sh -c 'echo "\nMatch User usr" >> /etc/ssh/sshd_config'
sudo sh -c 'echo "\tPasswordAuthentication yes" >> /etc/ssh/sshd_config'
sudo sh -c 'echo "\nMatch User All" >> /etc/ssh/sshd_config'
sudo sh -c 'echo "\tPasswordAuthentication no" >> /etc/ssh/sshd_config'
sudo systemctl enable ssh
sudo systemctl start ssh
Expand All @@ -44,18 +48,24 @@ jobs:
sshGroup=${sshGroupRaw%:x*}
echo "adding user to group ${sshGroup}"
sudo useradd -s /bin/bash -d /home/usr -m -g ${sshGroup} -p $(echo pwd | openssl passwd -1 -stdin) usr
echo "adding user2 to group ${sshGroup}"
sudo useradd -s /bin/bash -d /home/usr2 -m -g ${sshGroup} -p $(echo pwd | openssl passwd -1 -stdin) usr2
ssh-keygen -t rsa -b 4096 -N "123456" -f ~/.ssh/sftptest
chmod -R 700 ~/.ssh/sftptest
chmod 600 ~/.ssh/sftptest.pub
sudo -u usr mkdir /home/usr/.ssh/
sudo cat ~/.ssh/sftptest.pub >> /home/usr/.ssh/authorized_keys
sudo chown -R usr:${sshGroup} /home/usr/.ssh
sudo chmod -R 700 /home/usr/.ssh
sudo chmod 664 /home/usr/.ssh/authorized_keys
sudo -u usr2 mkdir /home/usr2/.ssh/
sudo cat ~/.ssh/sftptest.pub >> /home/usr2/.ssh/authorized_keys
sudo chown -R usr2:${sshGroup} /home/usr2/.ssh
sudo chmod go-w /home/usr2
sudo chmod -R 700 /home/usr2/.ssh
sudo chmod 600 /home/usr2/.ssh/authorized_keys
cp ~/.ssh/sftptest ${GITHUB_WORKSPACE}/sftp-connector-test/src_test/com/axonivy/connector/sftp/test/sftptest
- name: Setup Maven
uses: stCarolas/setup-maven@v5
with:
Expand All @@ -64,14 +74,19 @@ jobs:
- name: Build with Maven
run: mvn clean verify --batch-mode --fail-at-end ${{ inputs.mvnArgs }}

- name: Auth Log
if: always()
run:
sudo cat /var/log/auth.log

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
junit_files: |
*/target/*-reports/*.xml
!*/target/*-reports/failsafe-summary.xml
- name: Archive build artifact
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Dev-Build

on:
push:
# push:
schedule:
- cron: '21 21 * * *'
workflow_dispatch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class SftpProcessSSHTest {

@BeforeAll
public static void init() throws Exception {

Ivy.var().set(PREFIX+TEST_SFTP_NAME_VAR+"username", "usr2");
Ivy.var().set(PREFIX+TEST_SFTP_NAME_VAR+"auth", "ssh");
Ivy.var().set(PREFIX+TEST_SFTP_NAME_VAR+"password", "");

Expand Down

0 comments on commit f7edc56

Please sign in to comment.