view tests/comprehensive/test_sqlite_revmap.py @ 1512:6d0fe7ce9898

commands: fix command option registering A recent patch introduced svnopts as a way of sharing the svn command options between the old and the new way of registering a command. It turns out 'svnopts' was already used further up in the module to define the flags that should be added to *all* Mercurial commands. So our definition of it here cause us to add all of these options to all Mercurial commands. This was caught because it changes --rev to be '' instead of [], which breaks a number of assumptions in the other commands. Given that none of the subversion tests are command line tests, I'm not sure how to test this. It was caught in other extensions tests. (grafted from 3b1334407783a4379fd515e2ed9acc61e3f175ff) (grafted from 6db63ead5556f2bf72e423ca8c6df08ea3a5b009)
author Durham Goode <durham@fb.com>
date Wed, 24 May 2017 15:07:00 -0700
parents f21605bcda24
children
line wrap: on
line source

import os
import unittest
import sys

# wrapped in a try/except because of weirdness in how
# run.py works as compared to nose.
try:
    import test_util
except ImportError:
    sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
    import test_util

# interesting and fast tests
import test_fetch_mappings
import test_fetch_renames
import test_pull
import test_template_keywords
import test_utility_commands

# comprehensive tests
try:
    import test_custom_layout
except ImportError:
    sys.path.insert(0, os.path.dirname(__file__))
    import test_custom_layout

import test_rebuildmeta
import test_updatemeta

from hgsubversion import svnmeta, maps


class SqliteRevMapMixIn(object):
    # do not double the test size by being wrapped again
    obsolete_mode_tests = False
    stupid_mode_tests = False

    def setUp(self):
        assert svnmeta.SVNMeta._defaultrevmapclass is maps.RevMap
        svnmeta.SVNMeta._defaultrevmapclass = maps.SqliteRevMap
        super(SqliteRevMapMixIn, self).setUp()

    def tearDown(self):
        assert svnmeta.SVNMeta._defaultrevmapclass is maps.SqliteRevMap
        svnmeta.SVNMeta._defaultrevmapclass = maps.RevMap
        super(SqliteRevMapMixIn, self).tearDown()

    def shortDescription(self):
        text = super(SqliteRevMapMixIn, self).shortDescription()
        if text:
            text += ' (sqlite revmap)'
        return text

def buildtestclass(cls, selector=None):
    name = 'SqliteRevMap%s' % cls.__name__
    newcls = type(name, (SqliteRevMapMixIn, cls,), {})

    # remove test cases not selected by selector
    if selector:
        for name in dir(newcls):
            if name.startswith('test_') and not selector(name[5:]):
                setattr(newcls, name, None)

    globals()[name] = newcls

def svndumpselector(name):
    return name in ['branch_rename_to_trunk',
                    'tag_name_same_as_branch']

buildtestclass(test_fetch_mappings.MapTests)
buildtestclass(test_fetch_renames.TestFetchRenames)
buildtestclass(test_pull.TestPull)
buildtestclass(test_template_keywords.TestLogKeywords)
buildtestclass(test_utility_commands.UtilityTests)

buildtestclass(test_rebuildmeta.RebuildMetaTests, svndumpselector)
buildtestclass(test_updatemeta.UpdateMetaTests, svndumpselector)