
Allows Repository_getitem, Repository_read(_raw), Repository_create_commit, Repository_create_tag and Object_read_raw to use short hex strings to lookup objects. Also test getting objects from Repository using prefixes, looking up commit trees and parents by hex prefix, and looking up tag targets by prefix. Also stop raising TypeError if passing a too-short hex prefix to the lookup functions, instead use ValueError.
96 lines
3.5 KiB
Python
96 lines
3.5 KiB
Python
# -*- coding: UTF-8 -*-
|
|
#
|
|
# Copyright 2010 Google, Inc.
|
|
#
|
|
# This file is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License, version 2,
|
|
# as published by the Free Software Foundation.
|
|
#
|
|
# In addition to the permissions in the GNU General Public License,
|
|
# the authors give you unlimited permission to link the compiled
|
|
# version of this file into combinations with other programs,
|
|
# and to distribute those combinations without any restriction
|
|
# coming from the use of this file. (The General Public License
|
|
# restrictions do apply in other respects; for example, they cover
|
|
# modification of the file, and distribution when not linked into
|
|
# a combined executable.)
|
|
#
|
|
# This file 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; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
"""Tests for Tag objects."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import unicode_literals
|
|
import unittest
|
|
|
|
import pygit2
|
|
from . import utils
|
|
|
|
|
|
__author__ = 'dborowitz@google.com (Dave Borowitz)'
|
|
|
|
TAG_SHA = '3d2962987c695a29f1f80b6c3aa4ec046ef44369'
|
|
|
|
|
|
class TagTest(utils.BareRepoTestCase):
|
|
|
|
def test_read_tag(self):
|
|
tag = self.repo[TAG_SHA]
|
|
self.assertTrue(isinstance(tag, pygit2.Tag))
|
|
self.assertEqual(pygit2.GIT_OBJ_TAG, tag.type)
|
|
self.assertEqual(pygit2.GIT_OBJ_COMMIT, tag.target.type)
|
|
self.assertEqual('root', tag.name)
|
|
self.assertEqual(
|
|
('Dave Borowitz', 'dborowitz@google.com', 1288724692, -420),
|
|
tag.tagger)
|
|
self.assertEqual('Tagged root commit.\n', tag.message)
|
|
|
|
commit = tag.target
|
|
self.assertEqual('Initial test data commit.\n', commit.message)
|
|
|
|
def test_new_tag(self):
|
|
name = 'thetag'
|
|
target = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
|
|
message = 'Tag a blob.\n'
|
|
tagger = ('John Doe', 'jdoe@example.com', 12347, 0)
|
|
|
|
target_prefix = target[:5]
|
|
too_short_prefix = target[:3]
|
|
self.assertRaises(ValueError, self.repo.create_tag, name,
|
|
too_short_prefix, pygit2.GIT_OBJ_BLOB, tagger,
|
|
message)
|
|
sha = self.repo.create_tag(name, target_prefix, pygit2.GIT_OBJ_BLOB,
|
|
tagger, message)
|
|
tag = self.repo[sha]
|
|
|
|
self.assertEqual('3ee44658fd11660e828dfc96b9b5c5f38d5b49bb', tag.hex)
|
|
self.assertEqual(name, tag.name)
|
|
self.assertEqual(target, tag.target.hex)
|
|
self.assertEqual(tagger, tag.tagger)
|
|
self.assertEqual(message, tag.message)
|
|
self.assertEqual(name, self.repo[tag.hex].name)
|
|
|
|
def test_modify_tag(self):
|
|
name = 'thetag'
|
|
target = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
|
|
message = 'Tag a blob.\n'
|
|
tagger = ('John Doe', 'jdoe@example.com', 12347)
|
|
|
|
tag = self.repo[TAG_SHA]
|
|
self.assertRaises(AttributeError, setattr, tag, 'name', name)
|
|
self.assertRaises(AttributeError, setattr, tag, 'target', target)
|
|
self.assertRaises(AttributeError, setattr, tag, 'tagger', tagger)
|
|
self.assertRaises(AttributeError, setattr, tag, 'message', message)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|