3 # run_tests.py: test suite for cvs2svn
5 # Usage: run_tests.py [-v | --verbose] [list | <num>]
9 # enable verbose output
11 # Arguments (at most one argument is allowed):
13 # If the word "list" is passed as an argument, the list of
14 # available tests is printed (but no tests are run).
17 # If a number is passed as an argument, then only the test
18 # with that number is run.
20 # If no argument is specified, then all tests are run.
22 # Subversion is a tool for revision control.
23 # See http://subversion.tigris.org for more information.
25 # ====================================================================
26 # Copyright (c) 2000-2009 CollabNet. All rights reserved.
28 # This software is licensed as described in the file COPYING, which
29 # you should have received as part of this distribution. The terms
30 # are also available at http://subversion.tigris.org/license-1.html.
31 # If newer versions of this license are posted there, you may use a
32 # newer version instead, at your option.
34 ######################################################################
49 from hashlib
import md5
52 from difflib
import Differ
54 # Make sure that a supported version of Python is being used:
55 if not (0x02040000 <= sys
.hexversion
< 0x03000000):
57 'error: Python 2, version 2.4 or higher required.\n'
61 # This script needs to run in the correct directory. Make sure we're there.
62 if not (os
.path
.exists('cvs2svn') and os
.path
.exists('test-data')):
63 sys
.stderr
.write("error: I need to be run in the directory containing "
64 "'cvs2svn' and 'test-data'.\n")
67 # Load the Subversion test framework.
69 from svntest
import Failure
70 from svntest
.main
import safe_rmtree
71 from svntest
.testcase
import TestCase
72 from svntest
.testcase
import XFail
74 # Test if Mercurial >= 1.1 is available.
76 from mercurial
import context
79 except (ImportError, AttributeError):
82 cvs2svn
= os
.path
.abspath('cvs2svn')
83 cvs2git
= os
.path
.abspath('cvs2git')
84 cvs2hg
= os
.path
.abspath('cvs2hg')
86 # We use the installed svn and svnlook binaries, instead of using
87 # svntest.main.run_svn() and svntest.main.run_svnlook(), because the
88 # behavior -- or even existence -- of local builds shouldn't affect
89 # the cvs2svn test suite.
91 svnlook_binary
= 'svnlook'
92 svnadmin_binary
= 'svnadmin'
93 svnversion_binary
= 'svnversion'
95 test_data_dir
= 'test-data'
96 tmp_dir
= 'cvs2svn-tmp'
99 #----------------------------------------------------------------------
101 #----------------------------------------------------------------------
104 # The value to expect for svn:keywords if it is set:
105 KEYWORDS
= 'Author Date Id Revision'
108 class RunProgramException(Failure
):
112 class MissingErrorException(Failure
):
113 def __init__(self
, error_re
):
115 self
, "Test failed because no error matched '%s'" % (error_re
,)
119 def run_program(program
, error_re
, *varargs
):
120 """Run PROGRAM with VARARGS, return stdout as a list of lines.
122 If there is any stderr and ERROR_RE is None, raise
123 RunProgramException, and print the stderr lines if
124 svntest.main.options.verbose is true.
126 If ERROR_RE is not None, it is a string regular expression that must
127 match some line of stderr. If it fails to match, raise
128 MissingErrorExpection."""
130 # FIXME: exit_code is currently ignored.
131 exit_code
, out
, err
= svntest
.main
.run_command(program
, 1, 0, *varargs
)
134 # Specified error expected on stderr.
136 raise MissingErrorException(error_re
)
139 if re
.match(error_re
, line
):
141 raise MissingErrorException(error_re
)
145 if svntest
.main
.options
.verbose
:
146 print '\n%s said:\n' % program
150 raise RunProgramException()
155 def run_script(script
, error_re
, *varargs
):
156 """Run Python script SCRIPT with VARARGS, returning stdout as a list
159 If there is any stderr and ERROR_RE is None, raise
160 RunProgramException, and print the stderr lines if
161 svntest.main.options.verbose is true.
163 If ERROR_RE is not None, it is a string regular expression that must
164 match some line of stderr. If it fails to match, raise
165 MissingErrorException."""
167 # Use the same python that is running this script
168 return run_program(sys
.executable
, error_re
, script
, *varargs
)
169 # On Windows, for an unknown reason, the cmd.exe process invoked by
170 # os.system('sort ...') in cvs2svn receives invalid stdio handles, if
171 # cvs2svn is started as "cvs2svn ...". "python cvs2svn ..." avoids
172 # this. Therefore, the redirection of the output to the .s-revs file fails.
173 # We no longer use the problematic invocation on any system, but this
174 # comment remains to warn about this problem.
177 def run_svn(*varargs
):
178 """Run svn with VARARGS; return stdout as a list of lines.
179 If there is any stderr, raise RunProgramException, and print the
180 stderr lines if svntest.main.options.verbose is true."""
181 return run_program(svn_binary
, None, *varargs
)
184 def repos_to_url(path_to_svn_repos
):
185 """This does what you think it does."""
186 rpath
= os
.path
.abspath(path_to_svn_repos
)
189 return 'file://%s' % rpath
.replace(os
.sep
, '/')
192 def svn_strptime(timestr
):
193 return time
.strptime(timestr
, '%Y-%m-%d %H:%M:%S')
197 def __init__(self
, revision
, author
, date
, symbols
):
198 self
.revision
= revision
201 # Internally, we represent the date as seconds since epoch (UTC).
202 # Since standard subversion log output shows dates in localtime
204 # "1993-06-18 00:46:07 -0500 (Fri, 18 Jun 1993)"
206 # and time.mktime() converts from localtime, it all works out very
208 self
.date
= time
.mktime(svn_strptime(date
[0:19]))
210 # The following symbols are used for string interpolation when
212 self
.symbols
= symbols
214 # The changed paths will be accumulated later, as log data is read.
215 # Keys here are paths such as '/trunk/foo/bar', values are letter
216 # codes such as 'M', 'A', and 'D'.
217 self
.changed_paths
= { }
219 # The msg will be accumulated later, as log data is read.
222 def absorb_changed_paths(self
, out
):
223 'Read changed paths from OUT into self, until no more.'
225 line
= out
.readline()
226 if len(line
) == 1: return
228 op_portion
= line
[3:4]
229 path_portion
= line
[5:]
230 # If we're running on Windows we get backslashes instead of
232 path_portion
= path_portion
.replace('\\', '/')
233 # # We could parse out history information, but currently we
234 # # just leave it in the path portion because that's how some
237 # m = re.match("(.*) \(from /.*:[0-9]+\)", path_portion)
239 # path_portion = m.group(1)
240 self
.changed_paths
[path_portion
] = op_portion
242 def __cmp__(self
, other
):
243 return cmp(self
.revision
, other
.revision
) or \
244 cmp(self
.author
, other
.author
) or cmp(self
.date
, other
.date
) or \
245 cmp(self
.changed_paths
, other
.changed_paths
) or \
246 cmp(self
.msg
, other
.msg
)
248 def get_path_op(self
, path
):
249 """Return the operator for the change involving PATH.
251 PATH is allowed to include string interpolation directives (e.g.,
252 '%(trunk)s'), which are interpolated against self.symbols. Return
253 None if there is no record for PATH."""
254 return self
.changed_paths
.get(path
% self
.symbols
)
256 def check_msg(self
, msg
):
257 """Verify that this Log's message starts with the specified MSG."""
258 if self
.msg
.find(msg
) != 0:
260 "Revision %d log message was:\n%s\n\n"
261 "It should have begun with:\n%s\n\n"
262 % (self
.revision
, self
.msg
, msg
,)
265 def check_change(self
, path
, op
):
266 """Verify that this Log includes a change for PATH with operator OP.
268 PATH is allowed to include string interpolation directives (e.g.,
269 '%(trunk)s'), which are interpolated against self.symbols."""
271 path
= path
% self
.symbols
272 found_op
= self
.changed_paths
.get(path
, None)
275 "Revision %d does not include change for path %s "
276 "(it should have been %s).\n"
277 % (self
.revision
, path
, op
,)
281 "Revision %d path %s had op %s (it should have been %s)\n"
282 % (self
.revision
, path
, found_op
, op
,)
285 def check_changes(self
, changed_paths
):
286 """Verify that this Log has precisely the CHANGED_PATHS specified.
288 CHANGED_PATHS is a sequence of tuples (path, op), where the paths
289 strings are allowed to include string interpolation directives
290 (e.g., '%(trunk)s'), which are interpolated against self.symbols."""
293 for (path
, op
) in changed_paths
:
294 cp
[path
% self
.symbols
] = op
296 if self
.changed_paths
!= cp
:
298 "Revision %d changed paths list was:\n%s\n\n"
299 "It should have been:\n%s\n\n"
300 % (self
.revision
, self
.changed_paths
, cp
,)
303 def check(self
, msg
, changed_paths
):
304 """Verify that this Log has the MSG and CHANGED_PATHS specified.
306 Convenience function to check two things at once. MSG is passed
307 to check_msg(); CHANGED_PATHS is passed to check_changes()."""
310 self
.check_changes(changed_paths
)
313 def parse_log(svn_repos
, symbols
):
314 """Return a dictionary of Logs, keyed on revision number, for SVN_REPOS.
316 Initialize the Logs' symbols with SYMBOLS."""
319 'Make a list of lines behave like an open file handle.'
320 def __init__(self
, lines
):
323 if len(self
.lines
) > 0:
324 return self
.lines
.pop(0)
328 def absorb_message_body(out
, num_lines
, log
):
329 """Read NUM_LINES of log message body from OUT into Log item LOG."""
331 for i
in range(num_lines
):
332 log
.msg
+= out
.readline()
334 log_start_re
= re
.compile('^r(?P<rev>[0-9]+) \| '
335 '(?P<author>[^\|]+) \| '
337 '\| (?P<lines>[0-9]+) (line|lines)$')
339 log_separator
= '-' * 72
343 out
= LineFeeder(run_svn('log', '-v', repos_to_url(svn_repos
)))
347 line
= out
.readline()
351 if line
.find(log_separator
) == 0:
352 line
= out
.readline()
355 m
= log_start_re
.match(line
)
358 int(m
.group('rev')), m
.group('author'), m
.group('date'), symbols
)
359 line
= out
.readline()
360 if not line
.find('Changed paths:') == 0:
361 print 'unexpected log output (missing changed paths)'
362 print "Line: '%s'" % line
364 this_log
.absorb_changed_paths(out
)
365 absorb_message_body(out
, int(m
.group('lines')), this_log
)
366 logs
[this_log
.revision
] = this_log
368 break # We've reached the end of the log output.
370 print 'unexpected log output (missing revision line)'
371 print "Line: '%s'" % line
374 print 'unexpected log output (missing log separator)'
375 print "Line: '%s'" % line
382 """Unconditionally remove PATH and its subtree, if any. PATH may be
383 non-existent, a file or symlink, or a directory."""
384 if os
.path
.isdir(path
):
386 elif os
.path
.exists(path
):
390 log_msg_text_wrapper
= textwrap
.TextWrapper(width
=76, break_long_words
=False)
392 def sym_log_msg(symbolic_name
, is_tag
=None):
393 """Return the expected log message for a cvs2svn-synthesized revision
394 creating branch or tag SYMBOLIC_NAME."""
396 # This reproduces the logic in SVNSymbolCommit.get_log_msg().
402 return log_msg_text_wrapper
.fill(
403 "This commit was manufactured by cvs2svn to create %s '%s'."
404 % (type, symbolic_name
)
408 def make_conversion_id(
409 name
, args
, passbypass
, options_file
=None, symbol_hints_file
=None
411 """Create an identifying tag for a conversion.
413 The return value can also be used as part of a filesystem path.
415 NAME is the name of the CVS repository.
417 ARGS are the extra arguments to be passed to cvs2svn.
419 PASSBYPASS is a boolean indicating whether the conversion is to be
420 run one pass at a time.
422 If OPTIONS_FILE is specified, it is an options file that will be
423 used for the conversion.
425 If SYMBOL_HINTS_FILE is specified, it is a symbol hints file that
426 will be used for the conversion.
428 The 1-to-1 mapping between cvs2svn command parameters and
429 conversion_ids allows us to avoid running the same conversion more
430 than once, when multiple tests use exactly the same conversion."""
437 args
.append('--passbypass')
439 if symbol_hints_file
is not None:
440 args
.append('--symbol-hints=%s' % (symbol_hints_file
,))
442 # There are some characters that are forbidden in filenames, and
443 # there is a limit on the total length of a path to a file. So use
444 # a hash of the parameters rather than concatenating the parameters
447 conv_id
+= "-" + md5('\0'.join(args
)).hexdigest()
449 # Some options-file based tests rely on knowing the paths to which
450 # the repository should be written, so we handle that option as a
451 # predictable string:
452 if options_file
is not None:
453 conv_id
+= '--options=%s' % (options_file
,)
459 """A record of a cvs2svn conversion.
463 conv_id -- the conversion id for this Conversion.
465 name -- a one-word name indicating the involved repositories.
467 dumpfile -- the name of the SVN dumpfile created by the conversion
468 (if the DUMPFILE constructor argument was used); otherwise,
471 repos -- the path to the svn repository. Unset if DUMPFILE was
474 logs -- a dictionary of Log instances, as returned by parse_log().
475 Unset if DUMPFILE was specified.
477 symbols -- a dictionary of symbols used for string interpolation
480 stdout -- a list of lines written by cvs2svn to stdout
482 _wc -- the basename of the svn working copy (within tmp_dir).
483 Unset if DUMPFILE was specified.
485 _wc_path -- the path to the svn working copy, if it has already
486 been created; otherwise, None. (The working copy is created
487 lazily when get_wc() is called.) Unset if DUMPFILE was
490 _wc_tree -- the tree built from the svn working copy, if it has
491 already been created; otherwise, None. The tree is created
492 lazily when get_wc_tree() is called.) Unset if DUMPFILE was
495 _svnrepos -- the basename of the svn repository (within tmp_dir).
496 Unset if DUMPFILE was specified."""
498 # The number of the last cvs2svn pass (determined lazily by
503 def get_last_pass(cls
):
504 """Return the number of cvs2svn's last pass."""
506 if cls
.last_pass
is None:
507 out
= run_script(cvs2svn
, None, '--help-passes')
508 cls
.last_pass
= int(out
[-1].split()[0])
512 self
, conv_id
, name
, error_re
, passbypass
, symbols
, args
,
513 options_file
=None, symbol_hints_file
=None, dumpfile
=None,
515 self
.conv_id
= conv_id
517 self
.symbols
= symbols
518 if not os
.path
.isdir(tmp_dir
):
521 cvsrepos
= os
.path
.join(test_data_dir
, '%s-cvsrepos' % self
.name
)
524 self
.dumpfile
= os
.path
.join(tmp_dir
, dumpfile
)
525 # Clean up from any previous invocations of this script.
529 self
.repos
= os
.path
.join(tmp_dir
, '%s-svnrepos' % self
.conv_id
)
530 self
._wc
= os
.path
.join(tmp_dir
, '%s-wc' % self
.conv_id
)
534 # Clean up from any previous invocations of this script.
540 '--svnadmin=%s' % (svntest
.main
.svnadmin_binary
,),
543 self
.options_file
= os
.path
.join(cvsrepos
, options_file
)
545 '--options=%s' % self
.options_file
,
547 assert not symbol_hints_file
549 self
.options_file
= None
550 if tmp_dir
!= 'cvs2svn-tmp':
551 # Only include this argument if it differs from cvs2svn's default:
553 '--tmpdir=%s' % tmp_dir
,
556 if symbol_hints_file
:
557 self
.symbol_hints_file
= os
.path
.join(cvsrepos
, symbol_hints_file
)
559 '--symbol-hints=%s' % self
.symbol_hints_file
,
563 args
.extend(['--dumpfile=%s' % (self
.dumpfile
,)])
565 args
.extend(['-s', self
.repos
])
566 args
.extend([cvsrepos
])
570 for p
in range(1, self
.get_last_pass() + 1):
571 self
.stdout
+= run_script(cvs2svn
, error_re
, '-p', str(p
), *args
)
573 self
.stdout
= run_script(cvs2svn
, error_re
, *args
)
576 if not os
.path
.isfile(self
.dumpfile
):
578 "Dumpfile not created: '%s'"
579 % os
.path
.join(os
.getcwd(), self
.dumpfile
)
582 if os
.path
.isdir(self
.repos
):
583 self
.logs
= parse_log(self
.repos
, self
.symbols
)
584 elif error_re
is None:
586 "Repository not created: '%s'"
587 % os
.path
.join(os
.getcwd(), self
.repos
)
590 def output_found(self
, pattern
):
591 """Return True if PATTERN matches any line in self.stdout.
593 PATTERN is a regular expression pattern as a string.
596 pattern_re
= re
.compile(pattern
)
598 for line
in self
.stdout
:
599 if pattern_re
.match(line
):
600 # We found the pattern that we were looking for.
605 def find_tag_log(self
, tagname
):
606 """Search LOGS for a log message containing 'TAGNAME' and return the
607 log in which it was found."""
608 for i
in xrange(len(self
.logs
), 0, -1):
609 if self
.logs
[i
].msg
.find("'"+tagname
+"'") != -1:
611 raise ValueError("Tag %s not found in logs" % tagname
)
613 def get_wc(self
, *args
):
614 """Return the path to the svn working copy, or a path within the WC.
616 If a working copy has not been created yet, create it now.
618 If ARGS are specified, then they should be strings that form
619 fragments of a path within the WC. They are joined using
620 os.path.join() and appended to the WC path."""
622 if self
._wc
_path
is None:
623 run_svn('co', repos_to_url(self
.repos
), self
._wc
)
624 self
._wc
_path
= self
._wc
625 return os
.path
.join(self
._wc
_path
, *args
)
627 def get_wc_tree(self
):
628 if self
._wc
_tree
is None:
629 self
._wc
_tree
= svntest
.tree
.build_tree_from_wc(self
.get_wc(), 1)
632 def path_exists(self
, *args
):
633 """Return True if the specified path exists within the repository.
635 (The strings in ARGS are first joined into a path using
638 return os
.path
.exists(self
.get_wc(*args
))
640 def check_props(self
, keys
, checks
):
641 """Helper function for checking lots of properties. For a list of
642 files in the conversion, check that the values of the properties
643 listed in KEYS agree with those listed in CHECKS. CHECKS is a
644 list of tuples: [ (filename, [value, value, ...]), ...], where the
645 values are listed in the same order as the key names are listed in
648 for (file, values
) in checks
:
649 assert len(values
) == len(keys
)
650 props
= props_for_path(self
.get_wc_tree(), file)
651 for i
in range(len(keys
)):
652 if props
.get(keys
[i
]) != values
[i
]:
654 "File %s has property %s set to \"%s\" "
655 "(it should have been \"%s\").\n"
656 % (file, keys
[i
], props
.get(keys
[i
]), values
[i
],)
661 """A record of a cvs2svn conversion.
665 name -- a one-word name indicating the CVS repository to be converted.
667 stdout -- a list of lines written by cvs2svn to stdout."""
669 def __init__(self
, name
, error_re
, args
, options_file
=None):
671 if not os
.path
.isdir(tmp_dir
):
674 cvsrepos
= os
.path
.join(test_data_dir
, '%s-cvsrepos' % self
.name
)
678 self
.options_file
= os
.path
.join(cvsrepos
, options_file
)
680 '--options=%s' % self
.options_file
,
683 self
.options_file
= None
685 self
.stdout
= run_script(cvs2git
, error_re
, *args
)
688 # Cache of conversions that have already been done. Keys are conv_id;
689 # values are Conversion instances.
690 already_converted
= { }
692 def ensure_conversion(
693 name
, error_re
=None, passbypass
=None,
694 trunk
=None, branches
=None, tags
=None,
695 args
=None, options_file
=None, symbol_hints_file
=None, dumpfile
=None,
697 """Convert CVS repository NAME to Subversion, but only if it has not
698 been converted before by this invocation of this script. If it has
699 been converted before, return the Conversion object from the
702 If no error, return a Conversion instance.
704 If ERROR_RE is a string, it is a regular expression expected to
705 match some line of stderr printed by the conversion. If there is an
706 error and ERROR_RE is not set, then raise Failure.
708 If PASSBYPASS is set, then cvs2svn is run multiple times, each time
709 with a -p option starting at 1 and increasing to a (hardcoded) maximum.
711 NAME is just one word. For example, 'main' would mean to convert
712 './test-data/main-cvsrepos', and after the conversion, the resulting
713 Subversion repository would be in './cvs2svn-tmp/main-svnrepos', and
714 a checked out head working copy in './cvs2svn-tmp/main-wc'.
716 Any other options to pass to cvs2svn should be in ARGS, each element
717 being one option, e.g., '--trunk-only'. If the option takes an
718 argument, include it directly, e.g., '--mime-types=PATH'. Arguments
719 are passed to cvs2svn in the order that they appear in ARGS.
721 If OPTIONS_FILE is specified, then it should be the name of a file
722 within the main directory of the cvs repository associated with this
723 test. It is passed to cvs2svn using the --options option (which
724 suppresses some other options that are incompatible with --options).
726 If SYMBOL_HINTS_FILE is specified, then it should be the name of a
727 file within the main directory of the cvs repository associated with
728 this test. It is passed to cvs2svn using the --symbol-hints option.
730 If DUMPFILE is specified, then it is the name of a dumpfile within
731 the temporary directory to which the conversion output should be
742 args
.append('--trunk=%s' % (trunk
,))
745 branches
= 'branches'
747 args
.append('--branches=%s' % (branches
,))
752 args
.append('--tags=%s' % (tags
,))
754 conv_id
= make_conversion_id(
755 name
, args
, passbypass
, options_file
, symbol_hints_file
758 if conv_id
not in already_converted
:
760 # Run the conversion and store the result for the rest of this
762 already_converted
[conv_id
] = Conversion(
763 conv_id
, name
, error_re
, passbypass
,
764 {'trunk' : trunk
, 'branches' : branches
, 'tags' : tags
},
765 args
, options_file
, symbol_hints_file
, dumpfile
,
768 # Remember the failure so that a future attempt to run this conversion
769 # does not bother to retry, but fails immediately.
770 already_converted
[conv_id
] = None
773 conv
= already_converted
[conv_id
]
779 class Cvs2SvnTestFunction(TestCase
):
780 """A TestCase based on a naked Python function object.
782 FUNC should be a function that returns None on success and throws an
783 svntest.Failure exception on failure. It should have a brief
784 docstring describing what it does (and fulfilling certain
785 conditions). FUNC must take no arguments.
787 This class is almost identical to svntest.testcase.FunctionTestCase,
788 except that the test function does not require a sandbox and does
789 not accept any parameter (not even sandbox=None).
791 This class can be used as an annotation on a Python function.
795 def __init__(self
, func
):
796 # it better be a function that accepts no parameters and has a
798 assert isinstance(func
, types
.FunctionType
)
800 name
= func
.func_name
802 assert func
.func_code
.co_argcount
== 0, \
803 '%s must not take any arguments' % name
805 doc
= func
.__doc
__.strip()
806 assert doc
, '%s must have a docstring' % name
808 # enforce stylistic guidelines for the function docstrings:
809 # - no longer than 50 characters
810 # - should not end in a period
811 # - should not be capitalized
812 assert len(doc
) <= 50, \
813 "%s's docstring must be 50 characters or less" % name
814 assert doc
[-1] != '.', \
815 "%s's docstring should not end in a period" % name
816 assert doc
[0].lower() == doc
[0], \
817 "%s's docstring should not be capitalized" % name
819 TestCase
.__init
__(self
, doc
=doc
)
822 def get_function_name(self
):
823 return self
.func
.func_name
825 def get_sandbox_name(self
):
828 def run(self
, sandbox
):
832 class Cvs2HgTestFunction(Cvs2SvnTestFunction
):
833 """Same as Cvs2SvnTestFunction, but for test cases that should be
834 skipped if Mercurial is not available.
836 def run(self
, sandbox
):
843 class Cvs2SvnTestCase(TestCase
):
845 self
, name
, doc
=None, variant
=None,
846 error_re
=None, passbypass
=None,
847 trunk
=None, branches
=None, tags
=None,
849 options_file
=None, symbol_hints_file
=None, dumpfile
=None,
854 # By default, use the first line of the class docstring as the
856 doc
= self
.__doc
__.splitlines()[0]
858 if variant
is not None:
859 # Modify doc to show the variant. Trim doc first if necessary
860 # to stay within the 50-character limit.
861 suffix
= '...variant %s' % (variant
,)
862 doc
= doc
[:50 - len(suffix
)] + suffix
864 TestCase
.__init
__(self
, doc
=doc
)
866 self
.error_re
= error_re
867 self
.passbypass
= passbypass
869 self
.branches
= branches
872 self
.options_file
= options_file
873 self
.symbol_hints_file
= symbol_hints_file
874 self
.dumpfile
= dumpfile
876 def ensure_conversion(self
):
877 return ensure_conversion(
879 error_re
=self
.error_re
, passbypass
=self
.passbypass
,
880 trunk
=self
.trunk
, branches
=self
.branches
, tags
=self
.tags
,
882 options_file
=self
.options_file
,
883 symbol_hints_file
=self
.symbol_hints_file
,
884 dumpfile
=self
.dumpfile
,
887 def get_sandbox_name(self
):
891 class Cvs2SvnPropertiesTestCase(Cvs2SvnTestCase
):
892 """Test properties resulting from a conversion."""
894 def __init__(self
, name
, props_to_test
, expected_props
, **kw
):
895 """Initialize an instance of Cvs2SvnPropertiesTestCase.
897 NAME is the name of the test, passed to Cvs2SvnTestCase.
898 PROPS_TO_TEST is a list of the names of svn properties that should
899 be tested. EXPECTED_PROPS is a list of tuples [(filename,
900 [value,...])], where the second item in each tuple is a list of
901 values expected for the properties listed in PROPS_TO_TEST for the
902 specified filename. If a property must *not* be set, then its
903 value should be listed as None."""
905 Cvs2SvnTestCase
.__init
__(self
, name
, **kw
)
906 self
.props_to_test
= props_to_test
907 self
.expected_props
= expected_props
910 conv
= self
.ensure_conversion()
911 conv
.check_props(self
.props_to_test
, self
.expected_props
)
914 #----------------------------------------------------------------------
916 #----------------------------------------------------------------------
921 "cvs2svn with no arguments shows usage"
922 out
= run_script(cvs2svn
, None)
923 if (len(out
) > 2 and out
[0].find('ERROR:') == 0
924 and out
[1].find('DBM module')):
925 print 'cvs2svn cannot execute due to lack of proper DBM module.'
926 print 'Exiting without running any further tests.'
928 if out
[0].find('Usage:') < 0:
929 raise Failure('Basic cvs2svn invocation failed.')
933 def cvs2svn_manpage():
934 "generate a manpage for cvs2svn"
935 out
= run_script(cvs2svn
, None, '--man')
939 def cvs2git_manpage():
940 "generate a manpage for cvs2git"
941 out
= run_script(cvs2git
, None, '--man')
945 def cvs2hg_manpage():
946 "generate a manpage for cvs2hg"
947 out
= run_script(cvs2hg
, None, '--man')
951 def show_help_passes():
952 "cvs2svn --help-passes shows pass information"
953 out
= run_script(cvs2svn
, None, '--help-passes')
954 if out
[0].find('PASSES') < 0:
955 raise Failure('cvs2svn --help-passes failed.')
960 "detection of the executable flag"
961 if sys
.platform
== 'win32':
963 conv
= ensure_conversion('main')
964 st
= os
.stat(conv
.get_wc('trunk', 'single-files', 'attr-exec'))
965 if not st
.st_mode
& stat
.S_IXUSR
:
971 "conversion of filename with a space"
972 conv
= ensure_conversion('main')
973 if not conv
.path_exists('trunk', 'single-files', 'space fname'):
979 "two commits in quick succession"
980 conv
= ensure_conversion('main')
982 os
.path
.join(conv
.repos
, 'trunk', 'single-files', 'twoquick'), {})
987 class PruneWithCare(Cvs2SvnTestCase
):
988 "prune, but never too much"
990 def __init__(self
, **kw
):
991 Cvs2SvnTestCase
.__init
__(self
, 'main', **kw
)
994 # Robert Pluim encountered this lovely one while converting the
995 # directory src/gnu/usr.bin/cvs/contrib/pcl-cvs/ in FreeBSD's CVS
996 # repository (see issue #1302). Step 4 is the doozy:
998 # revision 1: adds trunk/blah/, adds trunk/blah/cookie
999 # revision 2: adds trunk/blah/NEWS
1000 # revision 3: deletes trunk/blah/cookie
1001 # revision 4: deletes blah [re-deleting trunk/blah/cookie pruned blah!]
1002 # revision 5: does nothing
1004 # After fixing cvs2svn, the sequence (correctly) looks like this:
1006 # revision 1: adds trunk/blah/, adds trunk/blah/cookie
1007 # revision 2: adds trunk/blah/NEWS
1008 # revision 3: deletes trunk/blah/cookie
1009 # revision 4: does nothing [because trunk/blah/cookie already deleted]
1010 # revision 5: deletes blah
1012 # The difference is in 4 and 5. In revision 4, it's not correct to
1013 # prune blah/, because NEWS is still in there, so revision 4 does
1014 # nothing now. But when we delete NEWS in 5, that should bubble up
1015 # and prune blah/ instead.
1017 # ### Note that empty revisions like 4 are probably going to become
1018 # ### at least optional, if not banished entirely from cvs2svn's
1019 # ### output. Hmmm, or they may stick around, with an extra
1020 # ### revision property explaining what happened. Need to think
1021 # ### about that. In some sense, it's a bug in Subversion itself,
1022 # ### that such revisions don't show up in 'svn log' output.
1024 # In the test below, 'trunk/full-prune/first' represents
1025 # cookie, and 'trunk/full-prune/second' represents NEWS.
1027 conv
= self
.ensure_conversion()
1029 # Confirm that revision 4 removes '/trunk/full-prune/first',
1030 # and that revision 6 removes '/trunk/full-prune'.
1032 # Also confirm similar things about '/full-prune-reappear/...',
1033 # which is similar, except that later on it reappears, restored
1034 # from pruneland, because a file gets added to it.
1036 # And finally, a similar thing for '/partial-prune/...', except that
1037 # in its case, a permanent file on the top level prevents the
1038 # pruning from going farther than the subdirectory containing first
1041 for path
in ('full-prune/first',
1042 'full-prune-reappear/sub/first',
1043 'partial-prune/sub/first'):
1044 conv
.logs
[5].check_change('/%(trunk)s/' + path
, 'D')
1046 for path
in ('full-prune',
1047 'full-prune-reappear',
1048 'partial-prune/sub'):
1049 conv
.logs
[7].check_change('/%(trunk)s/' + path
, 'D')
1051 for path
in ('full-prune-reappear',
1052 'full-prune-reappear/appears-later'):
1053 conv
.logs
[33].check_change('/%(trunk)s/' + path
, 'A')
1056 @Cvs2SvnTestFunction
1057 def interleaved_commits():
1058 "two interleaved trunk commits, different log msgs"
1059 # See test-data/main-cvsrepos/proj/README.
1060 conv
= ensure_conversion('main')
1062 # The initial import.
1064 conv
.logs
[rev
].check('Initial import.', (
1065 ('/%(trunk)s/interleaved', 'A'),
1066 ('/%(trunk)s/interleaved/1', 'A'),
1067 ('/%(trunk)s/interleaved/2', 'A'),
1068 ('/%(trunk)s/interleaved/3', 'A'),
1069 ('/%(trunk)s/interleaved/4', 'A'),
1070 ('/%(trunk)s/interleaved/5', 'A'),
1071 ('/%(trunk)s/interleaved/a', 'A'),
1072 ('/%(trunk)s/interleaved/b', 'A'),
1073 ('/%(trunk)s/interleaved/c', 'A'),
1074 ('/%(trunk)s/interleaved/d', 'A'),
1075 ('/%(trunk)s/interleaved/e', 'A'),
1078 def check_letters(rev
):
1079 """Check if REV is the rev where only letters were committed."""
1081 conv
.logs
[rev
].check('Committing letters only.', (
1082 ('/%(trunk)s/interleaved/a', 'M'),
1083 ('/%(trunk)s/interleaved/b', 'M'),
1084 ('/%(trunk)s/interleaved/c', 'M'),
1085 ('/%(trunk)s/interleaved/d', 'M'),
1086 ('/%(trunk)s/interleaved/e', 'M'),
1089 def check_numbers(rev
):
1090 """Check if REV is the rev where only numbers were committed."""
1092 conv
.logs
[rev
].check('Committing numbers only.', (
1093 ('/%(trunk)s/interleaved/1', 'M'),
1094 ('/%(trunk)s/interleaved/2', 'M'),
1095 ('/%(trunk)s/interleaved/3', 'M'),
1096 ('/%(trunk)s/interleaved/4', 'M'),
1097 ('/%(trunk)s/interleaved/5', 'M'),
1100 # One of the commits was letters only, the other was numbers only.
1101 # But they happened "simultaneously", so we don't assume anything
1102 # about which commit appeared first, so we just try both ways.
1106 check_numbers(rev
+ 1)
1109 check_letters(rev
+ 1)
1112 @Cvs2SvnTestFunction
1113 def simple_commits():
1114 "simple trunk commits"
1115 # See test-data/main-cvsrepos/proj/README.
1116 conv
= ensure_conversion('main')
1118 # The initial import.
1119 conv
.logs
[13].check('Initial import.', (
1120 ('/%(trunk)s/proj', 'A'),
1121 ('/%(trunk)s/proj/default', 'A'),
1122 ('/%(trunk)s/proj/sub1', 'A'),
1123 ('/%(trunk)s/proj/sub1/default', 'A'),
1124 ('/%(trunk)s/proj/sub1/subsubA', 'A'),
1125 ('/%(trunk)s/proj/sub1/subsubA/default', 'A'),
1126 ('/%(trunk)s/proj/sub1/subsubB', 'A'),
1127 ('/%(trunk)s/proj/sub1/subsubB/default', 'A'),
1128 ('/%(trunk)s/proj/sub2', 'A'),
1129 ('/%(trunk)s/proj/sub2/default', 'A'),
1130 ('/%(trunk)s/proj/sub2/subsubA', 'A'),
1131 ('/%(trunk)s/proj/sub2/subsubA/default', 'A'),
1132 ('/%(trunk)s/proj/sub3', 'A'),
1133 ('/%(trunk)s/proj/sub3/default', 'A'),
1137 conv
.logs
[18].check('First commit to proj, affecting two files.', (
1138 ('/%(trunk)s/proj/sub1/subsubA/default', 'M'),
1139 ('/%(trunk)s/proj/sub3/default', 'M'),
1142 # The second commit.
1143 conv
.logs
[19].check('Second commit to proj, affecting all 7 files.', (
1144 ('/%(trunk)s/proj/default', 'M'),
1145 ('/%(trunk)s/proj/sub1/default', 'M'),
1146 ('/%(trunk)s/proj/sub1/subsubA/default', 'M'),
1147 ('/%(trunk)s/proj/sub1/subsubB/default', 'M'),
1148 ('/%(trunk)s/proj/sub2/default', 'M'),
1149 ('/%(trunk)s/proj/sub2/subsubA/default', 'M'),
1150 ('/%(trunk)s/proj/sub3/default', 'M')
1154 class SimpleTags(Cvs2SvnTestCase
):
1155 "simple tags and branches, no commits"
1157 def __init__(self
, **kw
):
1158 # See test-data/main-cvsrepos/proj/README.
1159 Cvs2SvnTestCase
.__init
__(self
, 'main', **kw
)
1161 def run(self
, sbox
):
1162 conv
= self
.ensure_conversion()
1164 # Verify the copy source for the tags we are about to check
1165 # No need to verify the copyfrom revision, as simple_commits did that
1166 conv
.logs
[13].check('Initial import.', (
1167 ('/%(trunk)s/proj', 'A'),
1168 ('/%(trunk)s/proj/default', 'A'),
1169 ('/%(trunk)s/proj/sub1', 'A'),
1170 ('/%(trunk)s/proj/sub1/default', 'A'),
1171 ('/%(trunk)s/proj/sub1/subsubA', 'A'),
1172 ('/%(trunk)s/proj/sub1/subsubA/default', 'A'),
1173 ('/%(trunk)s/proj/sub1/subsubB', 'A'),
1174 ('/%(trunk)s/proj/sub1/subsubB/default', 'A'),
1175 ('/%(trunk)s/proj/sub2', 'A'),
1176 ('/%(trunk)s/proj/sub2/default', 'A'),
1177 ('/%(trunk)s/proj/sub2/subsubA', 'A'),
1178 ('/%(trunk)s/proj/sub2/subsubA/default', 'A'),
1179 ('/%(trunk)s/proj/sub3', 'A'),
1180 ('/%(trunk)s/proj/sub3/default', 'A'),
1183 fromstr
= ' (from /%(branches)s/B_FROM_INITIALS:14)'
1185 # Tag on rev 1.1.1.1 of all files in proj
1186 conv
.logs
[14].check(sym_log_msg('B_FROM_INITIALS'), (
1187 ('/%(branches)s/B_FROM_INITIALS (from /%(trunk)s:13)', 'A'),
1188 ('/%(branches)s/B_FROM_INITIALS/single-files', 'D'),
1189 ('/%(branches)s/B_FROM_INITIALS/partial-prune', 'D'),
1192 # The same, as a tag
1193 log
= conv
.find_tag_log('T_ALL_INITIAL_FILES')
1194 log
.check(sym_log_msg('T_ALL_INITIAL_FILES',1), (
1195 ('/%(tags)s/T_ALL_INITIAL_FILES'+fromstr
, 'A'),
1198 # Tag on rev 1.1.1.1 of all files in proj, except one
1199 log
= conv
.find_tag_log('T_ALL_INITIAL_FILES_BUT_ONE')
1200 log
.check(sym_log_msg('T_ALL_INITIAL_FILES_BUT_ONE',1), (
1201 ('/%(tags)s/T_ALL_INITIAL_FILES_BUT_ONE'+fromstr
, 'A'),
1202 ('/%(tags)s/T_ALL_INITIAL_FILES_BUT_ONE/proj/sub1/subsubB', 'D'),
1205 # The same, as a branch
1206 conv
.logs
[17].check(sym_log_msg('B_FROM_INITIALS_BUT_ONE'), (
1207 ('/%(branches)s/B_FROM_INITIALS_BUT_ONE'+fromstr
, 'A'),
1208 ('/%(branches)s/B_FROM_INITIALS_BUT_ONE/proj/sub1/subsubB', 'D'),
1212 @Cvs2SvnTestFunction
1213 def simple_branch_commits():
1214 "simple branch commits"
1215 # See test-data/main-cvsrepos/proj/README.
1216 conv
= ensure_conversion('main')
1218 conv
.logs
[23].check('Modify three files, on branch B_MIXED.', (
1219 ('/%(branches)s/B_MIXED/proj/default', 'M'),
1220 ('/%(branches)s/B_MIXED/proj/sub1/default', 'M'),
1221 ('/%(branches)s/B_MIXED/proj/sub2/subsubA/default', 'M'),
1225 @Cvs2SvnTestFunction
1226 def mixed_time_tag():
1228 # See test-data/main-cvsrepos/proj/README.
1229 conv
= ensure_conversion('main')
1231 log
= conv
.find_tag_log('T_MIXED')
1233 ('/%(tags)s/T_MIXED (from /%(branches)s/B_MIXED:20)', 'A'),
1237 @Cvs2SvnTestFunction
1238 def mixed_time_branch_with_added_file():
1239 "mixed-time branch, and a file added to the branch"
1240 # See test-data/main-cvsrepos/proj/README.
1241 conv
= ensure_conversion('main')
1243 # A branch from the same place as T_MIXED in the previous test,
1244 # plus a file added directly to the branch
1245 conv
.logs
[20].check(sym_log_msg('B_MIXED'), (
1246 ('/%(branches)s/B_MIXED (from /%(trunk)s:19)', 'A'),
1247 ('/%(branches)s/B_MIXED/partial-prune', 'D'),
1248 ('/%(branches)s/B_MIXED/single-files', 'D'),
1249 ('/%(branches)s/B_MIXED/proj/sub2/subsubA '
1250 '(from /%(trunk)s/proj/sub2/subsubA:13)', 'R'),
1251 ('/%(branches)s/B_MIXED/proj/sub3 (from /%(trunk)s/proj/sub3:18)', 'R'),
1254 conv
.logs
[22].check('Add a file on branch B_MIXED.', (
1255 ('/%(branches)s/B_MIXED/proj/sub2/branch_B_MIXED_only', 'A'),
1259 @Cvs2SvnTestFunction
1261 "a commit affecting both trunk and a branch"
1262 # See test-data/main-cvsrepos/proj/README.
1263 conv
= ensure_conversion('main')
1265 conv
.logs
[24].check(
1266 'A single commit affecting one file on branch B_MIXED '
1267 'and one on trunk.', (
1268 ('/%(trunk)s/proj/sub2/default', 'M'),
1269 ('/%(branches)s/B_MIXED/proj/sub2/branch_B_MIXED_only', 'M'),
1273 @Cvs2SvnTestFunction
1274 def split_time_branch():
1275 "branch some trunk files, and later branch the rest"
1276 # See test-data/main-cvsrepos/proj/README.
1277 conv
= ensure_conversion('main')
1279 # First change on the branch, creating it
1280 conv
.logs
[25].check(sym_log_msg('B_SPLIT'), (
1281 ('/%(branches)s/B_SPLIT (from /%(trunk)s:24)', 'A'),
1282 ('/%(branches)s/B_SPLIT/partial-prune', 'D'),
1283 ('/%(branches)s/B_SPLIT/single-files', 'D'),
1284 ('/%(branches)s/B_SPLIT/proj/sub1/subsubB', 'D'),
1287 conv
.logs
[29].check('First change on branch B_SPLIT.', (
1288 ('/%(branches)s/B_SPLIT/proj/default', 'M'),
1289 ('/%(branches)s/B_SPLIT/proj/sub1/default', 'M'),
1290 ('/%(branches)s/B_SPLIT/proj/sub1/subsubA/default', 'M'),
1291 ('/%(branches)s/B_SPLIT/proj/sub2/default', 'M'),
1292 ('/%(branches)s/B_SPLIT/proj/sub2/subsubA/default', 'M'),
1295 # A trunk commit for the file which was not branched
1296 conv
.logs
[30].check('A trunk change to sub1/subsubB/default. '
1297 'This was committed about an', (
1298 ('/%(trunk)s/proj/sub1/subsubB/default', 'M'),
1301 # Add the file not already branched to the branch, with modification:w
1302 conv
.logs
[31].check(sym_log_msg('B_SPLIT'), (
1303 ('/%(branches)s/B_SPLIT/proj/sub1/subsubB '
1304 '(from /%(trunk)s/proj/sub1/subsubB:30)', 'A'),
1307 conv
.logs
[32].check('This change affects sub3/default and '
1308 'sub1/subsubB/default, on branch', (
1309 ('/%(branches)s/B_SPLIT/proj/sub1/subsubB/default', 'M'),
1310 ('/%(branches)s/B_SPLIT/proj/sub3/default', 'M'),
1314 @Cvs2SvnTestFunction
1315 def multiple_tags():
1316 "multiple tags referring to same revision"
1317 conv
= ensure_conversion('main')
1318 if not conv
.path_exists('tags', 'T_ALL_INITIAL_FILES', 'proj', 'default'):
1320 if not conv
.path_exists(
1321 'tags', 'T_ALL_INITIAL_FILES_BUT_ONE', 'proj', 'default'):
1325 @Cvs2SvnTestFunction
1326 def multiply_defined_symbols():
1327 "multiple definitions of symbol names"
1329 # We can only check one line of the error output at a time, so test
1330 # twice. (The conversion only have to be done once because the
1331 # results are cached.)
1332 conv
= ensure_conversion(
1333 'multiply-defined-symbols',
1335 r
"ERROR\: Multiple definitions of the symbol \'BRANCH\' .*\: "
1339 conv
= ensure_conversion(
1340 'multiply-defined-symbols',
1342 r
"ERROR\: Multiple definitions of the symbol \'TAG\' .*\: "
1348 @Cvs2SvnTestFunction
1349 def multiply_defined_symbols_renamed():
1350 "rename multiply defined symbols"
1352 conv
= ensure_conversion(
1353 'multiply-defined-symbols',
1354 options_file
='cvs2svn-rename.options',
1358 @Cvs2SvnTestFunction
1359 def multiply_defined_symbols_ignored():
1360 "ignore multiply defined symbols"
1362 conv
= ensure_conversion(
1363 'multiply-defined-symbols',
1364 options_file
='cvs2svn-ignore.options',
1368 @Cvs2SvnTestFunction
1369 def repeatedly_defined_symbols():
1370 "multiple identical definitions of symbol names"
1372 # If a symbol is defined multiple times but has the same value each
1373 # time, that should not be an error.
1375 conv
= ensure_conversion('repeatedly-defined-symbols')
1378 @Cvs2SvnTestFunction
1380 "conversion of invalid symbolic names"
1381 conv
= ensure_conversion('bogus-tag')
1384 @Cvs2SvnTestFunction
1385 def overlapping_branch():
1386 "ignore a file with a branch with two names"
1387 conv
= ensure_conversion('overlapping-branch')
1389 if not conv
.output_found('.*cannot also have name \'vendorB\''):
1392 conv
.logs
[2].check('imported', (
1393 ('/%(trunk)s/nonoverlapping-branch', 'A'),
1394 ('/%(trunk)s/overlapping-branch', 'A'),
1397 if len(conv
.logs
) != 2:
1401 class PhoenixBranch(Cvs2SvnTestCase
):
1402 "convert a branch file rooted in a 'dead' revision"
1404 def __init__(self
, **kw
):
1405 Cvs2SvnTestCase
.__init
__(self
, 'phoenix', **kw
)
1407 def run(self
, sbox
):
1408 conv
= self
.ensure_conversion()
1409 conv
.logs
[8].check('This file was supplied by Jack Moffitt', (
1410 ('/%(branches)s/volsung_20010721', 'A'),
1411 ('/%(branches)s/volsung_20010721/phoenix', 'A'),
1413 conv
.logs
[9].check('This file was supplied by Jack Moffitt', (
1414 ('/%(branches)s/volsung_20010721/phoenix', 'M'),
1418 ###TODO: We check for 4 changed paths here to accomodate creating tags
1419 ###and branches in rev 1, but that will change, so this will
1420 ###eventually change back.
1421 @Cvs2SvnTestFunction
1422 def ctrl_char_in_log():
1423 "handle a control char in a log message"
1424 # This was issue #1106.
1426 conv
= ensure_conversion('ctrl-char-in-log')
1427 conv
.logs
[rev
].check_changes((
1428 ('/%(trunk)s/ctrl-char-in-log', 'A'),
1430 if conv
.logs
[rev
].msg
.find('\x04') < 0:
1432 "Log message of 'ctrl-char-in-log,v' (rev 2) is wrong.")
1435 @Cvs2SvnTestFunction
1437 "handle tags rooted in a redeleted revision"
1438 conv
= ensure_conversion('overdead')
1441 class NoTrunkPrune(Cvs2SvnTestCase
):
1442 "ensure that trunk doesn't get pruned"
1444 def __init__(self
, **kw
):
1445 Cvs2SvnTestCase
.__init
__(self
, 'overdead', **kw
)
1447 def run(self
, sbox
):
1448 conv
= self
.ensure_conversion()
1449 for rev
in conv
.logs
.keys():
1450 rev_logs
= conv
.logs
[rev
]
1451 if rev_logs
.get_path_op('/%(trunk)s') == 'D':
1455 @Cvs2SvnTestFunction
1456 def double_delete():
1457 "file deleted twice, in the root of the repository"
1458 # This really tests several things: how we handle a file that's
1459 # removed (state 'dead') in two successive revisions; how we
1460 # handle a file in the root of the repository (there were some
1461 # bugs in cvs2svn's svn path construction for top-level files); and
1462 # the --no-prune option.
1463 conv
= ensure_conversion(
1464 'double-delete', args
=['--trunk-only', '--no-prune'])
1466 path
= '/%(trunk)s/twice-removed'
1468 conv
.logs
[rev
].check('Updated CVS', (
1471 conv
.logs
[rev
+ 1].check('Remove this file for the first time.', (
1474 conv
.logs
[rev
+ 2].check('Remove this file for the second time,', (
1478 @Cvs2SvnTestFunction
1480 "branch created from both trunk and another branch"
1481 # See test-data/split-branch-cvsrepos/README.
1483 # The conversion will fail if the bug is present, and
1484 # ensure_conversion will raise Failure.
1485 conv
= ensure_conversion('split-branch')
1488 @Cvs2SvnTestFunction
1489 def resync_misgroups():
1490 "resyncing should not misorder commit groups"
1491 # See test-data/resync-misgroups-cvsrepos/README.
1493 # The conversion will fail if the bug is present, and
1494 # ensure_conversion will raise Failure.
1495 conv
= ensure_conversion('resync-misgroups')
1498 class TaggedBranchAndTrunk(Cvs2SvnTestCase
):
1499 "allow tags with mixed trunk and branch sources"
1501 def __init__(self
, **kw
):
1502 Cvs2SvnTestCase
.__init
__(self
, 'tagged-branch-n-trunk', **kw
)
1504 def run(self
, sbox
):
1505 conv
= self
.ensure_conversion()
1507 tags
= conv
.symbols
.get('tags', 'tags')
1509 a_path
= conv
.get_wc(tags
, 'some-tag', 'a.txt')
1510 b_path
= conv
.get_wc(tags
, 'some-tag', 'b.txt')
1511 if not (os
.path
.exists(a_path
) and os
.path
.exists(b_path
)):
1513 if (open(a_path
, 'r').read().find('1.24') == -1) \
1514 or (open(b_path
, 'r').read().find('1.5') == -1):
1518 @Cvs2SvnTestFunction
1520 "never use the rev-in-progress as a copy source"
1522 # See issue #1427 and r8544.
1523 conv
= ensure_conversion('enroot-race')
1525 conv
.logs
[rev
].check_changes((
1526 ('/%(branches)s/mybranch (from /%(trunk)s:5)', 'A'),
1527 ('/%(branches)s/mybranch/proj/a.txt', 'D'),
1528 ('/%(branches)s/mybranch/proj/b.txt', 'D'),
1530 conv
.logs
[rev
+ 1].check_changes((
1531 ('/%(branches)s/mybranch/proj/c.txt', 'M'),
1532 ('/%(trunk)s/proj/a.txt', 'M'),
1533 ('/%(trunk)s/proj/b.txt', 'M'),
1537 @Cvs2SvnTestFunction
1538 def enroot_race_obo():
1539 "do use the last completed rev as a copy source"
1540 conv
= ensure_conversion('enroot-race-obo')
1541 conv
.logs
[3].check_change('/%(branches)s/BRANCH (from /%(trunk)s:2)', 'A')
1542 if not len(conv
.logs
) == 3:
1546 class BranchDeleteFirst(Cvs2SvnTestCase
):
1547 "correctly handle deletion as initial branch action"
1549 def __init__(self
, **kw
):
1550 Cvs2SvnTestCase
.__init
__(self
, 'branch-delete-first', **kw
)
1552 def run(self
, sbox
):
1553 # See test-data/branch-delete-first-cvsrepos/README.
1555 # The conversion will fail if the bug is present, and
1556 # ensure_conversion would raise Failure.
1557 conv
= self
.ensure_conversion()
1559 branches
= conv
.symbols
.get('branches', 'branches')
1561 # 'file' was deleted from branch-1 and branch-2, but not branch-3
1562 if conv
.path_exists(branches
, 'branch-1', 'file'):
1564 if conv
.path_exists(branches
, 'branch-2', 'file'):
1566 if not conv
.path_exists(branches
, 'branch-3', 'file'):
1570 @Cvs2SvnTestFunction
1571 def nonascii_filenames():
1572 "non ascii files converted incorrectly"
1575 # on a en_US.iso-8859-1 machine this test fails with
1576 # svn: Can't recode ...
1578 # as described in the issue
1580 # on a en_US.UTF-8 machine this test fails with
1581 # svn: Malformed XML ...
1583 # which means at least it fails. Unfortunately it won't fail
1584 # with the same error...
1586 # mangle current locale settings so we know we're not running
1587 # a UTF-8 locale (which does not exhibit this problem)
1588 current_locale
= locale
.getlocale()
1589 new_locale
= 'en_US.ISO8859-1'
1590 locale_changed
= None
1592 # From http://docs.python.org/lib/module-sys.html
1594 # getfilesystemencoding():
1596 # Return the name of the encoding used to convert Unicode filenames
1597 # into system file names, or None if the system default encoding is
1598 # used. The result value depends on the operating system:
1600 # - On Windows 9x, the encoding is ``mbcs''.
1601 # - On Mac OS X, the encoding is ``utf-8''.
1602 # - On Unix, the encoding is the user's preference according to the
1603 # result of nl_langinfo(CODESET), or None if the
1604 # nl_langinfo(CODESET) failed.
1605 # - On Windows NT+, file names are Unicode natively, so no conversion is
1608 # So we're going to skip this test on Mac OS X for now.
1609 if sys
.platform
== "darwin":
1610 raise svntest
.Skip()
1613 # change locale to non-UTF-8 locale to generate latin1 names
1614 locale
.setlocale(locale
.LC_ALL
, # this might be too broad?
1617 except locale
.Error
:
1618 raise svntest
.Skip()
1621 srcrepos_path
= os
.path
.join(test_data_dir
,'main-cvsrepos')
1622 dstrepos_path
= os
.path
.join(test_data_dir
,'non-ascii-cvsrepos')
1623 if not os
.path
.exists(dstrepos_path
):
1624 # create repos from existing main repos
1625 shutil
.copytree(srcrepos_path
, dstrepos_path
)
1626 base_path
= os
.path
.join(dstrepos_path
, 'single-files')
1627 shutil
.copyfile(os
.path
.join(base_path
, 'twoquick,v'),
1628 os
.path
.join(base_path
, 'two\366uick,v'))
1629 new_path
= os
.path
.join(dstrepos_path
, 'single\366files')
1630 os
.rename(base_path
, new_path
)
1632 conv
= ensure_conversion('non-ascii', args
=['--encoding=latin1'])
1635 locale
.setlocale(locale
.LC_ALL
, current_locale
)
1636 safe_rmtree(dstrepos_path
)
1639 class UnicodeTest(Cvs2SvnTestCase
):
1640 "metadata contains Unicode"
1642 warning_pattern
= r
'ERROR\: There were warnings converting .* messages'
1644 def __init__(self
, name
, warning_expected
, **kw
):
1645 if warning_expected
:
1646 error_re
= self
.warning_pattern
1650 Cvs2SvnTestCase
.__init
__(self
, name
, error_re
=error_re
, **kw
)
1651 self
.warning_expected
= warning_expected
1653 def run(self
, sbox
):
1655 # ensure the availability of the "utf_8" encoding:
1656 u
'a'.encode('utf_8').decode('utf_8')
1658 raise svntest
.Skip()
1660 self
.ensure_conversion()
1663 class UnicodeAuthor(UnicodeTest
):
1664 "author name contains Unicode"
1666 def __init__(self
, warning_expected
, **kw
):
1667 UnicodeTest
.__init
__(self
, 'unicode-author', warning_expected
, **kw
)
1670 class UnicodeLog(UnicodeTest
):
1671 "log message contains Unicode"
1673 def __init__(self
, warning_expected
, **kw
):
1674 UnicodeTest
.__init
__(self
, 'unicode-log', warning_expected
, **kw
)
1677 @Cvs2SvnTestFunction
1678 def vendor_branch_sameness():
1679 "avoid spurious changes for initial revs"
1680 conv
= ensure_conversion(
1681 'vendor-branch-sameness', args
=['--keep-trivial-imports']
1684 # The following files are in this repository:
1686 # a.txt: Imported in the traditional way; 1.1 and 1.1.1.1 have
1687 # the same contents, the file's default branch is 1.1.1,
1688 # and both revisions are in state 'Exp'.
1690 # b.txt: Like a.txt, except that 1.1.1.1 has a real change from
1691 # 1.1 (the addition of a line of text).
1693 # c.txt: Like a.txt, except that 1.1.1.1 is in state 'dead'.
1695 # d.txt: This file was created by 'cvs add' instead of import, so
1696 # it has only 1.1 -- no 1.1.1.1, and no default branch.
1697 # The timestamp on the add is exactly the same as for the
1698 # imports of the other files.
1700 # e.txt: Like a.txt, except that the log message for revision 1.1
1701 # is not the standard import log message.
1703 # (Aside from e.txt, the log messages for the same revisions are the
1704 # same in all files.)
1706 # We expect that only a.txt is recognized as an import whose 1.1
1707 # revision can be omitted. The other files should be added on trunk
1708 # then filled to vbranchA, whereas a.txt should be added to vbranchA
1709 # then copied to trunk. In the copy of 1.1.1.1 back to trunk, a.txt
1710 # and e.txt should be copied untouched; b.txt should be 'M'odified,
1711 # and c.txt should be 'D'eleted.
1714 conv
.logs
[rev
].check('Initial revision', (
1715 ('/%(trunk)s/proj', 'A'),
1716 ('/%(trunk)s/proj/b.txt', 'A'),
1717 ('/%(trunk)s/proj/c.txt', 'A'),
1718 ('/%(trunk)s/proj/d.txt', 'A'),
1721 conv
.logs
[rev
+ 1].check(sym_log_msg('vbranchA'), (
1722 ('/%(branches)s/vbranchA (from /%(trunk)s:2)', 'A'),
1723 ('/%(branches)s/vbranchA/proj/d.txt', 'D'),
1726 conv
.logs
[rev
+ 2].check('First vendor branch revision.', (
1727 ('/%(branches)s/vbranchA/proj/a.txt', 'A'),
1728 ('/%(branches)s/vbranchA/proj/b.txt', 'M'),
1729 ('/%(branches)s/vbranchA/proj/c.txt', 'D'),
1732 conv
.logs
[rev
+ 3].check('This commit was generated by cvs2svn '
1733 'to compensate for changes in r4,', (
1734 ('/%(trunk)s/proj/a.txt (from /%(branches)s/vbranchA/proj/a.txt:4)', 'A'),
1735 ('/%(trunk)s/proj/b.txt (from /%(branches)s/vbranchA/proj/b.txt:4)', 'R'),
1736 ('/%(trunk)s/proj/c.txt', 'D'),
1740 conv
.logs
[rev
].check('This log message is not the standard', (
1741 ('/%(trunk)s/proj/e.txt', 'A'),
1744 conv
.logs
[rev
+ 2].check('First vendor branch revision', (
1745 ('/%(branches)s/vbranchB/proj/e.txt', 'M'),
1748 conv
.logs
[rev
+ 3].check('This commit was generated by cvs2svn '
1749 'to compensate for changes in r9,', (
1750 ('/%(trunk)s/proj/e.txt (from /%(branches)s/vbranchB/proj/e.txt:9)', 'R'),
1754 @Cvs2SvnTestFunction
1755 def vendor_branch_trunk_only():
1756 "handle vendor branches with --trunk-only"
1757 conv
= ensure_conversion('vendor-branch-sameness', args
=['--trunk-only'])
1760 conv
.logs
[rev
].check('Initial revision', (
1761 ('/%(trunk)s/proj', 'A'),
1762 ('/%(trunk)s/proj/b.txt', 'A'),
1763 ('/%(trunk)s/proj/c.txt', 'A'),
1764 ('/%(trunk)s/proj/d.txt', 'A'),
1767 conv
.logs
[rev
+ 1].check('First vendor branch revision', (
1768 ('/%(trunk)s/proj/a.txt', 'A'),
1769 ('/%(trunk)s/proj/b.txt', 'M'),
1770 ('/%(trunk)s/proj/c.txt', 'D'),
1773 conv
.logs
[rev
+ 2].check('This log message is not the standard', (
1774 ('/%(trunk)s/proj/e.txt', 'A'),
1777 conv
.logs
[rev
+ 3].check('First vendor branch revision', (
1778 ('/%(trunk)s/proj/e.txt', 'M'),
1782 @Cvs2SvnTestFunction
1783 def default_branches():
1784 "handle default branches correctly"
1785 conv
= ensure_conversion('default-branches')
1787 # There are seven files in the repository:
1790 # Imported in the traditional way, so 1.1 and 1.1.1.1 are the
1791 # same. Then 1.1.1.2 and 1.1.1.3 were imported, then 1.2
1792 # committed (thus losing the default branch "1.1.1"), then
1793 # 1.1.1.4 was imported. All vendor import release tags are
1797 # Like a.txt, but without rev 1.2.
1800 # Exactly like b.txt, just s/b.txt/c.txt/ in content.
1803 # Same as the previous two, but 1.1.1 branch is unlabeled.
1806 # Same, but missing 1.1.1 label and all tags but 1.1.1.3.
1808 # deleted-on-vendor-branch.txt,v:
1809 # Like b.txt and c.txt, except that 1.1.1.3 is state 'dead'.
1811 # added-then-imported.txt,v:
1812 # Added with 'cvs add' to create 1.1, then imported with
1813 # completely different contents to create 1.1.1.1, therefore
1814 # never had a default branch.
1817 conv
.logs
[2].check("Import (vbranchA, vtag-1).", (
1818 ('/%(branches)s/unlabeled-1.1.1', 'A'),
1819 ('/%(branches)s/unlabeled-1.1.1/proj', 'A'),
1820 ('/%(branches)s/unlabeled-1.1.1/proj/d.txt', 'A'),
1821 ('/%(branches)s/unlabeled-1.1.1/proj/e.txt', 'A'),
1822 ('/%(branches)s/vbranchA', 'A'),
1823 ('/%(branches)s/vbranchA/proj', 'A'),
1824 ('/%(branches)s/vbranchA/proj/a.txt', 'A'),
1825 ('/%(branches)s/vbranchA/proj/b.txt', 'A'),
1826 ('/%(branches)s/vbranchA/proj/c.txt', 'A'),
1827 ('/%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt', 'A'),
1830 conv
.logs
[3].check("This commit was generated by cvs2svn "
1831 "to compensate for changes in r2,", (
1832 ('/%(trunk)s/proj', 'A'),
1833 ('/%(trunk)s/proj/a.txt (from /%(branches)s/vbranchA/proj/a.txt:2)', 'A'),
1834 ('/%(trunk)s/proj/b.txt (from /%(branches)s/vbranchA/proj/b.txt:2)', 'A'),
1835 ('/%(trunk)s/proj/c.txt (from /%(branches)s/vbranchA/proj/c.txt:2)', 'A'),
1836 ('/%(trunk)s/proj/d.txt '
1837 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:2)', 'A'),
1838 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt '
1839 '(from /%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt:2)', 'A'),
1840 ('/%(trunk)s/proj/e.txt '
1841 '(from /%(branches)s/unlabeled-1.1.1/proj/e.txt:2)', 'A'),
1844 conv
.logs
[4].check(sym_log_msg('vtag-1',1), (
1845 ('/%(tags)s/vtag-1 (from /%(branches)s/vbranchA:2)', 'A'),
1846 ('/%(tags)s/vtag-1/proj/d.txt '
1847 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:2)', 'A'),
1850 conv
.logs
[5].check("Import (vbranchA, vtag-2).", (
1851 ('/%(branches)s/unlabeled-1.1.1/proj/d.txt', 'M'),
1852 ('/%(branches)s/unlabeled-1.1.1/proj/e.txt', 'M'),
1853 ('/%(branches)s/vbranchA/proj/a.txt', 'M'),
1854 ('/%(branches)s/vbranchA/proj/b.txt', 'M'),
1855 ('/%(branches)s/vbranchA/proj/c.txt', 'M'),
1856 ('/%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt', 'M'),
1859 conv
.logs
[6].check("This commit was generated by cvs2svn "
1860 "to compensate for changes in r5,", (
1861 ('/%(trunk)s/proj/a.txt '
1862 '(from /%(branches)s/vbranchA/proj/a.txt:5)', 'R'),
1863 ('/%(trunk)s/proj/b.txt '
1864 '(from /%(branches)s/vbranchA/proj/b.txt:5)', 'R'),
1865 ('/%(trunk)s/proj/c.txt '
1866 '(from /%(branches)s/vbranchA/proj/c.txt:5)', 'R'),
1867 ('/%(trunk)s/proj/d.txt '
1868 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:5)', 'R'),
1869 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt '
1870 '(from /%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt:5)',
1872 ('/%(trunk)s/proj/e.txt '
1873 '(from /%(branches)s/unlabeled-1.1.1/proj/e.txt:5)', 'R'),
1876 conv
.logs
[7].check(sym_log_msg('vtag-2',1), (
1877 ('/%(tags)s/vtag-2 (from /%(branches)s/vbranchA:5)', 'A'),
1878 ('/%(tags)s/vtag-2/proj/d.txt '
1879 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:5)', 'A'),
1882 conv
.logs
[8].check("Import (vbranchA, vtag-3).", (
1883 ('/%(branches)s/unlabeled-1.1.1/proj/d.txt', 'M'),
1884 ('/%(branches)s/unlabeled-1.1.1/proj/e.txt', 'M'),
1885 ('/%(branches)s/vbranchA/proj/a.txt', 'M'),
1886 ('/%(branches)s/vbranchA/proj/b.txt', 'M'),
1887 ('/%(branches)s/vbranchA/proj/c.txt', 'M'),
1888 ('/%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt', 'D'),
1891 conv
.logs
[9].check("This commit was generated by cvs2svn "
1892 "to compensate for changes in r8,", (
1893 ('/%(trunk)s/proj/a.txt '
1894 '(from /%(branches)s/vbranchA/proj/a.txt:8)', 'R'),
1895 ('/%(trunk)s/proj/b.txt '
1896 '(from /%(branches)s/vbranchA/proj/b.txt:8)', 'R'),
1897 ('/%(trunk)s/proj/c.txt '
1898 '(from /%(branches)s/vbranchA/proj/c.txt:8)', 'R'),
1899 ('/%(trunk)s/proj/d.txt '
1900 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:8)', 'R'),
1901 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt', 'D'),
1902 ('/%(trunk)s/proj/e.txt '
1903 '(from /%(branches)s/unlabeled-1.1.1/proj/e.txt:8)', 'R'),
1906 conv
.logs
[10].check(sym_log_msg('vtag-3',1), (
1907 ('/%(tags)s/vtag-3 (from /%(branches)s/vbranchA:8)', 'A'),
1908 ('/%(tags)s/vtag-3/proj/d.txt '
1909 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:8)', 'A'),
1910 ('/%(tags)s/vtag-3/proj/e.txt '
1911 '(from /%(branches)s/unlabeled-1.1.1/proj/e.txt:8)', 'A'),
1914 conv
.logs
[11].check("First regular commit, to a.txt, on vtag-3.", (
1915 ('/%(trunk)s/proj/a.txt', 'M'),
1918 conv
.logs
[12].check("Add a file to the working copy.", (
1919 ('/%(trunk)s/proj/added-then-imported.txt', 'A'),
1922 conv
.logs
[13].check(sym_log_msg('vbranchA'), (
1923 ('/%(branches)s/vbranchA/proj/added-then-imported.txt '
1924 '(from /%(trunk)s/proj/added-then-imported.txt:12)', 'A'),
1927 conv
.logs
[14].check("Import (vbranchA, vtag-4).", (
1928 ('/%(branches)s/unlabeled-1.1.1/proj/d.txt', 'M'),
1929 ('/%(branches)s/unlabeled-1.1.1/proj/e.txt', 'M'),
1930 ('/%(branches)s/vbranchA/proj/a.txt', 'M'),
1931 ('/%(branches)s/vbranchA/proj/added-then-imported.txt', 'M'), # CHECK!!!
1932 ('/%(branches)s/vbranchA/proj/b.txt', 'M'),
1933 ('/%(branches)s/vbranchA/proj/c.txt', 'M'),
1934 ('/%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt', 'A'),
1937 conv
.logs
[15].check("This commit was generated by cvs2svn "
1938 "to compensate for changes in r14,", (
1939 ('/%(trunk)s/proj/b.txt '
1940 '(from /%(branches)s/vbranchA/proj/b.txt:14)', 'R'),
1941 ('/%(trunk)s/proj/c.txt '
1942 '(from /%(branches)s/vbranchA/proj/c.txt:14)', 'R'),
1943 ('/%(trunk)s/proj/d.txt '
1944 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:14)', 'R'),
1945 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt '
1946 '(from /%(branches)s/vbranchA/proj/deleted-on-vendor-branch.txt:14)',
1948 ('/%(trunk)s/proj/e.txt '
1949 '(from /%(branches)s/unlabeled-1.1.1/proj/e.txt:14)', 'R'),
1952 conv
.logs
[16].check(sym_log_msg('vtag-4',1), (
1953 ('/%(tags)s/vtag-4 (from /%(branches)s/vbranchA:14)', 'A'),
1954 ('/%(tags)s/vtag-4/proj/d.txt '
1955 '(from /%(branches)s/unlabeled-1.1.1/proj/d.txt:14)', 'A'),
1959 @Cvs2SvnTestFunction
1960 def default_branches_trunk_only():
1961 "handle default branches with --trunk-only"
1963 conv
= ensure_conversion('default-branches', args
=['--trunk-only'])
1965 conv
.logs
[2].check("Import (vbranchA, vtag-1).", (
1966 ('/%(trunk)s/proj', 'A'),
1967 ('/%(trunk)s/proj/a.txt', 'A'),
1968 ('/%(trunk)s/proj/b.txt', 'A'),
1969 ('/%(trunk)s/proj/c.txt', 'A'),
1970 ('/%(trunk)s/proj/d.txt', 'A'),
1971 ('/%(trunk)s/proj/e.txt', 'A'),
1972 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt', 'A'),
1975 conv
.logs
[3].check("Import (vbranchA, vtag-2).", (
1976 ('/%(trunk)s/proj/a.txt', 'M'),
1977 ('/%(trunk)s/proj/b.txt', 'M'),
1978 ('/%(trunk)s/proj/c.txt', 'M'),
1979 ('/%(trunk)s/proj/d.txt', 'M'),
1980 ('/%(trunk)s/proj/e.txt', 'M'),
1981 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt', 'M'),
1984 conv
.logs
[4].check("Import (vbranchA, vtag-3).", (
1985 ('/%(trunk)s/proj/a.txt', 'M'),
1986 ('/%(trunk)s/proj/b.txt', 'M'),
1987 ('/%(trunk)s/proj/c.txt', 'M'),
1988 ('/%(trunk)s/proj/d.txt', 'M'),
1989 ('/%(trunk)s/proj/e.txt', 'M'),
1990 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt', 'D'),
1993 conv
.logs
[5].check("First regular commit, to a.txt, on vtag-3.", (
1994 ('/%(trunk)s/proj/a.txt', 'M'),
1997 conv
.logs
[6].check("Add a file to the working copy.", (
1998 ('/%(trunk)s/proj/added-then-imported.txt', 'A'),
2001 conv
.logs
[7].check("Import (vbranchA, vtag-4).", (
2002 ('/%(trunk)s/proj/b.txt', 'M'),
2003 ('/%(trunk)s/proj/c.txt', 'M'),
2004 ('/%(trunk)s/proj/d.txt', 'M'),
2005 ('/%(trunk)s/proj/e.txt', 'M'),
2006 ('/%(trunk)s/proj/deleted-on-vendor-branch.txt', 'A'),
2010 @Cvs2SvnTestFunction
2011 def default_branch_and_1_2():
2012 "do not allow 1.2 revision with default branch"
2014 conv
= ensure_conversion(
2015 'default-branch-and-1-2',
2017 r
'.*File \'.*\' has default branch
=1\
.1\
.1 but also a revision
1\
.2'
2022 @Cvs2SvnTestFunction
2023 def compose_tag_three_sources():
2024 "compose a tag from three sources"
2025 conv = ensure_conversion('compose
-tag
-three
-sources
')
2027 conv.logs[2].check("Add on trunk", (
2028 ('/%(trunk)s/tagged
-on
-trunk
-1.1', 'A
'),
2029 ('/%(trunk)s/tagged
-on
-trunk
-1.2-a
', 'A
'),
2030 ('/%(trunk)s/tagged
-on
-trunk
-1.2-b
', 'A
'),
2031 ('/%(trunk)s/tagged
-on
-b1
', 'A
'),
2032 ('/%(trunk)s/tagged
-on
-b2
', 'A
'),
2035 conv.logs[3].check(sym_log_msg('b1
'), (
2036 ('/%(branches)s/b1 (from /%(trunk)s:2)', 'A
'),
2039 conv.logs[4].check(sym_log_msg('b2
'), (
2040 ('/%(branches)s/b2 (from /%(trunk)s:2)', 'A
'),
2043 conv.logs[5].check("Commit on branch b1", (
2044 ('/%(branches)s/b1
/tagged
-on
-trunk
-1.1', 'M
'),
2045 ('/%(branches)s/b1
/tagged
-on
-trunk
-1.2-a
', 'M
'),
2046 ('/%(branches)s/b1
/tagged
-on
-trunk
-1.2-b
', 'M
'),
2047 ('/%(branches)s/b1
/tagged
-on
-b1
', 'M
'),
2048 ('/%(branches)s/b1
/tagged
-on
-b2
', 'M
'),
2051 conv.logs[6].check("Commit on branch b2", (
2052 ('/%(branches)s/b2
/tagged
-on
-trunk
-1.1', 'M
'),
2053 ('/%(branches)s/b2
/tagged
-on
-trunk
-1.2-a
', 'M
'),
2054 ('/%(branches)s/b2
/tagged
-on
-trunk
-1.2-b
', 'M
'),
2055 ('/%(branches)s/b2
/tagged
-on
-b1
', 'M
'),
2056 ('/%(branches)s/b2
/tagged
-on
-b2
', 'M
'),
2059 conv.logs[7].check("Commit again on trunk", (
2060 ('/%(trunk)s/tagged
-on
-trunk
-1.2-a
', 'M
'),
2061 ('/%(trunk)s/tagged
-on
-trunk
-1.2-b
', 'M
'),
2062 ('/%(trunk)s/tagged
-on
-trunk
-1.1', 'M
'),
2063 ('/%(trunk)s/tagged
-on
-b1
', 'M
'),
2064 ('/%(trunk)s/tagged
-on
-b2
', 'M
'),
2067 conv.logs[8].check(sym_log_msg('T
',1), (
2068 ('/%(tags)s/T (from /%(trunk)s:7)', 'A
'),
2069 ('/%(tags)s/T
/tagged
-on
-trunk
-1.1 '
2070 '(from /%(trunk)s/tagged
-on
-trunk
-1.1:2)', 'R
'),
2071 ('/%(tags)s/T
/tagged
-on
-b1 (from /%(branches)s/b1
/tagged
-on
-b1
:5)', 'R
'),
2072 ('/%(tags)s/T
/tagged
-on
-b2 (from /%(branches)s/b2
/tagged
-on
-b2
:6)', 'R
'),
2076 @Cvs2SvnTestFunction
2077 def pass5_when_to_fill():
2078 "reserve a svn revnum for a fill only when required"
2079 # The conversion will fail if the bug is present, and
2080 # ensure_conversion would raise Failure.
2081 conv = ensure_conversion('pass5
-when
-to
-fill
')
2084 class EmptyTrunk(Cvs2SvnTestCase):
2085 "don't
break when the trunk
is empty
"
2087 def __init__(self, **kw):
2088 Cvs2SvnTestCase.__init__(self, 'empty-trunk', **kw)
2090 def run(self, sbox):
2091 # The conversion will fail if the bug is present, and
2092 # ensure_conversion would raise Failure.
2093 conv = self.ensure_conversion()
2096 @Cvs2SvnTestFunction
2097 def no_spurious_svn_commits():
2098 "ensure that we don
't create any spurious commits"
2099 conv = ensure_conversion('phoenix
')
2101 # Check spurious commit that could be created in
2102 # SVNCommitCreator._pre_commit()
2104 # (When you add a file on a branch, CVS creates a trunk revision
2105 # in state 'dead
'. If the log message of that commit is equal to
2106 # the one that CVS generates, we do not ever create a 'fill
'
2107 # SVNCommit for it.)
2109 # and spurious commit that could be created in
2110 # SVNCommitCreator._commit()
2112 # (When you add a file on a branch, CVS creates a trunk revision
2113 # in state 'dead
'. If the log message of that commit is equal to
2114 # the one that CVS generates, we do not create a primary SVNCommit
2116 conv.logs[17].check('File added on branch xiphophorus
', (
2117 ('/%(branches)s/xiphophorus
/added
-on
-branch
.txt
', 'A
'),
2120 # Check to make sure that a commit *is* generated:
2121 # (When you add a file on a branch, CVS creates a trunk revision
2122 # in state 'dead
'. If the log message of that commit is NOT equal
2123 # to the one that CVS generates, we create a primary SVNCommit to
2124 # serve as a home for the log message in question.
2125 conv.logs[18].check('file added
-on
-branch2
.txt was initially added on
'
2126 + 'branch xiphophorus
,\nand this log message was tweaked
', ())
2128 # Check spurious commit that could be created in
2129 # SVNCommitCreator._commit_symbols().
2130 conv.logs[19].check('This
file was also added on branch xiphophorus
,', (
2131 ('/%(branches)s/xiphophorus
/added
-on
-branch2
.txt
', 'A
'),
2135 class PeerPathPruning(Cvs2SvnTestCase):
2136 "make sure that filling prunes paths correctly"
2138 def __init__(self, **kw):
2139 Cvs2SvnTestCase.__init__(self, 'peer
-path
-pruning
', **kw)
2141 def run(self, sbox):
2142 conv = self.ensure_conversion()
2143 conv.logs[6].check(sym_log_msg('BRANCH
'), (
2144 ('/%(branches)s/BRANCH (from /%(trunk)s:4)', 'A
'),
2145 ('/%(branches)s/BRANCH
/bar
', 'D
'),
2146 ('/%(branches)s/BRANCH
/foo (from /%(trunk)s/foo
:5)', 'R
'),
2150 @Cvs2SvnTestFunction
2151 def invalid_closings_on_trunk():
2152 "verify correct revs are copied to default branches"
2153 # The conversion will fail if the bug is present, and
2154 # ensure_conversion would raise Failure.
2155 conv = ensure_conversion('invalid
-closings
-on
-trunk
')
2158 @Cvs2SvnTestFunction
2159 def individual_passes():
2160 "run each pass individually"
2161 conv = ensure_conversion('main
')
2162 conv2 = ensure_conversion('main
', passbypass=1)
2164 if conv.logs != conv2.logs:
2168 @Cvs2SvnTestFunction
2170 "reveal a big bug in our resync algorithm"
2171 # This will fail if the bug is present
2172 conv = ensure_conversion('resync
-bug
')
2175 @Cvs2SvnTestFunction
2176 def branch_from_default_branch():
2177 "reveal a bug in our default branch detection code"
2178 conv = ensure_conversion('branch
-from-default
-branch
')
2180 # This revision will be a default branch synchronization only
2181 # if cvs2svn is correctly determining default branch revisions.
2183 # The bug was that cvs2svn was treating revisions on branches off of
2184 # default branches as default branch revisions, resulting in
2185 # incorrectly regarding the branch off of the default branch as a
2186 # non-trunk default branch. Crystal clear? I thought so. See
2187 # issue #42 for more incoherent blathering.
2188 conv.logs[5].check("This commit was generated by cvs2svn", (
2189 ('/%(trunk)s/proj
/file.txt
'
2190 '(from /%(branches)s/upstream
/proj
/file.txt
:4)', 'R
'),
2194 @Cvs2SvnTestFunction
2195 def file_in_attic_too():
2196 "die if a file exists in and out of the attic"
2198 'file-in-attic
-too
',
2200 r'.*A CVS repository cannot contain both
'
2201 r'(.*)' + re.escape(os.sep) + r'(.*) '
2203 r'\
1' + re.escape(os.sep) + r'Attic
' + re.escape(os.sep) + r'\
2'
2208 @Cvs2SvnTestFunction
2209 def retain_file_in_attic_too():
2210 "test --retain-conflicting-attic-files option"
2211 conv = ensure_conversion(
2212 'file-in-attic
-too
', args=['--retain
-conflicting
-attic
-files
'])
2213 if not conv.path_exists('trunk
', 'file.txt
'):
2215 if not conv.path_exists('trunk
', 'Attic
', 'file.txt
'):
2219 @Cvs2SvnTestFunction
2220 def symbolic_name_filling_guide():
2221 "reveal a big bug in our SymbolFillingGuide"
2222 # This will fail if the bug is present
2223 conv = ensure_conversion('symbolic
-name
-overfill
')
2226 # Helpers for tests involving file contents and properties.
2228 class NodeTreeWalkException:
2229 "Exception class for node tree traversals."
2232 def node_for_path(node, path):
2233 "In the tree rooted under SVNTree NODE, return the node at PATH."
2234 if node.name != '__SVN_ROOT_NODE
':
2235 raise NodeTreeWalkException()
2236 path = path.strip('/')
2237 components = path.split('/')
2238 for component in components:
2239 node = svntest.tree.get_child(node, component)
2242 # Helper for tests involving properties.
2243 def props_for_path(node, path):
2244 "In the tree rooted under SVNTree NODE, return the prop dict for PATH."
2245 return node_for_path(node, path).props
2248 class EOLMime(Cvs2SvnPropertiesTestCase):
2249 """eol settings and mime types together
2251 The files are as follows:
2253 trunk/foo.txt: no -kb, mime file says nothing.
2254 trunk/foo.xml: no -kb, mime file says text.
2255 trunk/foo.zip: no -kb, mime file says non-text.
2256 trunk/foo.bin: has -kb, mime file says nothing.
2257 trunk/foo.csv: has -kb, mime file says text.
2258 trunk/foo.dbf: has -kb, mime file says non-text.
2261 def __init__(self, args, **kw):
2262 # TODO: It's a bit klugey to construct this path here
. But so far
2263 # there's only one test with a mime.types file. If we have more,
2264 # we should abstract this into some helper, which would be located
2265 # near ensure_conversion(). Note that it is a convention of this
2266 # test suite for a mime.types file to be located in the top level
2267 # of the CVS repository to which it applies.
2268 self
.mime_path
= os
.path
.join(
2269 test_data_dir
, 'eol-mime-cvsrepos', 'mime.types')
2271 Cvs2SvnPropertiesTestCase
.__init
__(
2273 props_to_test
=['svn:eol-style', 'svn:mime-type', 'svn:keywords'],
2274 args
=['--mime-types=%s' % self
.mime_path
] + args
,
2278 # We do four conversions. Each time, we pass --mime-types=FILE with
2279 # the same FILE, but vary --default-eol and --eol-from-mime-type.
2280 # Thus there's one conversion with neither flag, one with just the
2281 # former, one with just the latter, and one with both.
2284 # Neither --no-default-eol nor --eol-from-mime-type:
2285 eol_mime1
= EOLMime(
2289 ('trunk/foo.txt', [None, None, None]),
2290 ('trunk/foo.xml', [None, 'text/xml', None]),
2291 ('trunk/foo.zip', [None, 'application/zip', None]),
2292 ('trunk/foo.bin', [None, 'application/octet-stream', None]),
2293 ('trunk/foo.csv', [None, 'text/csv', None]),
2294 ('trunk/foo.dbf', [None, 'application/what-is-dbf', None]),
2298 # Just --no-default-eol, not --eol-from-mime-type:
2299 eol_mime2
= EOLMime(
2301 args
=['--default-eol=native'],
2303 ('trunk/foo.txt', ['native', None, KEYWORDS
]),
2304 ('trunk/foo.xml', ['native', 'text/xml', KEYWORDS
]),
2305 ('trunk/foo.zip', ['native', 'application/zip', KEYWORDS
]),
2306 ('trunk/foo.bin', [None, 'application/octet-stream', None]),
2307 ('trunk/foo.csv', [None, 'text/csv', None]),
2308 ('trunk/foo.dbf', [None, 'application/what-is-dbf', None]),
2312 # Just --eol-from-mime-type, not --no-default-eol:
2313 eol_mime3
= EOLMime(
2315 args
=['--eol-from-mime-type'],
2317 ('trunk/foo.txt', [None, None, None]),
2318 ('trunk/foo.xml', ['native', 'text/xml', KEYWORDS
]),
2319 ('trunk/foo.zip', [None, 'application/zip', None]),
2320 ('trunk/foo.bin', [None, 'application/octet-stream', None]),
2321 ('trunk/foo.csv', [None, 'text/csv', None]),
2322 ('trunk/foo.dbf', [None, 'application/what-is-dbf', None]),
2326 # Both --no-default-eol and --eol-from-mime-type:
2327 eol_mime4
= EOLMime(
2329 args
=['--eol-from-mime-type', '--default-eol=native'],
2331 ('trunk/foo.txt', ['native', None, KEYWORDS
]),
2332 ('trunk/foo.xml', ['native', 'text/xml', KEYWORDS
]),
2333 ('trunk/foo.zip', [None, 'application/zip', None]),
2334 ('trunk/foo.bin', [None, 'application/octet-stream', None]),
2335 ('trunk/foo.csv', [None, 'text/csv', None]),
2336 ('trunk/foo.dbf', [None, 'application/what-is-dbf', None]),
2340 cvs_revnums_off
= Cvs2SvnPropertiesTestCase(
2342 doc
='test non-setting of cvs2svn:cvs-rev property',
2344 props_to_test
=['cvs2svn:cvs-rev'],
2346 ('trunk/foo.txt', [None]),
2347 ('trunk/foo.xml', [None]),
2348 ('trunk/foo.zip', [None]),
2349 ('trunk/foo.bin', [None]),
2350 ('trunk/foo.csv', [None]),
2351 ('trunk/foo.dbf', [None]),
2355 cvs_revnums_on
= Cvs2SvnPropertiesTestCase(
2357 doc
='test setting of cvs2svn:cvs-rev property',
2358 args
=['--cvs-revnums'],
2359 props_to_test
=['cvs2svn:cvs-rev'],
2361 ('trunk/foo.txt', ['1.2']),
2362 ('trunk/foo.xml', ['1.2']),
2363 ('trunk/foo.zip', ['1.2']),
2364 ('trunk/foo.bin', ['1.2']),
2365 ('trunk/foo.csv', ['1.2']),
2366 ('trunk/foo.dbf', ['1.2']),
2370 keywords
= Cvs2SvnPropertiesTestCase(
2372 doc
='test setting of svn:keywords property among others',
2373 args
=['--default-eol=native'],
2374 props_to_test
=['svn:keywords', 'svn:eol-style', 'svn:mime-type'],
2376 ('trunk/foo.default', [KEYWORDS
, 'native', None]),
2377 ('trunk/foo.kkvl', [KEYWORDS
, 'native', None]),
2378 ('trunk/foo.kkv', [KEYWORDS
, 'native', None]),
2379 ('trunk/foo.kb', [None, None, 'application/octet-stream']),
2380 ('trunk/foo.kk', [None, 'native', None]),
2381 ('trunk/foo.ko', [None, 'native', None]),
2382 ('trunk/foo.kv', [None, 'native', None]),
2386 @Cvs2SvnTestFunction
2388 "test setting of svn:ignore property"
2389 conv
= ensure_conversion('cvsignore')
2390 wc_tree
= conv
.get_wc_tree()
2391 topdir_props
= props_for_path(wc_tree
, 'trunk/proj')
2392 subdir_props
= props_for_path(wc_tree
, '/trunk/proj/subdir')
2394 if topdir_props
['svn:ignore'] != \
2395 '*.idx\n*.aux\n*.dvi\n*.log\nfoo\nbar\nbaz\nqux\n':
2398 if subdir_props
['svn:ignore'] != \
2399 '*.idx\n*.aux\n*.dvi\n*.log\nfoo\nbar\nbaz\nqux\n':
2403 @Cvs2SvnTestFunction
2405 "test that CVS can still do what RCS can't"
2406 # See issues 4, 11, 29 for the bugs whose regression we're testing for.
2407 conv
= ensure_conversion('requires-cvs', args
=["--use-cvs"])
2409 atsign_contents
= file(conv
.get_wc("trunk", "atsign-add")).read()
2410 cl_contents
= file(conv
.get_wc("trunk", "client_lock.idl")).read()
2412 if atsign_contents
[-1:] == "@":
2414 if cl_contents
.find("gregh\n//\n//Integration for locks") < 0:
2417 if not (conv
.logs
[21].author
== "William Lyon Phelps III" and
2418 conv
.logs
[20].author
== "j random"):
2422 @Cvs2SvnTestFunction
2423 def questionable_branch_names():
2424 "test that we can handle weird branch names"
2425 conv
= ensure_conversion('questionable-symbols')
2426 # If the conversion succeeds, then we're okay. We could check the
2427 # actual branch paths, too, but the main thing is to know that the
2428 # conversion doesn't fail.
2431 @Cvs2SvnTestFunction
2432 def questionable_tag_names():
2433 "test that we can handle weird tag names"
2434 conv
= ensure_conversion('questionable-symbols')
2435 conv
.find_tag_log('Tag_A').check(sym_log_msg('Tag_A', 1), (
2436 ('/%(tags)s/Tag_A (from /trunk:8)', 'A'),
2438 conv
.find_tag_log('TagWith/Backslash_E').check(
2439 sym_log_msg('TagWith/Backslash_E',1),
2441 ('/%(tags)s/TagWith', 'A'),
2442 ('/%(tags)s/TagWith/Backslash_E (from /trunk:8)', 'A'),
2445 conv
.find_tag_log('TagWith/Slash_Z').check(
2446 sym_log_msg('TagWith/Slash_Z',1),
2448 ('/%(tags)s/TagWith/Slash_Z (from /trunk:8)', 'A'),
2453 @Cvs2SvnTestFunction
2454 def revision_reorder_bug():
2455 "reveal a bug that reorders file revisions"
2456 conv
= ensure_conversion('revision-reorder-bug')
2457 # If the conversion succeeds, then we're okay. We could check the
2458 # actual revisions, too, but the main thing is to know that the
2459 # conversion doesn't fail.
2462 @Cvs2SvnTestFunction
2464 "test that exclude really excludes everything"
2465 conv
= ensure_conversion('main', args
=['--exclude=.*'])
2466 for log
in conv
.logs
.values():
2467 for item
in log
.changed_paths
.keys():
2468 if item
.startswith('/branches/') or item
.startswith('/tags/'):
2472 @Cvs2SvnTestFunction
2473 def vendor_branch_delete_add():
2474 "add trunk file that was deleted on vendor branch"
2475 # This will error if the bug is present
2476 conv
= ensure_conversion('vendor-branch-delete-add')
2479 @Cvs2SvnTestFunction
2480 def resync_pass2_pull_forward():
2481 "ensure pass2 doesn't pull rev too far forward"
2482 conv
= ensure_conversion('resync-pass2-pull-forward')
2483 # If the conversion succeeds, then we're okay. We could check the
2484 # actual revisions, too, but the main thing is to know that the
2485 # conversion doesn't fail.
2488 @Cvs2SvnTestFunction
2490 "only LFs for svn:eol-style=native files"
2491 conv
= ensure_conversion('native-eol', args
=['--default-eol=native'])
2492 lines
= run_program(svntest
.main
.svnadmin_binary
, None, 'dump', '-q',
2494 # Verify that all files in the dump have LF EOLs. We're actually
2495 # testing the whole dump file, but the dump file itself only uses
2496 # LF EOLs, so we're safe.
2498 if line
[-1] != '\n' or line
[:-1].find('\r') != -1:
2502 @Cvs2SvnTestFunction
2504 "reveal a bug that created a branch twice"
2505 conv
= ensure_conversion('double-fill')
2506 # If the conversion succeeds, then we're okay. We could check the
2507 # actual revisions, too, but the main thing is to know that the
2508 # conversion doesn't fail.
2511 @Cvs2SvnTestFunction
2513 "reveal a second bug that created a branch twice"
2514 conv
= ensure_conversion('double-fill2')
2515 conv
.logs
[6].check_msg(sym_log_msg('BRANCH1'))
2516 conv
.logs
[7].check_msg(sym_log_msg('BRANCH2'))
2518 # This check should fail:
2519 conv
.logs
[8].check_msg(sym_log_msg('BRANCH2'))
2523 raise Failure('Symbol filled twice in a row')
2526 @Cvs2SvnTestFunction
2527 def resync_pass2_push_backward():
2528 "ensure pass2 doesn't push rev too far backward"
2529 conv
= ensure_conversion('resync-pass2-push-backward')
2530 # If the conversion succeeds, then we're okay. We could check the
2531 # actual revisions, too, but the main thing is to know that the
2532 # conversion doesn't fail.
2535 @Cvs2SvnTestFunction
2537 "reveal a bug that added a branch file twice"
2538 conv
= ensure_conversion('double-add')
2539 # If the conversion succeeds, then we're okay. We could check the
2540 # actual revisions, too, but the main thing is to know that the
2541 # conversion doesn't fail.
2544 @Cvs2SvnTestFunction
2545 def bogus_branch_copy():
2546 "reveal a bug that copies a branch file wrongly"
2547 conv
= ensure_conversion('bogus-branch-copy')
2548 # If the conversion succeeds, then we're okay. We could check the
2549 # actual revisions, too, but the main thing is to know that the
2550 # conversion doesn't fail.
2553 @Cvs2SvnTestFunction
2554 def nested_ttb_directories():
2555 "require error if ttb directories are not disjoint"
2557 {'trunk' : 'a', 'branches' : 'a',},
2558 {'trunk' : 'a', 'tags' : 'a',},
2559 {'branches' : 'a', 'tags' : 'a',},
2560 # This option conflicts with the default trunk path:
2561 {'branches' : 'trunk',},
2562 # Try some nested directories:
2563 {'trunk' : 'a', 'branches' : 'a/b',},
2564 {'trunk' : 'a/b', 'tags' : 'a/b/c/d',},
2565 {'branches' : 'a', 'tags' : 'a/b',},
2568 for opts
in opts_list
:
2570 'main', error_re
=r
'The following paths are not disjoint\:', **opts
2574 class AutoProps(Cvs2SvnPropertiesTestCase
):
2577 The files are as follows:
2579 trunk/foo.txt: no -kb, mime auto-prop says nothing.
2580 trunk/foo.xml: no -kb, mime auto-prop says text and eol-style=CRLF.
2581 trunk/foo.zip: no -kb, mime auto-prop says non-text.
2582 trunk/foo.asc: no -kb, mime auto-prop says text and eol-style=<unset>.
2583 trunk/foo.bin: has -kb, mime auto-prop says nothing.
2584 trunk/foo.csv: has -kb, mime auto-prop says text and eol-style=CRLF.
2585 trunk/foo.dbf: has -kb, mime auto-prop says non-text.
2586 trunk/foo.UPCASE1: no -kb, no mime type.
2587 trunk/foo.UPCASE2: no -kb, no mime type.
2590 def __init__(self
, args
, **kw
):
2591 ### TODO: It's a bit klugey to construct this path here. See also
2592 ### the comment in eol_mime().
2593 auto_props_path
= os
.path
.join(
2594 test_data_dir
, 'eol-mime-cvsrepos', 'auto-props')
2596 Cvs2SvnPropertiesTestCase
.__init
__(
2606 '--auto-props=%s' % auto_props_path
,
2607 '--eol-from-mime-type'
2612 auto_props_ignore_case
= AutoProps(
2613 doc
="test auto-props",
2614 args
=['--default-eol=native'],
2616 ('trunk/foo.txt', ['txt', 'native', None, KEYWORDS
, None]),
2617 ('trunk/foo.xml', ['xml', 'CRLF', 'text/xml', KEYWORDS
, None]),
2618 ('trunk/foo.zip', ['zip', None, 'application/zip', None, None]),
2619 ('trunk/foo.asc', ['asc', None, 'text/plain', None, None]),
2621 ['bin', None, 'application/octet-stream', None, '']),
2622 ('trunk/foo.csv', ['csv', 'CRLF', 'text/csv', None, None]),
2624 ['dbf', None, 'application/what-is-dbf', None, None]),
2625 ('trunk/foo.UPCASE1', ['UPCASE1', 'native', None, KEYWORDS
, None]),
2626 ('trunk/foo.UPCASE2', ['UPCASE2', 'native', None, KEYWORDS
, None]),
2630 @Cvs2SvnTestFunction
2631 def ctrl_char_in_filename():
2632 "do not allow control characters in filenames"
2635 srcrepos_path
= os
.path
.join(test_data_dir
,'main-cvsrepos')
2636 dstrepos_path
= os
.path
.join(test_data_dir
,'ctrl-char-filename-cvsrepos')
2637 if os
.path
.exists(dstrepos_path
):
2638 safe_rmtree(dstrepos_path
)
2640 # create repos from existing main repos
2641 shutil
.copytree(srcrepos_path
, dstrepos_path
)
2642 base_path
= os
.path
.join(dstrepos_path
, 'single-files')
2644 shutil
.copyfile(os
.path
.join(base_path
, 'twoquick,v'),
2645 os
.path
.join(base_path
, 'two\rquick,v'))
2647 # Operating systems that don't allow control characters in
2648 # filenames will hopefully have thrown an exception; in that
2649 # case, just skip this test.
2650 raise svntest
.Skip()
2652 conv
= ensure_conversion(
2653 'ctrl-char-filename',
2654 error_re
=(r
'.*Character .* in filename .* '
2655 r
'is not supported by Subversion\.'),
2658 safe_rmtree(dstrepos_path
)
2661 @Cvs2SvnTestFunction
2662 def commit_dependencies():
2663 "interleaved and multi-branch commits to same files"
2664 conv
= ensure_conversion("commit-dependencies")
2665 conv
.logs
[2].check('adding', (
2666 ('/%(trunk)s/interleaved', 'A'),
2667 ('/%(trunk)s/interleaved/file1', 'A'),
2668 ('/%(trunk)s/interleaved/file2', 'A'),
2670 conv
.logs
[3].check('big commit', (
2671 ('/%(trunk)s/interleaved/file1', 'M'),
2672 ('/%(trunk)s/interleaved/file2', 'M'),
2674 conv
.logs
[4].check('dependant small commit', (
2675 ('/%(trunk)s/interleaved/file1', 'M'),
2677 conv
.logs
[5].check('adding', (
2678 ('/%(trunk)s/multi-branch', 'A'),
2679 ('/%(trunk)s/multi-branch/file1', 'A'),
2680 ('/%(trunk)s/multi-branch/file2', 'A'),
2682 conv
.logs
[6].check(sym_log_msg("branch"), (
2683 ('/%(branches)s/branch (from /%(trunk)s:5)', 'A'),
2684 ('/%(branches)s/branch/interleaved', 'D'),
2686 conv
.logs
[7].check('multi-branch-commit', (
2687 ('/%(trunk)s/multi-branch/file1', 'M'),
2688 ('/%(trunk)s/multi-branch/file2', 'M'),
2689 ('/%(branches)s/branch/multi-branch/file1', 'M'),
2690 ('/%(branches)s/branch/multi-branch/file2', 'M'),
2694 @Cvs2SvnTestFunction
2695 def double_branch_delete():
2696 "fill branches before modifying files on them"
2697 conv
= ensure_conversion('double-branch-delete')
2699 # Test for issue #102. The file IMarshalledValue.java is branched,
2700 # deleted, readded on the branch, and then deleted again. If the
2701 # fill for the file on the branch is postponed until after the
2702 # modification, the file will end up live on the branch instead of
2703 # dead! Make sure it happens at the right time.
2705 conv
.logs
[6].check('JBAS-2436 - Adding LGPL Header2', (
2706 ('/%(branches)s/Branch_4_0/IMarshalledValue.java', 'A'),
2709 conv
.logs
[7].check('JBAS-3025 - Removing dependency', (
2710 ('/%(branches)s/Branch_4_0/IMarshalledValue.java', 'D'),
2714 @Cvs2SvnTestFunction
2715 def symbol_mismatches():
2716 "error for conflicting tag/branch"
2720 args
=['--symbol-default=strict'],
2721 error_re
=r
'.*Problems determining how symbols should be converted',
2725 @Cvs2SvnTestFunction
2726 def overlook_symbol_mismatches():
2727 "overlook conflicting tag/branch when --trunk-only"
2729 # This is a test for issue #85.
2731 ensure_conversion('symbol-mess', args
=['--trunk-only'])
2734 @Cvs2SvnTestFunction
2735 def force_symbols():
2736 "force symbols to be tags/branches"
2738 conv
= ensure_conversion(
2740 args
=['--force-branch=MOSTLY_BRANCH', '--force-tag=MOSTLY_TAG'])
2741 if conv
.path_exists('tags', 'BRANCH') \
2742 or not conv
.path_exists('branches', 'BRANCH'):
2744 if not conv
.path_exists('tags', 'TAG') \
2745 or conv
.path_exists('branches', 'TAG'):
2747 if conv
.path_exists('tags', 'MOSTLY_BRANCH') \
2748 or not conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2750 if not conv
.path_exists('tags', 'MOSTLY_TAG') \
2751 or conv
.path_exists('branches', 'MOSTLY_TAG'):
2755 @Cvs2SvnTestFunction
2756 def commit_blocks_tags():
2757 "commit prevents forced tag"
2759 basic_args
= ['--force-branch=MOSTLY_BRANCH', '--force-tag=MOSTLY_TAG']
2762 args
=(basic_args
+ ['--force-tag=BRANCH_WITH_COMMIT']),
2764 r
'.*The following branches cannot be forced to be tags '
2765 r
'because they have commits'
2770 @Cvs2SvnTestFunction
2771 def blocked_excludes():
2772 "error for blocked excludes"
2774 basic_args
= ['--force-branch=MOSTLY_BRANCH', '--force-tag=MOSTLY_TAG']
2775 for blocker
in ['BRANCH', 'COMMIT', 'UNNAMED']:
2779 args
=(basic_args
+ ['--exclude=BLOCKED_BY_%s' % blocker
]))
2780 raise MissingErrorException()
2785 @Cvs2SvnTestFunction
2786 def unblock_blocked_excludes():
2787 "excluding blocker removes blockage"
2789 basic_args
= ['--force-branch=MOSTLY_BRANCH', '--force-tag=MOSTLY_TAG']
2790 for blocker
in ['BRANCH', 'COMMIT']:
2793 args
=(basic_args
+ ['--exclude=BLOCKED_BY_%s' % blocker
,
2794 '--exclude=BLOCKING_%s' % blocker
]))
2797 @Cvs2SvnTestFunction
2798 def regexp_force_symbols():
2799 "force symbols via regular expressions"
2801 conv
= ensure_conversion(
2803 args
=['--force-branch=MOST.*_BRANCH', '--force-tag=MOST.*_TAG'])
2804 if conv
.path_exists('tags', 'MOSTLY_BRANCH') \
2805 or not conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2807 if not conv
.path_exists('tags', 'MOSTLY_TAG') \
2808 or conv
.path_exists('branches', 'MOSTLY_TAG'):
2812 @Cvs2SvnTestFunction
2813 def heuristic_symbol_default():
2814 "test 'heuristic' symbol default"
2816 conv
= ensure_conversion(
2817 'symbol-mess', args
=['--symbol-default=heuristic'])
2818 if conv
.path_exists('tags', 'MOSTLY_BRANCH') \
2819 or not conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2821 if not conv
.path_exists('tags', 'MOSTLY_TAG') \
2822 or conv
.path_exists('branches', 'MOSTLY_TAG'):
2826 @Cvs2SvnTestFunction
2827 def branch_symbol_default():
2828 "test 'branch' symbol default"
2830 conv
= ensure_conversion(
2831 'symbol-mess', args
=['--symbol-default=branch'])
2832 if conv
.path_exists('tags', 'MOSTLY_BRANCH') \
2833 or not conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2835 if conv
.path_exists('tags', 'MOSTLY_TAG') \
2836 or not conv
.path_exists('branches', 'MOSTLY_TAG'):
2840 @Cvs2SvnTestFunction
2841 def tag_symbol_default():
2842 "test 'tag' symbol default"
2844 conv
= ensure_conversion(
2845 'symbol-mess', args
=['--symbol-default=tag'])
2846 if not conv
.path_exists('tags', 'MOSTLY_BRANCH') \
2847 or conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2849 if not conv
.path_exists('tags', 'MOSTLY_TAG') \
2850 or conv
.path_exists('branches', 'MOSTLY_TAG'):
2854 @Cvs2SvnTestFunction
2855 def symbol_transform():
2856 "test --symbol-transform"
2858 conv
= ensure_conversion(
2861 '--symbol-default=heuristic',
2862 '--symbol-transform=BRANCH:branch',
2863 '--symbol-transform=TAG:tag',
2864 '--symbol-transform=MOSTLY_(BRANCH|TAG):MOSTLY.\\1',
2866 if not conv
.path_exists('branches', 'branch'):
2868 if not conv
.path_exists('tags', 'tag'):
2870 if not conv
.path_exists('branches', 'MOSTLY.BRANCH'):
2872 if not conv
.path_exists('tags', 'MOSTLY.TAG'):
2876 @Cvs2SvnTestFunction
2877 def write_symbol_info():
2878 "test --write-symbol-info"
2882 'trunk', 'trunk', '.'],
2883 ['0', 'BLOCKED_BY_UNNAMED',
2884 'branch', 'branches/BLOCKED_BY_UNNAMED', '.trunk.'],
2885 ['0', 'BLOCKING_COMMIT',
2886 'branch', 'branches/BLOCKING_COMMIT', 'BLOCKED_BY_COMMIT'],
2887 ['0', 'BLOCKED_BY_COMMIT',
2888 'branch', 'branches/BLOCKED_BY_COMMIT', '.trunk.'],
2889 ['0', 'BLOCKING_BRANCH',
2890 'branch', 'branches/BLOCKING_BRANCH', 'BLOCKED_BY_BRANCH'],
2891 ['0', 'BLOCKED_BY_BRANCH',
2892 'branch', 'branches/BLOCKED_BY_BRANCH', '.trunk.'],
2893 ['0', 'MOSTLY_BRANCH',
2897 ['0', 'BRANCH_WITH_COMMIT',
2898 'branch', 'branches/BRANCH_WITH_COMMIT', '.trunk.'],
2900 'branch', 'branches/BRANCH', '.trunk.'],
2902 'tag', 'tags/TAG', '.trunk.'],
2903 ['0', 'unlabeled-1.1.12.1.2',
2904 'branch', 'branches/unlabeled-1.1.12.1.2', 'BLOCKED_BY_UNNAMED'],
2906 expected_lines
.sort()
2908 symbol_info_file
= os
.path
.join(tmp_dir
, 'symbol-mess-symbol-info.txt')
2913 '--symbol-default=strict',
2914 '--write-symbol-info=%s' % (symbol_info_file
,),
2915 '--passes=:CollateSymbolsPass',
2918 raise MissingErrorException()
2922 comment_re
= re
.compile(r
'^\s*\#')
2923 for l
in open(symbol_info_file
, 'r'):
2924 if comment_re
.match(l
):
2926 lines
.append(l
.strip().split())
2928 if lines
!= expected_lines
:
2929 s
= ['Symbol info incorrect\n']
2931 for diffline
in differ
.compare(
2932 [' '.join(line
) + '\n' for line
in expected_lines
],
2933 [' '.join(line
) + '\n' for line
in lines
],
2936 raise Failure(''.join(s
))
2939 @Cvs2SvnTestFunction
2941 "test --symbol-hints for setting branch/tag"
2943 conv
= ensure_conversion(
2944 'symbol-mess', symbol_hints_file
='symbol-mess-symbol-hints.txt',
2946 if not conv
.path_exists('branches', 'MOSTLY_BRANCH'):
2948 if not conv
.path_exists('tags', 'MOSTLY_TAG'):
2950 conv
.logs
[3].check(sym_log_msg('MOSTLY_TAG', 1), (
2951 ('/tags/MOSTLY_TAG (from /trunk:2)', 'A'),
2953 conv
.logs
[9].check(sym_log_msg('BRANCH_WITH_COMMIT'), (
2954 ('/branches/BRANCH_WITH_COMMIT (from /trunk:2)', 'A'),
2956 conv
.logs
[10].check(sym_log_msg('MOSTLY_BRANCH'), (
2957 ('/branches/MOSTLY_BRANCH (from /trunk:2)', 'A'),
2961 @Cvs2SvnTestFunction
2963 "test --symbol-hints for setting parent"
2965 conv
= ensure_conversion(
2966 'symbol-mess', symbol_hints_file
='symbol-mess-parent-hints.txt',
2968 conv
.logs
[9].check(sym_log_msg('BRANCH_WITH_COMMIT'), (
2969 ('/%(branches)s/BRANCH_WITH_COMMIT (from /branches/BRANCH:8)', 'A'),
2973 @Cvs2SvnTestFunction
2974 def parent_hints_invalid():
2975 "test --symbol-hints with an invalid parent"
2977 # BRANCH_WITH_COMMIT is usually determined to branch from .trunk.;
2978 # this symbol hints file sets the preferred parent to BRANCH
2980 conv
= ensure_conversion(
2981 'symbol-mess', symbol_hints_file
='symbol-mess-parent-hints-invalid.txt',
2983 r
"BLOCKED_BY_BRANCH is not a valid parent for BRANCH_WITH_COMMIT"
2988 @Cvs2SvnTestFunction
2989 def parent_hints_wildcards():
2990 "test --symbol-hints wildcards"
2992 # BRANCH_WITH_COMMIT is usually determined to branch from .trunk.;
2993 # this symbol hints file sets the preferred parent to BRANCH
2995 conv
= ensure_conversion(
2997 symbol_hints_file
='symbol-mess-parent-hints-wildcards.txt',
2999 conv
.logs
[9].check(sym_log_msg('BRANCH_WITH_COMMIT'), (
3000 ('/%(branches)s/BRANCH_WITH_COMMIT (from /branches/BRANCH:8)', 'A'),
3004 @Cvs2SvnTestFunction
3006 "test --symbol-hints for setting svn paths"
3008 conv
= ensure_conversion(
3009 'symbol-mess', symbol_hints_file
='symbol-mess-path-hints.txt',
3011 conv
.logs
[1].check('Standard project directories initialized by cvs2svn.', (
3014 ('/a/strange', 'A'),
3015 ('/a/strange/trunk', 'A'),
3016 ('/a/strange/trunk/path', 'A'),
3020 conv
.logs
[3].check(sym_log_msg('MOSTLY_TAG', 1), (
3022 ('/special/tag', 'A'),
3023 ('/special/tag/path (from /a/strange/trunk/path:2)', 'A'),
3025 conv
.logs
[9].check(sym_log_msg('BRANCH_WITH_COMMIT'), (
3026 ('/special/other', 'A'),
3027 ('/special/other/branch', 'A'),
3028 ('/special/other/branch/path (from /a/strange/trunk/path:2)', 'A'),
3030 conv
.logs
[10].check(sym_log_msg('MOSTLY_BRANCH'), (
3031 ('/special/branch', 'A'),
3032 ('/special/branch/path (from /a/strange/trunk/path:2)', 'A'),
3036 @Cvs2SvnTestFunction
3038 "test problem from issue 99"
3040 conv
= ensure_conversion('issue-99')
3043 @Cvs2SvnTestFunction
3045 "test problem from issue 100"
3047 conv
= ensure_conversion('issue-100')
3048 file1
= conv
.get_wc('trunk', 'file1.txt')
3049 if file(file1
).read() != 'file1.txt<1.2>\n':
3053 @Cvs2SvnTestFunction
3055 "test problem from issue 106"
3057 conv
= ensure_conversion('issue-106')
3060 @Cvs2SvnTestFunction
3061 def options_option():
3062 "use of the --options option"
3064 conv
= ensure_conversion('main', options_file
='cvs2svn.options')
3067 @Cvs2SvnTestFunction
3069 "multiproject conversion"
3071 conv
= ensure_conversion(
3072 'main', options_file
='cvs2svn-multiproject.options'
3074 conv
.logs
[1].check('Standard project directories initialized by cvs2svn.', (
3075 ('/partial-prune', 'A'),
3076 ('/partial-prune/trunk', 'A'),
3077 ('/partial-prune/branches', 'A'),
3078 ('/partial-prune/tags', 'A'),
3079 ('/partial-prune/releases', 'A'),
3083 @Cvs2SvnTestFunction
3085 "multiproject conversion with cross-project commits"
3087 conv
= ensure_conversion(
3088 'main', options_file
='cvs2svn-crossproject.options'
3092 @Cvs2SvnTestFunction
3093 def tag_with_no_revision():
3094 "tag defined but revision is deleted"
3096 conv
= ensure_conversion('tag-with-no-revision')
3099 @Cvs2SvnTestFunction
3100 def delete_cvsignore():
3101 "svn:ignore should vanish when .cvsignore does"
3103 # This is issue #81.
3105 conv
= ensure_conversion('delete-cvsignore')
3107 wc_tree
= conv
.get_wc_tree()
3108 props
= props_for_path(wc_tree
, 'trunk/proj')
3110 if props
.has_key('svn:ignore'):
3114 @Cvs2SvnTestFunction
3115 def repeated_deltatext():
3116 "ignore repeated deltatext blocks with warning"
3118 conv
= ensure_conversion('repeated-deltatext')
3119 warning_re
= r
'.*Deltatext block for revision 1.1 appeared twice'
3120 if not conv
.output_found(warning_re
):
3124 @Cvs2SvnTestFunction
3126 "process some nasty dependency graphs"
3128 # It's not how well the bear can dance, but that the bear can dance
3130 conv
= ensure_conversion('nasty-graphs')
3133 @Cvs2SvnTestFunction
3134 def tagging_after_delete():
3135 "optimal tag after deleting files"
3137 conv
= ensure_conversion('tagging-after-delete')
3139 # tag should be 'clean', no deletes
3140 log
= conv
.find_tag_log('tag1')
3142 ('/%(tags)s/tag1 (from /%(trunk)s:3)', 'A'),
3144 log
.check_changes(expected
)
3147 @Cvs2SvnTestFunction
3148 def crossed_branches():
3149 "branches created in inconsistent orders"
3151 conv
= ensure_conversion('crossed-branches')
3154 @Cvs2SvnTestFunction
3155 def file_directory_conflict():
3156 "error when filename conflicts with directory name"
3158 conv
= ensure_conversion(
3159 'file-directory-conflict',
3160 error_re
=r
'.*Directory name conflicts with filename',
3164 @Cvs2SvnTestFunction
3165 def attic_directory_conflict():
3166 "error when attic filename conflicts with dirname"
3168 # This tests the problem reported in issue #105.
3170 conv
= ensure_conversion(
3171 'attic-directory-conflict',
3172 error_re
=r
'.*Directory name conflicts with filename',
3176 @Cvs2SvnTestFunction
3178 "verify that --use-internal-co works"
3180 rcs_conv
= ensure_conversion(
3181 'main', args
=['--use-rcs', '--default-eol=native'],
3183 conv
= ensure_conversion(
3184 'main', args
=['--default-eol=native'],
3186 if conv
.output_found(r
'WARNING\: internal problem\: leftover revisions'):
3188 rcs_lines
= run_program(
3189 svntest
.main
.svnadmin_binary
, None, 'dump', '-q', '-r', '1:HEAD',
3191 lines
= run_program(
3192 svntest
.main
.svnadmin_binary
, None, 'dump', '-q', '-r', '1:HEAD',
3194 # Compare all lines following the repository UUID:
3195 if lines
[3:] != rcs_lines
[3:]:
3199 @Cvs2SvnTestFunction
3200 def internal_co_exclude():
3201 "verify that --use-internal-co --exclude=... works"
3203 rcs_conv
= ensure_conversion(
3205 args
=['--use-rcs', '--exclude=BRANCH', '--default-eol=native'],
3207 conv
= ensure_conversion(
3209 args
=['--exclude=BRANCH', '--default-eol=native'],
3211 if conv
.output_found(r
'WARNING\: internal problem\: leftover revisions'):
3213 rcs_lines
= run_program(
3214 svntest
.main
.svnadmin_binary
, None, 'dump', '-q', '-r', '1:HEAD',
3216 lines
= run_program(
3217 svntest
.main
.svnadmin_binary
, None, 'dump', '-q', '-r', '1:HEAD',
3219 # Compare all lines following the repository UUID:
3220 if lines
[3:] != rcs_lines
[3:]:
3224 @Cvs2SvnTestFunction
3225 def internal_co_trunk_only():
3226 "verify that --use-internal-co --trunk-only works"
3228 conv
= ensure_conversion(
3230 args
=['--trunk-only', '--default-eol=native'],
3232 if conv
.output_found(r
'WARNING\: internal problem\: leftover revisions'):
3236 @Cvs2SvnTestFunction
3237 def leftover_revs():
3238 "check for leftover checked-out revisions"
3240 conv
= ensure_conversion(
3242 args
=['--exclude=BRANCH', '--default-eol=native'],
3244 if conv
.output_found(r
'WARNING\: internal problem\: leftover revisions'):
3248 @Cvs2SvnTestFunction
3249 def requires_internal_co():
3250 "test that internal co can do more than RCS"
3251 # See issues 4, 11 for the bugs whose regression we're testing for.
3252 # Unlike in requires_cvs above, issue 29 is not covered.
3253 conv
= ensure_conversion('requires-cvs')
3255 atsign_contents
= file(conv
.get_wc("trunk", "atsign-add")).read()
3257 if atsign_contents
[-1:] == "@":
3260 if not (conv
.logs
[21].author
== "William Lyon Phelps III" and
3261 conv
.logs
[20].author
== "j random"):
3265 @Cvs2SvnTestFunction
3266 def internal_co_keywords():
3267 "test that internal co handles keywords correctly"
3268 conv_ic
= ensure_conversion('internal-co-keywords',
3269 args
=["--keywords-off"])
3270 conv_cvs
= ensure_conversion('internal-co-keywords',
3271 args
=["--use-cvs", "--keywords-off"])
3273 ko_ic
= file(conv_ic
.get_wc('trunk', 'dir', 'ko.txt')).read()
3274 ko_cvs
= file(conv_cvs
.get_wc('trunk', 'dir', 'ko.txt')).read()
3275 kk_ic
= file(conv_ic
.get_wc('trunk', 'dir', 'kk.txt')).read()
3276 kk_cvs
= file(conv_cvs
.get_wc('trunk', 'dir', 'kk.txt')).read()
3277 kv_ic
= file(conv_ic
.get_wc('trunk', 'dir', 'kv.txt')).read()
3278 kv_cvs
= file(conv_cvs
.get_wc('trunk', 'dir', 'kv.txt')).read()
3285 # The date format changed between cvs and co ('/' instead of '-').
3286 # Accept either one:
3287 date_substitution_re
= re
.compile(r
' ([0-9]*)-([0-9]*)-([0-9]*) ')
3288 if kv_ic
!= kv_cvs \
3289 and date_substitution_re
.sub(r
' \1/\2/\3 ', kv_ic
) != kv_cvs
:
3293 @Cvs2SvnTestFunction
3294 def timestamp_chaos():
3295 "test timestamp adjustments"
3297 conv
= ensure_conversion('timestamp-chaos', args
=["-v"])
3299 # The times are expressed here in UTC:
3301 '2007-01-01 21:00:00', # Initial commit
3302 '2007-01-01 21:00:00', # revision 1.1 of both files
3303 '2007-01-01 21:00:01', # revision 1.2 of file1.txt, adjusted forwards
3304 '2007-01-01 21:00:02', # revision 1.2 of file2.txt, adjusted backwards
3305 '2007-01-01 22:00:00', # revision 1.3 of both files
3308 # Convert the times to seconds since the epoch, in UTC:
3309 times
= [calendar
.timegm(svn_strptime(t
)) for t
in times
]
3311 for i
in range(len(times
)):
3312 if abs(conv
.logs
[i
+ 1].date
- times
[i
]) > 0.1:
3316 @Cvs2SvnTestFunction
3318 "convert a repository that contains symlinks"
3320 # This is a test for issue #97.
3322 proj
= os
.path
.join(test_data_dir
, 'symlinks-cvsrepos', 'proj')
3325 os
.path
.join('..', 'file.txt,v'),
3326 os
.path
.join(proj
, 'dir1', 'file.txt,v'),
3330 os
.path
.join(proj
, 'dir2'),
3336 except AttributeError:
3337 # Apparently this OS doesn't support symlinks, so skip test.
3338 raise svntest
.Skip()
3341 for (src
,dst
) in links
:
3342 os
.symlink(src
, dst
)
3344 conv
= ensure_conversion('symlinks')
3345 conv
.logs
[2].check('', (
3346 ('/%(trunk)s/proj', 'A'),
3347 ('/%(trunk)s/proj/file.txt', 'A'),
3348 ('/%(trunk)s/proj/dir1', 'A'),
3349 ('/%(trunk)s/proj/dir1/file.txt', 'A'),
3350 ('/%(trunk)s/proj/dir2', 'A'),
3351 ('/%(trunk)s/proj/dir2/file.txt', 'A'),
3354 for (src
,dst
) in links
:
3358 @Cvs2SvnTestFunction
3359 def empty_trunk_path():
3360 "allow --trunk to be empty if --trunk-only"
3362 # This is a test for issue #53.
3364 conv
= ensure_conversion(
3365 'main', args
=['--trunk-only', '--trunk='],
3369 @Cvs2SvnTestFunction
3370 def preferred_parent_cycle():
3371 "handle a cycle in branch parent preferences"
3373 conv
= ensure_conversion('preferred-parent-cycle')
3376 @Cvs2SvnTestFunction
3377 def branch_from_empty_dir():
3378 "branch from an empty directory"
3380 conv
= ensure_conversion('branch-from-empty-dir')
3383 @Cvs2SvnTestFunction
3385 "add a file on a branch then on trunk"
3387 conv
= ensure_conversion('trunk-readd')
3390 @Cvs2SvnTestFunction
3391 def branch_from_deleted_1_1():
3392 "branch from a 1.1 revision that will be deleted"
3394 conv
= ensure_conversion('branch-from-deleted-1-1')
3395 conv
.logs
[5].check('Adding b.txt:1.1.2.1', (
3396 ('/%(branches)s/BRANCH1/proj/b.txt', 'A'),
3398 conv
.logs
[6].check('Adding b.txt:1.1.4.1', (
3399 ('/%(branches)s/BRANCH2/proj/b.txt', 'A'),
3401 conv
.logs
[7].check('Adding b.txt:1.2', (
3402 ('/%(trunk)s/proj/b.txt', 'A'),
3405 conv
.logs
[8].check('Adding c.txt:1.1.2.1', (
3406 ('/%(branches)s/BRANCH1/proj/c.txt', 'A'),
3408 conv
.logs
[9].check('Adding c.txt:1.1.4.1', (
3409 ('/%(branches)s/BRANCH2/proj/c.txt', 'A'),
3413 @Cvs2SvnTestFunction
3414 def add_on_branch():
3415 "add a file on a branch using newer CVS"
3417 conv
= ensure_conversion('add-on-branch')
3418 conv
.logs
[6].check('Adding b.txt:1.1', (
3419 ('/%(trunk)s/proj/b.txt', 'A'),
3421 conv
.logs
[7].check('Adding b.txt:1.1.2.2', (
3422 ('/%(branches)s/BRANCH1/proj/b.txt', 'A'),
3424 conv
.logs
[8].check('Adding c.txt:1.1', (
3425 ('/%(trunk)s/proj/c.txt', 'A'),
3427 conv
.logs
[9].check('Removing c.txt:1.2', (
3428 ('/%(trunk)s/proj/c.txt', 'D'),
3430 conv
.logs
[10].check('Adding c.txt:1.2.2.2', (
3431 ('/%(branches)s/BRANCH2/proj/c.txt', 'A'),
3433 conv
.logs
[11].check('Adding d.txt:1.1', (
3434 ('/%(trunk)s/proj/d.txt', 'A'),
3436 conv
.logs
[12].check('Adding d.txt:1.1.2.2', (
3437 ('/%(branches)s/BRANCH3/proj/d.txt', 'A'),
3441 @Cvs2SvnTestFunction
3443 "test output in git-fast-import format"
3445 # Note: To test importing into git, do
3447 # ./run-tests <test-number>
3450 # cat cvs2svn-tmp/{blobfile,dumpfile}.out | git fast-import
3452 # Or, to load the dumpfiles separately:
3454 # cat cvs2svn-tmp/git-blob.dat \
3455 # | git fast-import --export-marks=cvs2svn-tmp/git-marks.dat
3456 # cat cvs2svn-tmp/git-dump.dat \
3457 # | git fast-import --import-marks=cvs2svn-tmp/git-marks.dat
3459 # Then use "gitk --all", "git log", etc. to test the contents of the
3462 # We don't have the infrastructure to check that the resulting git
3463 # repository is correct, so we just check that the conversion runs
3465 conv
= GitConversion('main', None, [
3466 '--blobfile=cvs2svn-tmp/blobfile.out',
3467 '--dumpfile=cvs2svn-tmp/dumpfile.out',
3468 '--username=cvs2git',
3469 'test-data/main-cvsrepos',
3473 @Cvs2SvnTestFunction
3475 "test cvs2git --use-external-blob-generator option"
3477 # See comment in main_git() for more information.
3479 conv
= GitConversion('main', None, [
3480 '--use-external-blob-generator',
3481 '--blobfile=cvs2svn-tmp/blobfile.out',
3482 '--dumpfile=cvs2svn-tmp/dumpfile.out',
3483 '--username=cvs2git',
3484 'test-data/main-cvsrepos',
3488 @Cvs2SvnTestFunction
3490 "test cvs2git using options file"
3492 conv
= GitConversion('main', None, [], options_file
='cvs2git.options')
3495 @Cvs2SvnTestFunction
3497 "output in git-fast-import format with inline data"
3499 # The output should be suitable for import by Mercurial.
3501 # We don't have the infrastructure to check that the resulting
3502 # Mercurial repository is correct, so we just check that the
3503 # conversion runs to completion:
3504 conv
= GitConversion('main', None, [], options_file
='cvs2hg.options')
3507 @Cvs2SvnTestFunction
3508 def invalid_symbol():
3509 "a symbol with the incorrect format"
3511 conv
= ensure_conversion('invalid-symbol')
3512 if not conv
.output_found(
3513 r
".*branch 'SYMBOL' references invalid revision 1$"
3518 @Cvs2SvnTestFunction
3519 def invalid_symbol_ignore():
3520 "ignore a symbol using a SymbolMapper"
3522 conv
= ensure_conversion(
3523 'invalid-symbol', options_file
='cvs2svn-ignore.options'
3527 @Cvs2SvnTestFunction
3528 def invalid_symbol_ignore2():
3529 "ignore a symbol using an IgnoreSymbolTransform"
3531 conv
= ensure_conversion(
3532 'invalid-symbol', options_file
='cvs2svn-ignore2.options'
3536 class EOLVariants(Cvs2SvnTestCase
):
3537 "handle various --eol-style options"
3539 eol_style_strings
= {
3546 def __init__(self
, eol_style
):
3547 self
.eol_style
= eol_style
3548 self
.dumpfile
= 'eol-variants-%s.dump' % (self
.eol_style
,)
3549 Cvs2SvnTestCase
.__init
__(
3550 self
, 'eol-variants', variant
=self
.eol_style
,
3551 dumpfile
=self
.dumpfile
,
3553 '--default-eol=%s' % (self
.eol_style
,),
3557 def run(self
, sbox
):
3558 conv
= self
.ensure_conversion()
3559 dump_contents
= open(conv
.dumpfile
, 'rb').read()
3560 expected_text
= self
.eol_style_strings
[self
.eol_style
].join(
3561 ['line 1', 'line 2', '\n\n']
3563 if not dump_contents
.endswith(expected_text
):
3567 @Cvs2SvnTestFunction
3569 "handle a file with no revisions (issue #80)"
3571 conv
= ensure_conversion('no-revs-file')
3574 @Cvs2SvnTestFunction
3575 def mirror_keyerror_test():
3576 "a case that gave KeyError in SVNRepositoryMirror"
3578 conv
= ensure_conversion('mirror-keyerror')
3581 @Cvs2SvnTestFunction
3582 def exclude_ntdb_test():
3583 "exclude a non-trunk default branch"
3585 symbol_info_file
= os
.path
.join(tmp_dir
, 'exclude-ntdb-symbol-info.txt')
3586 conv
= ensure_conversion(
3589 '--write-symbol-info=%s' % (symbol_info_file
,),
3590 '--exclude=branch3',
3592 '--exclude=vendortag3',
3593 '--exclude=vendorbranch',
3598 @Cvs2SvnTestFunction
3599 def mirror_keyerror2_test():
3600 "a case that gave KeyError in RepositoryMirror"
3602 conv
= ensure_conversion('mirror-keyerror2')
3605 @Cvs2SvnTestFunction
3606 def mirror_keyerror3_test():
3607 "a case that gave KeyError in RepositoryMirror"
3609 conv
= ensure_conversion('mirror-keyerror3')
3612 @Cvs2SvnTestFunction
3613 def add_cvsignore_to_branch_test():
3614 "check adding .cvsignore to an existing branch"
3616 # This a test for issue #122.
3618 conv
= ensure_conversion('add-cvsignore-to-branch')
3619 wc_tree
= conv
.get_wc_tree()
3620 trunk_props
= props_for_path(wc_tree
, 'trunk/dir')
3621 if trunk_props
['svn:ignore'] != '*.o\n\n':
3624 branch_props
= props_for_path(wc_tree
, 'branches/BRANCH/dir')
3625 if branch_props
['svn:ignore'] != '*.o\n\n':
3629 @Cvs2SvnTestFunction
3630 def missing_deltatext():
3631 "a revision's deltatext is missing"
3633 # This is a type of RCS file corruption that has been observed.
3634 conv
= ensure_conversion(
3635 'missing-deltatext',
3637 r
"ERROR\: .* has no deltatext section for revision 1\.1\.4\.4"
3642 @Cvs2SvnTestFunction
3643 def transform_unlabeled_branch_name():
3644 "transform name of unlabeled branch"
3646 conv
= ensure_conversion(
3649 '--symbol-transform=unlabeled-1.1.4:BRANCH2',
3654 @Cvs2SvnTestFunction
3655 def ignore_unlabeled_branch():
3656 "ignoring an unlabeled branch is not allowed"
3658 conv
= ensure_conversion(
3660 options_file
='cvs2svn-ignore.options',
3662 r
"ERROR\: The unlabeled branch \'unlabeled\-1\.1\.4\' "
3663 r
"in \'.*\' contains commits"
3668 @Cvs2SvnTestFunction
3669 def unlabeled_branch_name_collision():
3670 "transform branch to same name as unlabeled branch"
3672 conv
= ensure_conversion(
3675 '--symbol-transform=unlabeled-1.1.4:BRANCH',
3678 r
"ERROR\: Symbol name \'BRANCH\' is already used"
3683 @Cvs2SvnTestFunction
3684 def collision_with_unlabeled_branch_name():
3685 "transform unlabeled branch to same name as branch"
3687 conv
= ensure_conversion(
3690 '--symbol-transform=BRANCH:unlabeled-1.1.4',
3693 r
"ERROR\: Symbol name \'unlabeled\-1\.1\.4\' is already used"
3698 @Cvs2SvnTestFunction
3700 "a repo with many removable dead revisions"
3702 conv
= ensure_conversion('many-deletes')
3703 conv
.logs
[5].check('Add files on BRANCH', (
3704 ('/%(branches)s/BRANCH/proj/b.txt', 'A'),
3706 conv
.logs
[6].check('Add files on BRANCH2', (
3707 ('/%(branches)s/BRANCH2/proj/b.txt', 'A'),
3708 ('/%(branches)s/BRANCH2/proj/c.txt', 'A'),
3709 ('/%(branches)s/BRANCH2/proj/d.txt', 'A'),
3713 cvs_description
= Cvs2SvnPropertiesTestCase(
3715 doc
='test handling of CVS file descriptions',
3716 props_to_test
=['cvs:description'],
3718 ('trunk/proj/default', ['This is an example file description.']),
3719 ('trunk/proj/sub1/default', [None]),
3723 @Cvs2SvnTestFunction
3724 def include_empty_directories():
3725 "test --include-empty-directories option"
3727 conv
= ensure_conversion(
3728 'empty-directories', args
=['--include-empty-directories'],
3730 conv
.logs
[1].check('Standard project directories', (
3731 ('/%(trunk)s', 'A'),
3732 ('/%(branches)s', 'A'),
3734 ('/%(trunk)s/root-empty-directory', 'A'),
3735 ('/%(trunk)s/root-empty-directory/empty-subdirectory', 'A'),
3737 conv
.logs
[3].check('Add b.txt.', (
3738 ('/%(trunk)s/direct', 'A'),
3739 ('/%(trunk)s/direct/b.txt', 'A'),
3740 ('/%(trunk)s/direct/empty-directory', 'A'),
3741 ('/%(trunk)s/direct/empty-directory/empty-subdirectory', 'A'),
3743 conv
.logs
[4].check('Add c.txt.', (
3744 ('/%(trunk)s/indirect', 'A'),
3745 ('/%(trunk)s/indirect/subdirectory', 'A'),
3746 ('/%(trunk)s/indirect/subdirectory/c.txt', 'A'),
3747 ('/%(trunk)s/indirect/empty-directory', 'A'),
3748 ('/%(trunk)s/indirect/empty-directory/empty-subdirectory', 'A'),
3750 conv
.logs
[5].check('Remove b.txt', (
3751 ('/%(trunk)s/direct', 'D'),
3753 conv
.logs
[6].check('Remove c.txt', (
3754 ('/%(trunk)s/indirect', 'D'),
3756 conv
.logs
[7].check('Re-add b.txt.', (
3757 ('/%(trunk)s/direct', 'A'),
3758 ('/%(trunk)s/direct/b.txt', 'A'),
3759 ('/%(trunk)s/direct/empty-directory', 'A'),
3760 ('/%(trunk)s/direct/empty-directory/empty-subdirectory', 'A'),
3762 conv
.logs
[8].check('Re-add c.txt.', (
3763 ('/%(trunk)s/indirect', 'A'),
3764 ('/%(trunk)s/indirect/subdirectory', 'A'),
3765 ('/%(trunk)s/indirect/subdirectory/c.txt', 'A'),
3766 ('/%(trunk)s/indirect/empty-directory', 'A'),
3767 ('/%(trunk)s/indirect/empty-directory/empty-subdirectory', 'A'),
3769 conv
.logs
[9].check('This commit was manufactured', (
3770 ('/%(tags)s/TAG (from /%(trunk)s:8)', 'A'),
3772 conv
.logs
[10].check('This commit was manufactured', (
3773 ('/%(branches)s/BRANCH (from /%(trunk)s:8)', 'A'),
3775 conv
.logs
[11].check('Import d.txt.', (
3776 ('/%(branches)s/VENDORBRANCH', 'A'),
3777 ('/%(branches)s/VENDORBRANCH/import', 'A'),
3778 ('/%(branches)s/VENDORBRANCH/import/d.txt', 'A'),
3779 ('/%(branches)s/VENDORBRANCH/root-empty-directory', 'A'),
3780 ('/%(branches)s/VENDORBRANCH/root-empty-directory/empty-subdirectory',
3782 ('/%(branches)s/VENDORBRANCH/import/empty-directory', 'A'),
3783 ('/%(branches)s/VENDORBRANCH/import/empty-directory/empty-subdirectory',
3786 conv
.logs
[12].check('This commit was generated', (
3787 ('/%(trunk)s/import', 'A'),
3788 ('/%(trunk)s/import/d.txt '
3789 '(from /%(branches)s/VENDORBRANCH/import/d.txt:11)', 'A'),
3790 ('/%(trunk)s/import/empty-directory', 'A'),
3791 ('/%(trunk)s/import/empty-directory/empty-subdirectory', 'A'),
3795 @Cvs2SvnTestFunction
3796 def include_empty_directories_no_prune():
3797 "test --include-empty-directories with --no-prune"
3799 conv
= ensure_conversion(
3800 'empty-directories', args
=['--include-empty-directories', '--no-prune'],
3802 conv
.logs
[1].check('Standard project directories', (
3803 ('/%(trunk)s', 'A'),
3804 ('/%(branches)s', 'A'),
3806 ('/%(trunk)s/root-empty-directory', 'A'),
3807 ('/%(trunk)s/root-empty-directory/empty-subdirectory', 'A'),
3809 conv
.logs
[3].check('Add b.txt.', (
3810 ('/%(trunk)s/direct', 'A'),
3811 ('/%(trunk)s/direct/b.txt', 'A'),
3812 ('/%(trunk)s/direct/empty-directory', 'A'),
3813 ('/%(trunk)s/direct/empty-directory/empty-subdirectory', 'A'),
3815 conv
.logs
[4].check('Add c.txt.', (
3816 ('/%(trunk)s/indirect', 'A'),
3817 ('/%(trunk)s/indirect/subdirectory', 'A'),
3818 ('/%(trunk)s/indirect/subdirectory/c.txt', 'A'),
3819 ('/%(trunk)s/indirect/empty-directory', 'A'),
3820 ('/%(trunk)s/indirect/empty-directory/empty-subdirectory', 'A'),
3822 conv
.logs
[5].check('Remove b.txt', (
3823 ('/%(trunk)s/direct/b.txt', 'D'),
3825 conv
.logs
[6].check('Remove c.txt', (
3826 ('/%(trunk)s/indirect/subdirectory/c.txt', 'D'),
3828 conv
.logs
[7].check('Re-add b.txt.', (
3829 ('/%(trunk)s/direct/b.txt', 'A'),
3831 conv
.logs
[8].check('Re-add c.txt.', (
3832 ('/%(trunk)s/indirect/subdirectory/c.txt', 'A'),
3834 conv
.logs
[9].check('This commit was manufactured', (
3835 ('/%(tags)s/TAG (from /%(trunk)s:8)', 'A'),
3837 conv
.logs
[10].check('This commit was manufactured', (
3838 ('/%(branches)s/BRANCH (from /%(trunk)s:8)', 'A'),
3842 @Cvs2SvnTestFunction
3843 def exclude_symbol_default():
3844 "test 'exclude' symbol default"
3846 conv
= ensure_conversion(
3847 'symbol-mess', args
=['--symbol-default=exclude'])
3848 if conv
.path_exists('tags', 'MOSTLY_BRANCH') \
3849 or conv
.path_exists('branches', 'MOSTLY_BRANCH'):
3851 if conv
.path_exists('tags', 'MOSTLY_TAG') \
3852 or conv
.path_exists('branches', 'MOSTLY_TAG'):
3856 @Cvs2SvnTestFunction
3857 def add_on_branch2():
3858 "another add-on-branch test case"
3860 conv
= ensure_conversion('add-on-branch2')
3861 if len(conv
.logs
) != 2:
3863 conv
.logs
[2].check('add file on branch', (
3864 ('/%(branches)s/BRANCH', 'A'),
3865 ('/%(branches)s/BRANCH/file1', 'A'),
3868 @Cvs2SvnTestFunction
3869 def branch_from_vendor_branch():
3870 "branch from vendor branch"
3873 'branch-from-vendor-branch',
3874 symbol_hints_file
='branch-from-vendor-branch-symbol-hints.txt',
3877 ########################################################################
3880 # list all tests here, starting with None:
3887 XFail(cvs2hg_manpage
),
3892 PruneWithCare(variant
=1, trunk
='a', branches
='b', tags
='c'),
3894 PruneWithCare(variant
=2, trunk
='a/1', branches
='b/1', tags
='c/1'),
3895 PruneWithCare(variant
=3, trunk
='a/1', branches
='a/2', tags
='a/3'),
3896 interleaved_commits
,
3899 SimpleTags(variant
=1, trunk
='a', branches
='b', tags
='c'),
3900 SimpleTags(variant
=2, trunk
='a/1', branches
='b/1', tags
='c/1'),
3901 SimpleTags(variant
=3, trunk
='a/1', branches
='a/2', tags
='a/3'),
3902 simple_branch_commits
,
3905 mixed_time_branch_with_added_file
,
3911 PhoenixBranch(variant
=1, trunk
='a/1', branches
='b/1', tags
='c/1'),
3916 NoTrunkPrune(variant
=1, trunk
='a', branches
='b', tags
='c'),
3917 NoTrunkPrune(variant
=2, trunk
='a/1', branches
='b/1', tags
='c/1'),
3918 NoTrunkPrune(variant
=3, trunk
='a/1', branches
='a/2', tags
='a/3'),
3922 TaggedBranchAndTrunk(),
3923 TaggedBranchAndTrunk(variant
=1, trunk
='a/1', branches
='a/2', tags
='a/3'),
3927 BranchDeleteFirst(),
3928 BranchDeleteFirst(variant
=1, trunk
='a/1', branches
='a/2', tags
='a/3'),
3931 warning_expected
=1),
3934 variant
='encoding', args
=['--encoding=utf_8']),
3937 variant
='fallback-encoding', args
=['--fallback-encoding=utf_8']),
3939 warning_expected
=1),
3942 variant
='encoding', args
=['--encoding=utf_8']),
3945 variant
='fallback-encoding', args
=['--fallback-encoding=utf_8']),
3946 vendor_branch_sameness
,
3948 vendor_branch_trunk_only
,
3950 default_branches_trunk_only
,
3951 default_branch_and_1_2
,
3952 compose_tag_three_sources
,
3955 PeerPathPruning(variant
=1, trunk
='a/1', branches
='a/2', tags
='a/3'),
3957 EmptyTrunk(variant
=1, trunk
='a', branches
='b', tags
='c'),
3959 EmptyTrunk(variant
=2, trunk
='a/1', branches
='a/2', tags
='a/3'),
3960 no_spurious_svn_commits
,
3961 invalid_closings_on_trunk
,
3964 branch_from_default_branch
,
3966 retain_file_in_attic_too
,
3967 symbolic_name_filling_guide
,
3978 questionable_branch_names
,
3979 questionable_tag_names
,
3981 revision_reorder_bug
,
3983 vendor_branch_delete_add
,
3984 resync_pass2_pull_forward
,
3987 XFail(double_fill2
),
3988 resync_pass2_push_backward
,
3992 nested_ttb_directories
,
3993 auto_props_ignore_case
,
3994 ctrl_char_in_filename
,
3995 commit_dependencies
,
3998 multiply_defined_symbols
,
3999 multiply_defined_symbols_renamed
,
4000 multiply_defined_symbols_ignored
,
4001 repeatedly_defined_symbols
,
4003 double_branch_delete
,
4005 overlook_symbol_mismatches
,
4009 unblock_blocked_excludes
,
4010 regexp_force_symbols
,
4011 heuristic_symbol_default
,
4012 branch_symbol_default
,
4019 parent_hints_invalid
,
4020 parent_hints_wildcards
,
4029 tag_with_no_revision
,
4033 XFail(tagging_after_delete
),
4036 file_directory_conflict
,
4037 attic_directory_conflict
,
4039 internal_co_exclude
,
4040 internal_co_trunk_only
,
4041 internal_co_keywords
,
4043 requires_internal_co
,
4048 preferred_parent_cycle
,
4049 branch_from_empty_dir
,
4051 branch_from_deleted_1_1
,
4059 invalid_symbol_ignore
,
4060 invalid_symbol_ignore2
,
4063 EOLVariants('CRLF'),
4064 EOLVariants('native'),
4066 mirror_keyerror_test
,
4069 mirror_keyerror2_test
,
4070 mirror_keyerror3_test
,
4071 XFail(add_cvsignore_to_branch_test
),
4073 transform_unlabeled_branch_name
,
4074 ignore_unlabeled_branch
,
4075 unlabeled_branch_name_collision
,
4076 collision_with_unlabeled_branch_name
,
4080 include_empty_directories
,
4081 include_empty_directories_no_prune
,
4082 exclude_symbol_default
,
4084 XFail(branch_from_vendor_branch
),
4087 if __name__
== '__main__':
4089 # Configure the environment for reproducable output from svn, etc.
4090 os
.environ
["LC_ALL"] = "C"
4092 # Unfortunately, there is no way under Windows to make Subversion
4093 # think that the local time zone is UTC, so we just work in the
4096 # The Subversion test suite code assumes it's being invoked from
4097 # within a working copy of the Subversion sources, and tries to use
4098 # the binaries in that tree. Since the cvs2svn tree never contains
4099 # a Subversion build, we just use the system's installed binaries.
4100 svntest
.main
.svn_binary
= svn_binary
4101 svntest
.main
.svnlook_binary
= svnlook_binary
4102 svntest
.main
.svnadmin_binary
= svnadmin_binary
4103 svntest
.main
.svnversion_binary
= svnversion_binary
4105 svntest
.main
.run_tests(test_list
)