Skip to content

Commit

Permalink
Add tests with an FTP instrepo
Browse files Browse the repository at this point in the history
  • Loading branch information
dashea committed Mar 12, 2015
1 parent f9bf071 commit 1e18576
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/kickstart_tests/basic-ftp-yum.ks
@@ -0,0 +1,24 @@
url --url=ftp://mirrors.kernel.org/fedora/development/$releasever/$basearch/os/

This comment has been minimized.

Copy link
@dashea

dashea Mar 12, 2015

Author Owner

I'm going to change this to use ftp://mirror.utexas.edu/pub/fedora/linux/development/$releasever/$basearch/os/ as the url, since it's the first fedora mirror I tried that didn't give up on me partway

install
network --bootproto=dhcp

bootloader --timeout=1
zerombr
clearpart --all
part --fstype=ext4 --size=4400 /
part --fstype=ext4 --size=500 /boot
part --fstype=swap --size=500 swap

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
48 changes: 48 additions & 0 deletions tests/kickstart_tests/basic-ftp-yum.sh
@@ -0,0 +1,48 @@
#!/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.
#
# Red Hat Author(s): David Shea <dshea@redhat.com>

kernel_args() {
echo vnc inst.nodnf
}

prepare() {
ks=$1
tmpdir=$2

echo ${ks}
}

validate() {
img=$1

# There should be a /root/RESULT file with results in it. Check
# its contents and decide whether the test finally succeeded or
# not.
result=$(virt-cat -a ${img} -m /dev/sda2 /root/RESULT)
if [[ $? != 0 ]]; then
status=1
echo '*** /root/RESULT does not exist in VM image.'
elif [[ "${result}" != "SUCCESS" ]]; then
status=1
echo "${result}"
fi

return ${status}
}
24 changes: 24 additions & 0 deletions tests/kickstart_tests/basic-ftp.ks
@@ -0,0 +1,24 @@
url --url=ftp://mirrors.kernel.org/fedora/development/$releasever/$basearch/os/

This comment has been minimized.

Copy link
@dashea

dashea Mar 12, 2015

Author Owner

Same here, obvs

install
network --bootproto=dhcp

bootloader --timeout=1
zerombr
clearpart --all
part --fstype=ext4 --size=4400 /
part --fstype=ext4 --size=500 /boot
part --fstype=swap --size=500 swap

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
48 changes: 48 additions & 0 deletions tests/kickstart_tests/basic-ftp.sh
@@ -0,0 +1,48 @@
#!/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.
#
# Red Hat Author(s): David Shea <dshea@redhat.com>

kernel_args() {
echo vnc
}

prepare() {
ks=$1
tmpdir=$2

echo ${ks}
}

validate() {
img=$1

# There should be a /root/RESULT file with results in it. Check
# its contents and decide whether the test finally succeeded or
# not.
result=$(virt-cat -a ${img} -m /dev/sda2 /root/RESULT)
if [[ $? != 0 ]]; then
status=1
echo '*** /root/RESULT does not exist in VM image.'
elif [[ "${result}" != "SUCCESS" ]]; then
status=1
echo "${result}"
fi

return ${status}
}

0 comments on commit 1e18576

Please sign in to comment.