tito/test/functional/singleproject_tests.py

88 lines
3.1 KiB
Python
Raw Normal View History

2010-05-24 00:56:30 -03:00
#
2010-05-24 11:26:22 -03:00
# Copyright (c) 2008-2010 Red Hat, Inc.
2010-05-24 00:56:30 -03:00
#
# This software is licensed to you under the GNU General Public License,
# version 2 (GPLv2). There is NO WARRANTY for this software, express or
# implied, including the implied warranties of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
# along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#
# Red Hat trademarks are not licensed under GPLv2. No permission is
# granted to use or replicate Red Hat trademarks that are incorporated
# in this software or its documentation.
import os
from tito.common import *
from functional.fixture import TitoGitTestFixture, tito
2010-05-24 00:56:30 -03:00
2010-05-24 11:26:22 -03:00
PKG_NAME = "titotestpkg"
2010-05-24 00:56:30 -03:00
2010-05-24 11:26:22 -03:00
class SingleProjectTests(TitoGitTestFixture):
2010-05-24 00:56:30 -03:00
def setUp(self):
2010-05-24 11:26:22 -03:00
TitoGitTestFixture.setUp(self)
2010-05-24 00:56:30 -03:00
self.create_project(PKG_NAME)
2010-05-24 00:56:30 -03:00
os.chdir(self.repo_dir)
def test_init_worked(self):
2011-11-25 11:30:51 -04:00
# Not actually running init here, just making sure it worked when
2010-05-24 00:56:30 -03:00
# run during setup.
self.assertTrue(os.path.exists(os.path.join(self.repo_dir, "rel-eng")))
self.assertTrue(os.path.exists(os.path.join(self.repo_dir, "rel-eng",
"packages")))
self.assertTrue(os.path.exists(os.path.join(self.repo_dir, "rel-eng",
"tito.props")))
2010-05-24 11:26:22 -03:00
def test_initial_tag(self):
self.assertTrue(tag_exists_locally("%s-0.0.1-1" % PKG_NAME))
def test_tag(self):
tito("tag --accept-auto-changelog --debug")
check_tag_exists("%s-0.0.2-1" % PKG_NAME, offline=True)
def test_tag_with_version(self):
tito("tag --accept-auto-changelog --debug --use-version 9.0.0")
check_tag_exists("%s-9.0.0-1" % PKG_NAME, offline=True)
def test_undo_tag(self):
os.chdir(self.repo_dir)
original_head = getoutput('git show-ref -s refs/heads/master')
# Create tito tag, which adds a new commit and moves head.
tito("tag --accept-auto-changelog --debug")
tag = "%s-0.0.2-1" % PKG_NAME
check_tag_exists(tag, offline=True)
new_head = getoutput('git show-ref -s refs/heads/master')
self.assertNotEqual(original_head, new_head)
# Undo tito tag, which rewinds one commit to original head.
tito("tag -u")
self.assertFalse(tag_exists_locally(tag))
new_head = getoutput('git show-ref -s refs/heads/master')
self.assertEqual(original_head, new_head)
2010-05-24 11:26:22 -03:00
def test_latest_tgz(self):
tito("build --tgz -o %s" % self.repo_dir)
def test_build_tgz_tag(self):
2010-05-24 11:26:22 -03:00
tito("build --tgz --tag=%s-0.0.1-1 -o %s" % (PKG_NAME,
self.repo_dir))
2011-11-25 11:30:51 -04:00
self.assertTrue(os.path.exists(os.path.join(self.repo_dir,
2010-05-24 11:26:22 -03:00
"%s-0.0.1.tar.gz" % PKG_NAME)))
def test_build_latest_srpm(self):
2010-05-24 11:26:22 -03:00
tito("build --srpm")
def test_build_srpm_tag(self):
2011-11-25 11:30:51 -04:00
tito("build --srpm --tag=%s-0.0.1-1 -o %s" % (PKG_NAME, self.repo_dir))
2010-05-24 11:26:22 -03:00
def test_build_latest_rpm(self):
2010-05-24 11:26:22 -03:00
tito("build --rpm -o %s" % self.repo_dir)
def test_build_rpm_tag(self):
2011-11-25 11:30:51 -04:00
tito("build --rpm --tag=%s-0.0.1-1 -o %s" % (PKG_NAME,
2010-05-24 11:26:22 -03:00
self.repo_dir))