75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
# Copyright (c) 2012, 2013, 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""Tests the drop module"""
|
|
|
|
from git_upstream.commands import drop as d
|
|
from git_upstream.tests import base
|
|
from git import repo as r
|
|
from git import GitCommandError
|
|
|
|
|
|
class TestDrop(base.BaseTestCase):
|
|
"""Test case for Drop class"""
|
|
|
|
first_commit = "bd6b9eefe961abe8c15cb5dc6905b92e14714a4e"
|
|
second_commit = "05fac847a5629e36050dcd69b9a782b2645d3cc7"
|
|
invalid_commit = "this_is_an_invalid_commit"
|
|
author = "Walter White <heisenberg@hp.com>"
|
|
note_ref = 'refs/notes/upstream-merge'
|
|
|
|
def test_valid_parameters(self):
|
|
"""Test drop initialization and read properties"""
|
|
|
|
repo = r.Repo('.')
|
|
automatic_author = '%s <%s>' % (repo.git.config('user.name'),
|
|
repo.git.config('user.email'))
|
|
t = d.Drop(git_object=TestDrop.first_commit)
|
|
self.assertEquals(t.author, automatic_author)
|
|
|
|
t = d.Drop(git_object=TestDrop.first_commit, author=TestDrop.author)
|
|
self.assertEquals(t.author, TestDrop.author)
|
|
|
|
def test_invalid_commit(self):
|
|
"""Test drop initialization with invalid commit"""
|
|
|
|
self.assertRaises(d.DropError, d.Drop,
|
|
git_object=TestDrop.invalid_commit)
|
|
|
|
def test_mark(self):
|
|
"""Test drop mark"""
|
|
|
|
t = d.Drop(git_object=TestDrop.first_commit, author=TestDrop.author)
|
|
|
|
repo = r.Repo('.')
|
|
try:
|
|
# Older git versions don't support --ignore-missing so we need to
|
|
# catch GitCommandError exception
|
|
repo.git.notes('--ref', TestDrop.note_ref, 'remove',
|
|
TestDrop.first_commit)
|
|
except GitCommandError:
|
|
pass
|
|
|
|
t.mark()
|
|
|
|
self.assertRegexpMatches(
|
|
'^Dropped: %s' % TestDrop.author,
|
|
repo.git.notes('--ref', TestDrop.note_ref, 'show',
|
|
TestDrop.first_commit)
|
|
)
|
|
|
|
repo.git.notes('--ref', TestDrop.note_ref, 'remove',
|
|
TestDrop.first_commit)
|