view tests/test_svn_pre_commit_hooks.py @ 1206:aa8b72bd1320

test_push_command: improve commit messages inside test for diagnostics This let me determine a little bit of a disturbing test failure: test_push_existing_file_newly_symlink is broken against svn 1.8.8 for me (and against svn 1.8.9 for Sean). This isn't a regression on our part, but we need to work around this in the near future.
author Augie Fackler <raf@durin42.com>
date Wed, 16 Jul 2014 14:52:33 -0400
parents d741f536f23a
children cff81f35b31e
line wrap: on
line source

import os
import sys
import test_util
import unittest

from mercurial import hg
from mercurial import commands
from mercurial import util


class TestSvnPreCommitHooks(test_util.TestBase):
    def setUp(self):
        super(TestSvnPreCommitHooks, self).setUp()
        self.repo_path = self.load_and_fetch('single_rev.svndump')[1]
        # creating pre-commit hook that doesn't allow any commit
        hook_file_name = os.path.join(
			self.repo_path, 'hooks', 'pre-commit'
        )
        hook_file = open(hook_file_name, 'w')
        hook_file.write(
        	'#!/bin/sh\n'
        	'echo "Commits are not allowed" >&2; exit 1;\n'
        )
        hook_file.close()
        os.chmod(hook_file_name, 0755)

    def test_push_with_pre_commit_hooks(self):
        changes = [('narf/a', 'narf/a', 'ohai',),
                   ]
        self.commitchanges(changes)
        self.assertRaises(util.Abort, self.pushrevisions)