Adds tests according to the CI wiki [0] specifically the standard test interface in the spec [1]. [0]: https://fedoraproject.org/wiki/CI [1]: https://fedoraproject.org/wiki/Changes/InvokingTests
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # vim: dict=/usr/share/rhts-library/dictionary.vim cpt=.,w,b,u,t,i,k
 | |
| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | |
| #
 | |
| #   runtest.sh of /CoreOS/vim/Regression/netrw-plugin-delete-command-broken
 | |
| #   Description: Test for netrw plugin: delete command broken
 | |
| #   Author: Petr Splichal <psplicha@redhat.com>
 | |
| #
 | |
| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | |
| #
 | |
| #   Copyright (c) 2009 Red Hat, Inc. All rights reserved.
 | |
| #
 | |
| #   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 version 2.
 | |
| #
 | |
| #   This program is distributed in the hope that it will be
 | |
| #   useful, but WITHOUT ANY WARRANTY; without even the implied
 | |
| #   warranty 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.
 | |
| #
 | |
| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | |
| 
 | |
| # Include rhts environment
 | |
| . /usr/bin/rhts-environment.sh
 | |
| . /usr/share/rhts-library/rhtslib.sh
 | |
| 
 | |
| PACKAGE="vim-enhanced"
 | |
| 
 | |
| rlJournalStart
 | |
|     rlPhaseStartSetup
 | |
|         rlAssertRpm $PACKAGE
 | |
|         rlRun "TmpDir=\`mktemp -d\`" 0 "Creating tmp directory"
 | |
|         rlRun "pushd $TmpDir"
 | |
|         # create test file & dir
 | |
|         rlRun "touch testfile" 0 "Creating test file"
 | |
|         rlRun "mkdir testdir" 0 "Creating test directory"
 | |
|         rlAssertExists "testfile"
 | |
|         rlAssertExists "testdir"
 | |
|         # create vim scripts
 | |
|         rlRun "echo '/testfile
 | |
| Dy
 | |
| :q' > scriptfile" \
 | |
|                 0 "Creating file delete script"
 | |
|         rlRun "echo '/testdir
 | |
| Dy
 | |
| :q' > scriptdir" \
 | |
|                 0 "Creating directory delete script"
 | |
|     rlPhaseEnd
 | |
| 
 | |
|     rlPhaseStartTest
 | |
|         rlRun "vim . -s scriptfile" 0 "Deleting file using netrw"
 | |
|         rlAssertNotExists "testfile"
 | |
|         rlRun "vim . -s scriptdir" 0 "Deleting directory using netrw"
 | |
|         rlAssertNotExists "testdir"
 | |
|     rlPhaseEnd
 | |
| 
 | |
|     rlPhaseStartCleanup
 | |
|         rlRun "popd"
 | |
|         rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
 | |
|     rlPhaseEnd
 | |
| rlJournalPrintText
 | |
| rlJournalEnd
 |