Skip to content
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
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion basic-ftp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@

# Ignore unused variable parsed out by tooling scripts as test tags metadata
# shellcheck disable=SC2034
TESTTYPE="method"
TESTTYPE="method ftp"

. ${KSTESTDIR}/functions.sh
22 changes: 22 additions & 0 deletions ftp-proxy.ks.in
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
Copy link
Contributor

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

Copy link
Member Author

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.

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
60 changes: 60 additions & 0 deletions ftp-proxy.sh
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"
}
2 changes: 1 addition & 1 deletion functions-proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function check_proxy_settings() {
fi
elif [ "$httpdir" ]; then
# check for .treeinfo request
grep -q '\.treeinfo$' $tmpdir/proxy/access.log
grep -q '\.treeinfo[[:space:]]' $tmpdir/proxy/access.log
if [[ $? -ne 0 ]]; then
echo '.treeinfo request to repository server was not proxied' >> $tmpdir/RESULT
fi
Expand Down
2 changes: 2 additions & 0 deletions scripts/confs/squid.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ acl localnet src 192.168.0.0/16 # RFC 1918 local private network (LAN)
acl Safe_ports port 80 # http
acl Safe_ports port 443 # https
acl Safe_ports port 40000-41000 # our_http
acl Safe_ports port 20 # ftp
acl Safe_ports port 21 # ftp
acl CONNECT method CONNECT

#
Expand Down