-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ftp-proxy test #1281
Open
jkonecny12
wants to merge
3
commits into
rhinstaller:master
Choose a base branch
from
jkonecny12:add-ftp-with-proxy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add ftp-proxy test #1281
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#test name: basic-ftp | ||
url --url=@KSTEST_FTP_URL@ | ||
network --bootproto=dhcp | ||
|
||
bootloader --timeout=1 | ||
zerombr | ||
clearpart --all | ||
autopart | ||
|
||
keyboard us | ||
lang en | ||
timezone America/New_York | ||
rootpw qweqwe | ||
shutdown | ||
|
||
%packages | ||
%end | ||
|
||
%post | ||
# If we made it post, that's good enough | ||
echo SUCCESS > /root/RESULT | ||
%end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (C) 2015 Red Hat, Inc. | ||
# | ||
# This copyrighted material is made available to anyone wishing to use, | ||
# modify, copy, or redistribute it subject to the terms and conditions of | ||
# the GNU General Public License v.2, or (at your option) any later version. | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY expressed or implied, including the implied warranties of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | ||
# Public License for more details. You should have received a copy of the | ||
# GNU General Public License along with this program; if not, write to the | ||
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the | ||
# source code or documentation are not subject to the GNU General Public | ||
# License and may only be used or replicated with the express permission of | ||
# Red Hat, Inc. | ||
|
||
# Ignore unused variable parsed out by tooling scripts as test tags metadata | ||
# shellcheck disable=SC2034 | ||
TESTTYPE="method ftp proxy" | ||
|
||
. ${KSTESTDIR}/functions.sh | ||
|
||
kernel_args() { | ||
proxy_url="$(cat ${tmpdir}/proxy_url)" | ||
echo ${DEFAULT_BOOTOPTS} inst.proxy=${proxy_url} | ||
} | ||
|
||
prepare() { | ||
ks=$1 | ||
tmpdir=$2 | ||
|
||
# Start a proxy server | ||
start_proxy ${tmpdir}/proxy | ||
|
||
cp ${ks} ${tmpdir}/kickstart.ks | ||
echo ${tmpdir}/kickstart.ks | ||
} | ||
|
||
validate() { | ||
tmpdir=$1 | ||
validate_RESULT $tmpdir | ||
if [ ! -f $tmpdir/RESULT ]; then | ||
return 1 | ||
fi | ||
|
||
grep -q "$KSTEST_FTP_URL" $tmpdir/proxy/access.log | ||
if [[ $? -ne 0 ]]; then | ||
echo 'FTP URL server request was not proxied' >> $tmpdir/RESULT | ||
fi | ||
|
||
# check for .treeinfo request | ||
grep -q '\.treeinfo[[:space:]]' $tmpdir/proxy/access.log | ||
if [[ $? -ne 0 ]]; then | ||
echo '.treeinfo request to repository server was not proxied' >> $tmpdir/RESULT | ||
fi | ||
|
||
check_result_file "$tmpdir" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if using some fragments could prevent duplication ? For example, I don't think the storage section is specific to this test & could be replaced by: https://github.com/rhinstaller/kickstart-tests/blob/master/fragments/shared/storage/default.ks
Or possibly the full common_no_payload ?
https://github.com/rhinstaller/kickstart-tests/blob/master/fragments/shared/common/common_no_payload.ks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is taken from the ftp test. Let's use it this way and I can take a look on the optimization of both in next PR.