| #!/usr/bin/env python |
| # |
| # commit_tests.py: testing fancy commit cases. |
| # |
| # Subversion is a tool for revision control. |
| # See http://subversion.tigris.org for more information. |
| # |
| # ==================================================================== |
| # Copyright (c) 2000-2007 CollabNet. All rights reserved. |
| # |
| # This software is licensed as described in the file COPYING, which |
| # you should have received as part of this distribution. The terms |
| # are also available at http://subversion.tigris.org/license-1.html. |
| # If newer versions of this license are posted there, you may use a |
| # newer version instead, at your option. |
| # |
| ###################################################################### |
| |
| # General modules |
| import string, sys, os, re |
| |
| # Our testing module |
| import svntest |
| |
| # (abbreviation) |
| Skip = svntest.testcase.Skip |
| SkipUnless = svntest.testcase.SkipUnless |
| XFail = svntest.testcase.XFail |
| Item = svntest.wc.StateItem |
| |
| from svntest.main import server_has_revprop_commit |
| from svntest.actions import inject_conflict_into_wc |
| |
| ###################################################################### |
| # Utilities |
| # |
| |
| def is_non_posix_os_or_cygwin_platform(): |
| return (not svntest.main.is_posix_os()) or sys.platform == 'cygwin' |
| |
| def get_standard_state(wc_dir): |
| """Return a status list reflecting the local mods made by |
| make_standard_slew_of_changes().""" |
| |
| state = svntest.actions.get_virginal_state(wc_dir, 1) |
| |
| state.tweak('', 'A/D', 'A/D/G/pi', status=' M') |
| state.tweak('A/B/lambda', status='M ') |
| state.tweak('A/B/E', 'A/D/H/chi', status='R ') |
| state.tweak('A/B/E/alpha', 'A/B/E/beta', 'A/C', 'A/D/gamma', |
| 'A/D/G/rho', status='D ') |
| state.tweak('A/D/H/omega', status='MM') |
| |
| # New things |
| state.add({ |
| 'Q' : Item(status='A ', wc_rev=0), |
| 'Q/floo' : Item(status='A ', wc_rev=0), |
| 'A/D/H/gloo' : Item(status='A ', wc_rev=0), |
| 'A/B/E/bloo' : Item(status='A ', wc_rev=0), |
| }) |
| |
| return state |
| |
| |
| def make_standard_slew_of_changes(wc_dir): |
| """Make a specific set of local mods to WC_DIR. These will be used |
| by every commit-test. Verify the 'svn status' output, and return the |
| (pre-commit) status tree.""" |
| |
| # Cache current working directory, move into wc_dir |
| was_cwd = os.getcwd() |
| os.chdir(wc_dir) |
| |
| # Add a directory |
| os.mkdir('Q') |
| svntest.main.run_svn(None, 'add', 'Q') |
| |
| # Remove two directories |
| svntest.main.run_svn(None, 'rm', os.path.join('A', 'B', 'E')) |
| svntest.main.run_svn(None, 'rm', os.path.join('A', 'C')) |
| |
| # Replace one of the removed directories |
| svntest.main.run_svn(None, 'add', os.path.join('A', 'B', 'E')) |
| |
| # Make property mods to two directories |
| svntest.main.run_svn(None, 'propset', 'foo', 'bar', os.curdir) |
| svntest.main.run_svn(None, 'propset', 'foo2', 'bar2', os.path.join('A', 'D')) |
| |
| # Add three files |
| svntest.main.file_append(os.path.join('A', 'B', 'E', 'bloo'), "hi") |
| svntest.main.file_append(os.path.join('A', 'D', 'H', 'gloo'), "hello") |
| svntest.main.file_append(os.path.join('Q', 'floo'), "yo") |
| svntest.main.run_svn(None, 'add', os.path.join('A', 'B', 'E', 'bloo')) |
| svntest.main.run_svn(None, 'add', os.path.join('A', 'D', 'H', 'gloo')) |
| svntest.main.run_svn(None, 'add', os.path.join('Q', 'floo')) |
| |
| # Remove three files |
| svntest.main.run_svn(None, 'rm', os.path.join('A', 'D', 'G', 'rho')) |
| svntest.main.run_svn(None, 'rm', os.path.join('A', 'D', 'H', 'chi')) |
| svntest.main.run_svn(None, 'rm', os.path.join('A', 'D', 'gamma')) |
| |
| # Replace one of the removed files |
| svntest.main.file_append(os.path.join('A', 'D', 'H', 'chi'), "chi") |
| svntest.main.run_svn(None, 'add', os.path.join('A', 'D', 'H', 'chi')) |
| |
| # Make textual mods to two files |
| svntest.main.file_append(os.path.join('A', 'B', 'lambda'), "new ltext") |
| svntest.main.file_append(os.path.join('A', 'D', 'H', 'omega'), "new otext") |
| |
| # Make property mods to three files |
| svntest.main.run_svn(None, 'propset', 'blue', 'azul', |
| os.path.join('A', 'D', 'H', 'omega')) |
| svntest.main.run_svn(None, 'propset', 'green', 'verde', |
| os.path.join('Q', 'floo')) |
| svntest.main.run_svn(None, 'propset', 'red', 'rojo', |
| os.path.join('A', 'D', 'G', 'pi')) |
| |
| # Restore the CWD. |
| os.chdir(was_cwd) |
| |
| # Build an expected status tree. |
| expected_status = get_standard_state(wc_dir) |
| |
| # Verify status -- all local mods should be present. |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| |
| return expected_status |
| |
| |
| ###################################################################### |
| # Tests |
| # |
| # Each test must return on success or raise on failure. |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_one_file(sbox): |
| "commit one file" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| |
| # Create expected state. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/omega' : Item(verb='Sending'), |
| }) |
| expected_status.tweak('A/D/H/omega', wc_rev=2, status=' ') |
| |
| # Commit the one file. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| omega_path) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_one_new_file(sbox): |
| "commit one newly added file" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| gloo_path = os.path.join(wc_dir, 'A', 'D', 'H', 'gloo') |
| |
| # Create expected state. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/gloo' : Item(verb='Adding'), |
| }) |
| expected_status.tweak('A/D/H/gloo', wc_rev=2, status=' ') |
| |
| # Commit the one file. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| gloo_path) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_one_new_binary_file(sbox): |
| "commit one newly added binary file" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| gloo_path = os.path.join(wc_dir, 'A', 'D', 'H', 'gloo') |
| svntest.main.run_svn(None, 'propset', 'svn:mime-type', |
| 'application/octet-stream', gloo_path) |
| |
| # Create expected state. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/gloo' : Item(verb='Adding (bin)'), |
| }) |
| expected_status.tweak('A/D/H/gloo', wc_rev=2, status=' ') |
| |
| # Commit the one file. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| gloo_path) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_multiple_targets(sbox): |
| "commit multiple targets" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # This test will commit three targets: psi, B, and pi. In that order. |
| |
| # Make local mods to many files. |
| AB_path = os.path.join(wc_dir, 'A', 'B') |
| lambda_path = os.path.join(wc_dir, 'A', 'B', 'lambda') |
| rho_path = os.path.join(wc_dir, 'A', 'D', 'G', 'rho') |
| pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi') |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| psi_path = os.path.join(wc_dir, 'A', 'D', 'H', 'psi') |
| svntest.main.file_append(lambda_path, 'new appended text for lambda') |
| svntest.main.file_append(rho_path, 'new appended text for rho') |
| svntest.main.file_append(pi_path, 'new appended text for pi') |
| svntest.main.file_append(omega_path, 'new appended text for omega') |
| svntest.main.file_append(psi_path, 'new appended text for psi') |
| |
| # Just for kicks, add a property to A/D/G as well. We'll make sure |
| # that it *doesn't* get committed. |
| ADG_path = os.path.join(wc_dir, 'A', 'D', 'G') |
| svntest.main.run_svn(None, 'propset', 'foo', 'bar', ADG_path) |
| |
| # Create expected output tree for 'svn ci'. We should see changes |
| # only on these three targets, no others. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/psi' : Item(verb='Sending'), |
| 'A/B/lambda' : Item(verb='Sending'), |
| 'A/D/G/pi' : Item(verb='Sending'), |
| }) |
| |
| # Create expected status tree; all local revisions should be at 1, |
| # but our three targets should be at 2. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H/psi', 'A/B/lambda', 'A/D/G/pi', wc_rev=2) |
| |
| # rho and omega should still display as locally modified: |
| expected_status.tweak('A/D/G/rho', 'A/D/H/omega', status='M ') |
| |
| # A/D/G should still have a local property set, too. |
| expected_status.tweak('A/D/G', status=' M') |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| psi_path, AB_path, pi_path) |
| |
| #---------------------------------------------------------------------- |
| |
| |
| def commit_multiple_targets_2(sbox): |
| "commit multiple targets, 2nd variation" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # This test will commit four targets: psi, B, omega and pi. In that order. |
| |
| # Make local mods to many files. |
| AB_path = os.path.join(wc_dir, 'A', 'B') |
| lambda_path = os.path.join(wc_dir, 'A', 'B', 'lambda') |
| rho_path = os.path.join(wc_dir, 'A', 'D', 'G', 'rho') |
| pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi') |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| psi_path = os.path.join(wc_dir, 'A', 'D', 'H', 'psi') |
| svntest.main.file_append(lambda_path, 'new appended text for lambda') |
| svntest.main.file_append(rho_path, 'new appended text for rho') |
| svntest.main.file_append(pi_path, 'new appended text for pi') |
| svntest.main.file_append(omega_path, 'new appended text for omega') |
| svntest.main.file_append(psi_path, 'new appended text for psi') |
| |
| # Just for kicks, add a property to A/D/G as well. We'll make sure |
| # that it *doesn't* get committed. |
| ADG_path = os.path.join(wc_dir, 'A', 'D', 'G') |
| svntest.main.run_svn(None, 'propset', 'foo', 'bar', ADG_path) |
| |
| # Created expected output tree for 'svn ci'. We should see changes |
| # only on these three targets, no others. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/psi' : Item(verb='Sending'), |
| 'A/B/lambda' : Item(verb='Sending'), |
| 'A/D/H/omega' : Item(verb='Sending'), |
| 'A/D/G/pi' : Item(verb='Sending'), |
| }) |
| |
| # Create expected status tree; all local revisions should be at 1, |
| # but our four targets should be at 2. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H/psi', 'A/B/lambda', 'A/D/G/pi', 'A/D/H/omega', |
| wc_rev=2) |
| |
| # rho should still display as locally modified: |
| expected_status.tweak('A/D/G/rho', status='M ') |
| |
| # A/D/G should still have a local property set, too. |
| expected_status.tweak('A/D/G', status=' M') |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| psi_path, AB_path, |
| omega_path, pi_path) |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_inclusive_dir(sbox): |
| "commit wc_dir/A/D -- includes D. (anchor=A, tgt=D)" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| D_path = os.path.join(wc_dir, 'A', 'D') |
| |
| # Create expected state. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D' : Item(verb='Sending'), |
| 'A/D/G/pi' : Item(verb='Sending'), |
| 'A/D/G/rho' : Item(verb='Deleting'), |
| 'A/D/H/gloo' : Item(verb='Adding'), |
| 'A/D/H/chi' : Item(verb='Replacing'), |
| 'A/D/H/omega' : Item(verb='Sending'), |
| 'A/D/gamma' : Item(verb='Deleting'), |
| }) |
| |
| expected_status.remove('A/D/G/rho', 'A/D/gamma') |
| expected_status.tweak('A/D', 'A/D/G/pi', 'A/D/H/omega', |
| wc_rev=2, status=' ') |
| expected_status.tweak('A/D/H/chi', 'A/D/H/gloo', wc_rev=2, status=' ') |
| |
| # Commit the one file. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| D_path) |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_top_dir(sbox): |
| "commit wc_dir -- (anchor=wc_dir, tgt={})" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| # Create expected state. |
| expected_output = svntest.wc.State(wc_dir, { |
| '' : Item(verb='Sending'), |
| 'Q' : Item(verb='Adding'), |
| 'Q/floo' : Item(verb='Adding'), |
| 'A/B/E' : Item(verb='Replacing'), |
| 'A/B/E/bloo' : Item(verb='Adding'), |
| 'A/B/lambda' : Item(verb='Sending'), |
| 'A/C' : Item(verb='Deleting'), |
| 'A/D' : Item(verb='Sending'), |
| 'A/D/G/pi' : Item(verb='Sending'), |
| 'A/D/G/rho' : Item(verb='Deleting'), |
| 'A/D/H/gloo' : Item(verb='Adding'), |
| 'A/D/H/chi' : Item(verb='Replacing'), |
| 'A/D/H/omega' : Item(verb='Sending'), |
| 'A/D/gamma' : Item(verb='Deleting'), |
| }) |
| |
| expected_status.remove('A/D/G/rho', 'A/D/gamma', 'A/C', |
| 'A/B/E/alpha', 'A/B/E/beta') |
| expected_status.tweak('A/D', 'A/D/G/pi', 'A/D/H/omega', 'Q/floo', '', |
| wc_rev=2, status=' ') |
| expected_status.tweak('A/D/H/chi', 'Q', 'A/B/E', 'A/B/E/bloo', 'A/B/lambda', |
| 'A/D/H/gloo', wc_rev=2, status=' ') |
| |
| # Commit the one file. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| # Regression test for bug reported by Jon Trowbridge: |
| # |
| # From: Jon Trowbridge <trow@ximian.com> |
| # Subject: svn segfaults if you commit a file that hasn't been added |
| # To: dev@subversion.tigris.org |
| # Date: 17 Jul 2001 03:20:55 -0500 |
| # Message-Id: <995358055.16975.5.camel@morimoto> |
| # |
| # The problem is that report_single_mod in libsvn_wc/adm_crawler.c is |
| # called with its entry parameter as NULL, but the code doesn't |
| # check that entry is non-NULL before trying to dereference it. |
| # |
| # This bug never had an issue number. |
| # |
| def commit_unversioned_thing(sbox): |
| "committing unversioned object produces error" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Create an unversioned file in the wc. |
| svntest.main.file_append(os.path.join(wc_dir, 'blorg'), "nothing to see") |
| |
| # Commit a non-existent file and *expect* failure: |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| "is not under version control", |
| None, None, |
| None, None, |
| os.path.join(wc_dir,'blorg')) |
| |
| #---------------------------------------------------------------------- |
| |
| # regression test for bug #391 |
| |
| def nested_dir_replacements(sbox): |
| "replace two nested dirs, verify empty contents" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Delete and re-add A/D (a replacement), and A/D/H (another replace). |
| svntest.main.run_svn(None, 'rm', os.path.join(wc_dir, 'A', 'D')) |
| svntest.main.run_svn(None, 'add', '--depth=empty', |
| os.path.join(wc_dir, 'A', 'D')) |
| svntest.main.run_svn(None, 'add', '--depth=empty', |
| os.path.join(wc_dir, 'A', 'D', 'H')) |
| |
| # For kicks, add new file A/D/bloo. |
| svntest.main.file_append(os.path.join(wc_dir, 'A', 'D', 'bloo'), "hi") |
| svntest.main.run_svn(None, 'add', os.path.join(wc_dir, 'A', 'D', 'bloo')) |
| |
| # Verify pre-commit status: |
| # |
| # - A/D and A/D/H should both be scheduled as "R" at rev 1 |
| # (rev 1 because they both existed before at rev 1) |
| # |
| # - A/D/bloo scheduled as "A" at rev 0 |
| # (rev 0 because it did not exist before) |
| # |
| # - ALL other children of A/D scheduled as "D" at rev 1 |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D', 'A/D/H', status='R ', wc_rev=1) |
| expected_status.add({ |
| 'A/D/bloo' : Item(status='A ', wc_rev=0), |
| }) |
| expected_status.tweak('A/D/G', 'A/D/G/pi', 'A/D/G/rho', 'A/D/G/tau', |
| 'A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi', 'A/D/gamma', |
| status='D ') |
| |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| |
| # Build expected post-commit trees: |
| |
| # Create expected output tree. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D' : Item(verb='Replacing'), |
| 'A/D/H' : Item(verb='Adding'), |
| 'A/D/bloo' : Item(verb='Adding'), |
| }) |
| |
| # Created expected status tree. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D', 'A/D/H', wc_rev=2) |
| expected_status.add({ |
| 'A/D/bloo' : Item(status=' ', wc_rev=2), |
| }) |
| expected_status.remove('A/D/G', 'A/D/G/pi', 'A/D/G/rho', 'A/D/G/tau', |
| 'A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi', 'A/D/gamma') |
| |
| # Commit from the top of the working copy and verify output & status. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| # Testing part 1 of the "Greg Hudson" problem -- specifically, that |
| # our use of the "existence=deleted" flag is working properly in cases |
| # where the parent directory's revision lags behind a deleted child's |
| # revision. |
| |
| def hudson_part_1(sbox): |
| "hudson prob 1.0: delete file, commit, update" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Remove gamma from the working copy. |
| gamma_path = os.path.join(wc_dir, 'A', 'D', 'gamma') |
| svntest.main.run_svn(None, 'rm', gamma_path) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/gamma' : Item(verb='Deleting'), |
| }) |
| |
| # After committing, status should show no sign of gamma. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/D/gamma') |
| |
| # Commit the deletion of gamma and verify. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # Now gamma should be marked as `deleted' under the hood. When we |
| # update, we should no output, and a perfect, virginal status list |
| # at revision 2. (The `deleted' entry should be removed.) |
| |
| # Expected output of update: nothing. |
| expected_output = svntest.wc.State(wc_dir, {}) |
| |
| # Expected disk tree: everything but gamma |
| expected_disk = svntest.main.greek_state.copy() |
| expected_disk.remove('A/D/gamma') |
| |
| # Expected status after update: totally clean revision 2, minus gamma. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 2) |
| expected_status.remove('A/D/gamma') |
| |
| svntest.actions.run_and_verify_update(wc_dir, |
| expected_output, |
| expected_disk, |
| expected_status) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| # Testing part 1 of the "Greg Hudson" problem -- variation on previous |
| # test, removing a directory instead of a file this time. |
| |
| def hudson_part_1_variation_1(sbox): |
| "hudson prob 1.1: delete dir, commit, update" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Remove H from the working copy. |
| H_path = os.path.join(wc_dir, 'A', 'D', 'H') |
| svntest.main.run_svn(None, 'rm', H_path) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H' : Item(verb='Deleting'), |
| }) |
| |
| # After committing, status should show no sign of H or its contents |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/D/H', 'A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi') |
| |
| # Commit the deletion of H and verify. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # Now H should be marked as `deleted' under the hood. When we |
| # update, we should no see output, and a perfect, virginal status |
| # list at revision 2. (The `deleted' entry should be removed.) |
| |
| # Expected output of update: H gets a no-op deletion. |
| expected_output = svntest.wc.State(wc_dir, {}) |
| |
| # Expected disk tree: everything except files in H |
| expected_disk = svntest.main.greek_state.copy() |
| expected_disk.remove('A/D/H', 'A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi') |
| |
| # Expected status after update: totally clean revision 2, minus H. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 2) |
| expected_status.remove('A/D/H', 'A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi') |
| |
| svntest.actions.run_and_verify_update(wc_dir, |
| expected_output, |
| expected_disk, |
| expected_status) |
| |
| #---------------------------------------------------------------------- |
| |
| # Testing part 1 of the "Greg Hudson" problem -- variation 2. In this |
| # test, we make sure that a file that is BOTH `deleted' and scheduled |
| # for addition can be correctly committed & merged. |
| |
| def hudson_part_1_variation_2(sbox): |
| "hudson prob 1.2: delete, commit, re-add, commit" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Remove gamma from the working copy. |
| gamma_path = os.path.join(wc_dir, 'A', 'D', 'gamma') |
| svntest.main.run_svn(None, 'rm', gamma_path) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/gamma' : Item(verb='Deleting'), |
| }) |
| |
| # After committing, status should show no sign of gamma. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/D/gamma') |
| |
| # Commit the deletion of gamma and verify. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # Now gamma should be marked as `deleted' under the hood. |
| # Go ahead and re-add gamma, so that is *also* scheduled for addition. |
| svntest.main.file_append(gamma_path, "added gamma") |
| svntest.main.run_svn(None, 'add', gamma_path) |
| |
| # For sanity, examine status: it should show a revision 2 tree with |
| # gamma scheduled for addition. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/gamma', wc_rev=0, status='A ') |
| |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/gamma' : Item(verb='Adding'), |
| }) |
| |
| # After committing, status should show only gamma at revision 3. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/gamma', wc_rev=3) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| # Testing part 2 of the "Greg Hudson" problem. |
| # |
| # In this test, we make sure that we're UNABLE to commit a propchange |
| # on an out-of-date directory. |
| |
| def hudson_part_2(sbox): |
| "hudson prob 2.0: prop commit on old dir fails" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Remove gamma from the working copy. |
| D_path = os.path.join(wc_dir, 'A', 'D') |
| gamma_path = os.path.join(wc_dir, 'A', 'D', 'gamma') |
| svntest.main.run_svn(None, 'rm', gamma_path) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/gamma' : Item(verb='Deleting'), |
| }) |
| |
| # After committing, status should show no sign of gamma. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/D/gamma') |
| |
| # Commit the deletion of gamma and verify. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # Now gamma should be marked as `deleted' under the hood, at |
| # revision 2. Meanwhile, A/D is still lagging at revision 1. |
| |
| # Make a propchange on A/D |
| svntest.main.run_svn(None, 'ps', 'foo', 'bar', D_path) |
| |
| # Commit and *expect* a repository Merge failure: |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| "[Oo]ut.of.date", |
| None, None, |
| None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| # Test a possible regression in our 'deleted' post-commit handling. |
| # |
| # This test moves files from one subdir to another, commits, then |
| # updates the empty directory. Nothing should be printed, assuming |
| # all the moved files are properly marked as 'deleted' and reported to |
| # the server. |
| |
| def hudson_part_2_1(sbox): |
| "hudson prob 2.1: move files, update empty dir" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Move all the files in H to G |
| H_path = os.path.join(wc_dir, 'A', 'D', 'H') |
| G_path = os.path.join(wc_dir, 'A', 'D', 'G') |
| chi_path = os.path.join(H_path, 'chi') |
| psi_path = os.path.join(H_path, 'psi') |
| omega_path = os.path.join(H_path, 'omega') |
| |
| svntest.main.run_svn(None, 'mv', chi_path, G_path) |
| svntest.main.run_svn(None, 'mv', psi_path, G_path) |
| svntest.main.run_svn(None, 'mv', omega_path, G_path) |
| |
| # Create expected commit output. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/chi' : Item(verb='Deleting'), |
| 'A/D/H/omega' : Item(verb='Deleting'), |
| 'A/D/H/psi' : Item(verb='Deleting'), |
| 'A/D/G/chi' : Item(verb='Adding'), |
| 'A/D/G/omega' : Item(verb='Adding'), |
| 'A/D/G/psi' : Item(verb='Adding'), |
| }) |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/D/H/chi') |
| expected_status.remove('A/D/H/omega') |
| expected_status.remove('A/D/H/psi') |
| expected_status.add({ 'A/D/G/chi' : |
| Item(wc_rev=2, status=' ') }) |
| expected_status.add({ 'A/D/G/omega' : |
| Item(wc_rev=2, status=' ') }) |
| expected_status.add({ 'A/D/G/psi' : |
| Item(wc_rev=2, status=' ') }) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # Now, assuming all three files in H are marked as 'deleted', an |
| # update of H should print absolutely nothing. |
| expected_output = svntest.wc.State(wc_dir, { }) |
| |
| # Reuse expected_status |
| expected_status.tweak(wc_rev=2) |
| |
| expected_disk = svntest.main.greek_state.copy() |
| expected_disk.remove('A/D/H/chi', 'A/D/H/omega', 'A/D/H/psi') |
| expected_disk.add({ |
| 'A/D/G/chi' : Item("This is the file 'chi'.\n"), |
| }) |
| expected_disk.add({ |
| 'A/D/G/omega' : Item("This is the file 'omega'.\n"), |
| }) |
| expected_disk.add({ |
| 'A/D/G/psi' : Item("This is the file 'psi'.\n"), |
| }) |
| |
| svntest.actions.run_and_verify_update(wc_dir, |
| expected_output, |
| expected_disk, |
| expected_status) |
| |
| #---------------------------------------------------------------------- |
| |
| def hook_test(sbox): |
| "hook testing" |
| |
| sbox.build() |
| |
| # Get paths to the working copy and repository |
| wc_dir = sbox.wc_dir |
| repo_dir = sbox.repo_dir |
| |
| # Create a hook that appends its name to a log file. |
| hook_format = """import sys |
| fp = open(sys.argv[1] + '/hooks.log', 'a') |
| fp.write("%s\\n") |
| fp.close()""" |
| |
| # Setup the hook configs to log data to a file |
| start_commit_hook = svntest.main.get_start_commit_hook_path(repo_dir) |
| svntest.main.create_python_hook_script(start_commit_hook, |
| hook_format % "start_commit_hook") |
| |
| pre_commit_hook = svntest.main.get_pre_commit_hook_path(repo_dir) |
| svntest.main.create_python_hook_script(pre_commit_hook, |
| hook_format % "pre_commit_hook") |
| |
| post_commit_hook = svntest.main.get_post_commit_hook_path(repo_dir) |
| svntest.main.create_python_hook_script(post_commit_hook, |
| hook_format % "post_commit_hook") |
| |
| # Modify iota just so there is something to commit. |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "More stuff in iota") |
| |
| # Commit, no output expected. |
| svntest.actions.run_and_verify_svn(None, [], [], |
| 'ci', '--quiet', |
| '-m', 'log msg', wc_dir) |
| |
| # Now check the logfile |
| expected_data = [ 'start_commit_hook\n', 'pre_commit_hook\n', 'post_commit_hook\n' ] |
| |
| logfilename = os.path.join(repo_dir, "hooks.log") |
| if os.path.exists(logfilename): |
| fp = open(logfilename) |
| else: |
| raise svntest.actions.SVNUnexpectedOutput("hook logfile %s not found")\ |
| % logfilename |
| |
| actual_data = fp.readlines() |
| fp.close() |
| os.unlink(logfilename) |
| svntest.verify.compare_and_display_lines('wrong hook logfile content', |
| 'STDERR', |
| expected_data, actual_data) |
| |
| #---------------------------------------------------------------------- |
| |
| # Regression test for bug #469, whereby merge() was once reporting |
| # erroneous conflicts due to Ancestor < Target < Source, in terms of |
| # node-rev-id parentage. |
| |
| def merge_mixed_revisions(sbox): |
| "commit mixed-rev wc (no erroneous merge error)" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Make some convenient paths. |
| iota_path = os.path.join(wc_dir, 'iota') |
| H_path = os.path.join(wc_dir, 'A', 'D', 'H') |
| chi_path = os.path.join(wc_dir, 'A', 'D', 'H', 'chi') |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| |
| # Here's the reproduction formula, in 5 parts. |
| # Hoo, what a buildup of state! |
| |
| # 1. echo "moo" >> iota; echo "moo" >> A/D/H/chi; svn ci |
| svntest.main.file_append(iota_path, "moo") |
| svntest.main.file_append(chi_path, "moo") |
| |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Sending'), |
| 'A/D/H/chi' : Item(verb='Sending'), |
| }) |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('iota', 'A/D/H/chi', wc_rev=2) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| |
| # 2. svn up A/D/H |
| expected_status = svntest.wc.State(wc_dir, { |
| 'A/D/H' : Item(status=' ', wc_rev=2), |
| 'A/D/H/chi' : Item(status=' ', wc_rev=2), |
| 'A/D/H/omega' : Item(status=' ', wc_rev=2), |
| 'A/D/H/psi' : Item(status=' ', wc_rev=2), |
| }) |
| expected_disk = svntest.wc.State('', { |
| 'omega' : Item("This is the file 'omega'.\n"), |
| 'chi' : Item("This is the file 'chi'.\nmoo"), |
| 'psi' : Item("This is the file 'psi'.\n"), |
| }) |
| expected_output = svntest.wc.State(wc_dir, { }) |
| svntest.actions.run_and_verify_update(H_path, |
| expected_output, |
| expected_disk, |
| expected_status) |
| |
| |
| # 3. echo "moo" >> iota; svn ci iota |
| svntest.main.file_append(iota_path, "moo2") |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H', 'A/D/H/omega', 'A/D/H/chi', 'A/D/H/psi', |
| wc_rev=2) |
| expected_status.tweak('iota', wc_rev=3) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| |
| # 4. echo "moo" >> A/D/H/chi; svn ci A/D/H/chi |
| svntest.main.file_append(chi_path, "moo3") |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/chi' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H/chi', wc_rev=4) |
| expected_status.tweak('A/D/H', 'A/D/H/omega', 'A/D/H/psi', wc_rev=2) |
| expected_status.tweak('iota', wc_rev=3) |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # 5. echo "moo" >> iota; svn ci iota |
| svntest.main.file_append(iota_path, "moomoo") |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H', 'A/D/H/omega', 'A/D/H/psi', wc_rev=2) |
| expected_status.tweak('A/D/H/chi', wc_rev=4) |
| expected_status.tweak('iota', wc_rev=5) |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| # At this point, here is what our tree should look like: |
| # _ 1 ( 5) working_copies/commit_tests-10 |
| # _ 1 ( 5) working_copies/commit_tests-10/A |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B/E |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B/E/alpha |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B/E/beta |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B/F |
| # _ 1 ( 5) working_copies/commit_tests-10/A/B/lambda |
| # _ 1 ( 5) working_copies/commit_tests-10/A/C |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D/G |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D/G/pi |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D/G/rho |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D/G/tau |
| # _ 2 ( 5) working_copies/commit_tests-10/A/D/H |
| # _ 4 ( 5) working_copies/commit_tests-10/A/D/H/chi |
| # _ 2 ( 5) working_copies/commit_tests-10/A/D/H/omega |
| # _ 2 ( 5) working_copies/commit_tests-10/A/D/H/psi |
| # _ 1 ( 5) working_copies/commit_tests-10/A/D/gamma |
| # _ 1 ( 5) working_copies/commit_tests-10/A/mu |
| # _ 5 ( 5) working_copies/commit_tests-10/iota |
| |
| # At this point, we're ready to modify omega and iota, and commit |
| # from the top. We should *not* get a conflict! |
| |
| svntest.main.file_append(iota_path, "finalmoo") |
| svntest.main.file_append(omega_path, "finalmoo") |
| |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Sending'), |
| 'A/D/H/omega' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('iota', 'A/D/H/omega', wc_rev=6) |
| expected_status.tweak('A/D/H', 'A/D/H/psi', wc_rev=2) |
| expected_status.tweak('A/D/H/chi', wc_rev=4) |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_uri_unsafe(sbox): |
| "commit files and dirs with URI-unsafe characters" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Note: on Windows, files can't have angle brackets in them, so we |
| # don't tests that case. |
| if svntest.main.windows or sys.platform == 'cygwin': |
| angle_name = '_angle_' |
| nasty_name = '#![]{}()__%' |
| else: |
| angle_name = '<angle>' |
| nasty_name = '#![]{}()<>%' |
| |
| # Make some convenient paths. |
| hash_dir = os.path.join(wc_dir, '#hash#') |
| nasty_dir = os.path.join(wc_dir, nasty_name) |
| space_path = os.path.join(wc_dir, 'A', 'D', 'space path') |
| bang_path = os.path.join(wc_dir, 'A', 'D', 'H', 'bang!') |
| bracket_path = os.path.join(wc_dir, 'A', 'D', 'H', 'bra[ket') |
| brace_path = os.path.join(wc_dir, 'A', 'D', 'H', 'bra{e') |
| angle_path = os.path.join(wc_dir, 'A', 'D', 'H', angle_name) |
| paren_path = os.path.join(wc_dir, 'A', 'D', 'pare)(theses') |
| percent_path = os.path.join(wc_dir, '#hash#', 'percen%') |
| nasty_path = os.path.join(wc_dir, 'A', nasty_name) |
| |
| os.mkdir(hash_dir) |
| os.mkdir(nasty_dir) |
| svntest.main.file_append(space_path, "This path has a space in it.") |
| svntest.main.file_append(bang_path, "This path has a bang in it.") |
| svntest.main.file_append(bracket_path, "This path has a bracket in it.") |
| svntest.main.file_append(brace_path, "This path has a brace in it.") |
| svntest.main.file_append(angle_path, "This path has angle brackets in it.") |
| svntest.main.file_append(paren_path, "This path has parentheses in it.") |
| svntest.main.file_append(percent_path, "This path has a percent in it.") |
| svntest.main.file_append(nasty_path, "This path has all sorts of ick in it.") |
| |
| add_list = [hash_dir, |
| nasty_dir, # not xml-safe |
| space_path, |
| bang_path, |
| bracket_path, |
| brace_path, |
| angle_path, # not xml-safe |
| paren_path, |
| percent_path, |
| nasty_path, # not xml-safe |
| ] |
| for item in add_list: |
| svntest.main.run_svn(None, 'add', '--depth=empty', item) |
| |
| expected_output = svntest.wc.State(wc_dir, { |
| '#hash#' : Item(verb='Adding'), |
| nasty_name : Item(verb='Adding'), |
| 'A/D/space path' : Item(verb='Adding'), |
| 'A/D/H/bang!' : Item(verb='Adding'), |
| 'A/D/H/bra[ket' : Item(verb='Adding'), |
| 'A/D/H/bra{e' : Item(verb='Adding'), |
| 'A/D/H/' + angle_name : Item(verb='Adding'), |
| 'A/D/pare)(theses' : Item(verb='Adding'), |
| '#hash#/percen%' : Item(verb='Adding'), |
| 'A/' + nasty_name : Item(verb='Adding'), |
| }) |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| |
| # Items in our add list will be at rev 2 |
| for item in expected_output.desc.keys(): |
| expected_status.add({ item : Item(wc_rev=2, status=' ') }) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_deleted_edited(sbox): |
| "commit deleted yet edited files" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Make some convenient paths. |
| iota_path = os.path.join(wc_dir, 'iota') |
| mu_path = os.path.join(wc_dir, 'A', 'mu') |
| |
| # Edit the files. |
| svntest.main.file_append(iota_path, "This file has been edited.") |
| svntest.main.file_append(mu_path, "This file has been edited.") |
| |
| # Schedule the files for removal. |
| svntest.main.run_svn(None, 'remove', '--force', iota_path) |
| svntest.main.run_svn(None, 'remove', '--force', mu_path) |
| |
| # Make our output list |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Deleting'), |
| 'A/mu' : Item(verb='Deleting'), |
| }) |
| |
| # Items in the status list are all at rev 1, except the two things |
| # we changed...but then, they don't exist at all. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('iota', 'A/mu') |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_in_dir_scheduled_for_addition(sbox): |
| "commit a file inside dir scheduled for addition" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| A_path = os.path.join(wc_dir, 'A') |
| Z_path = os.path.join(wc_dir, 'Z') |
| mu_path = os.path.join(wc_dir, 'Z', 'mu') |
| |
| svntest.main.run_svn(None, 'move', A_path, Z_path) |
| |
| # Commit a copied thing inside an added-with-history directory, |
| # expecting a specific error to occur! |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| "unversioned", |
| None, None, |
| None, None, |
| mu_path) |
| |
| Q_path = os.path.join(wc_dir, 'Q') |
| bloo_path = os.path.join(Q_path, 'bloo') |
| |
| os.mkdir(Q_path) |
| svntest.main.file_append(bloo_path, "New contents.") |
| svntest.main.run_svn(None, 'add', Q_path) |
| |
| # Commit a regular added thing inside an added directory, |
| # expecting a specific error to occur! |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| "not under version control", |
| None, None, |
| None, None, |
| bloo_path) |
| |
| #---------------------------------------------------------------------- |
| |
| # Does this make sense now that deleted files are always removed from the wc? |
| def commit_rmd_and_deleted_file(sbox): |
| "commit deleted (and missing) file" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| mu_path = os.path.join(wc_dir, 'A', 'mu') |
| |
| # 'svn remove' mu |
| svntest.main.run_svn(None, 'rm', mu_path) |
| |
| # Commit, hoping to see no errors |
| svntest.actions.run_and_verify_svn("Output on stderr where none expected", |
| svntest.verify.AnyOutput, [], |
| 'commit', '-m', 'logmsg', mu_path) |
| |
| #---------------------------------------------------------------------- |
| |
| # Issue #644 which failed over ra_neon. |
| def commit_add_file_twice(sbox): |
| "issue 644 attempt to add a file twice" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Create a file |
| gloo_path = os.path.join(wc_dir, 'A', 'D', 'H', 'gloo') |
| svntest.main.file_append(gloo_path, "hello") |
| svntest.main.run_svn(None, 'add', gloo_path) |
| |
| # Create expected output tree. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/gloo' : Item(verb='Adding'), |
| }) |
| |
| # Created expected status tree. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.add({ |
| 'A/D/H/gloo' : Item(status=' ', wc_rev=2), |
| }) |
| |
| # Commit should succeed |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| wc_dir) |
| |
| # Update to state before commit |
| svntest.main.run_svn(None, 'up', '-r', '1', wc_dir) |
| |
| # Create the file again |
| svntest.main.file_append(gloo_path, "hello") |
| svntest.main.run_svn(None, 'add', gloo_path) |
| |
| # Commit and *expect* a failure: |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| "already exists", |
| None, None, |
| None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| # There was a problem that committing from a directory that had a |
| # longer name than the working copy directory caused the commit notify |
| # messages to display truncated/random filenames. |
| |
| def commit_from_long_dir(sbox): |
| "commit from a dir with a longer name than the wc" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| was_dir = os.getcwd() |
| abs_wc_dir = os.path.realpath(os.path.join(was_dir, wc_dir)) |
| |
| # something to commit |
| svntest.main.file_append(os.path.join(wc_dir, 'iota'), "modified iota") |
| |
| # Create expected output tree. |
| expected_output = svntest.wc.State('', { |
| 'iota' : Item(verb='Sending'), |
| }) |
| |
| # Any length name was enough to provoke the original bug, but |
| # keeping its length less than that of the filename 'iota' avoided |
| # random behaviour, but still caused the test to fail |
| extra_name = 'xx' |
| |
| os.chdir(wc_dir) |
| os.mkdir(extra_name) |
| os.chdir(extra_name) |
| |
| svntest.actions.run_and_verify_commit(abs_wc_dir, |
| expected_output, |
| None, |
| None, |
| None, None, |
| None, None, |
| abs_wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| def commit_with_lock(sbox): |
| "try to commit when directory is locked" |
| |
| sbox.build() |
| # modify gamma and lock its directory |
| wc_dir = sbox.wc_dir |
| |
| D_path = os.path.join(wc_dir, 'A', 'D') |
| gamma_path = os.path.join(D_path, 'gamma') |
| svntest.main.file_append(gamma_path, "modified gamma") |
| svntest.actions.lock_admin_dir(D_path) |
| |
| # this commit should fail |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, |
| None, |
| 'svn: Working copy \'.*\' locked', |
| None, None, |
| None, None, |
| wc_dir) |
| |
| # unlock directory |
| svntest.actions.run_and_verify_svn("Output on stderr where none expected", |
| [], [], |
| 'cleanup', D_path) |
| |
| # this commit should succeed |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/gamma' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/gamma', wc_rev=2) |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| wc_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| # Explicitly commit the current directory. This did at one point fail |
| # in post-commit processing due to a path canonicalization problem. |
| |
| def commit_current_dir(sbox): |
| "commit the current directory" |
| |
| sbox.build() |
| |
| wc_dir = sbox.wc_dir |
| svntest.main.run_svn(None, 'propset', 'pname', 'pval', wc_dir) |
| |
| was_cwd = os.getcwd() |
| |
| os.chdir(wc_dir) |
| |
| expected_output = svntest.wc.State('.', { |
| '.' : Item(verb='Sending'), |
| }) |
| svntest.actions.run_and_verify_commit('.', |
| expected_output, |
| None, |
| None, |
| None, None, |
| None, None, |
| '.') |
| os.chdir(was_cwd) |
| |
| # I can't get the status check to work as part of run_and_verify_commit. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('', wc_rev=2, status=' ') |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| |
| #---------------------------------------------------------------------- |
| |
| # Check that the pending txn gets removed from the repository after |
| # a failed commit. |
| |
| def failed_commit(sbox): |
| "commit with conflicts and check txn in repo" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Make the other working copy |
| other_wc_dir = sbox.add_wc_path('other') |
| svntest.actions.duplicate_dir(wc_dir, other_wc_dir) |
| |
| # Make different changes in the two working copies |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "More stuff in iota") |
| |
| other_iota_path = os.path.join(other_wc_dir, "iota") |
| svntest.main.file_append(other_iota_path, "More different stuff in iota") |
| |
| # Commit both working copies. The second commit should fail. |
| svntest.actions.run_and_verify_svn("Output on stderr where none expected", |
| svntest.verify.AnyOutput, [], |
| 'commit', '-m', 'log', wc_dir) |
| |
| svntest.actions.run_and_verify_svn("Output on stderr expected", |
| None, svntest.verify.AnyOutput, |
| 'commit', '-m', 'log', other_wc_dir) |
| |
| # Now list the txns in the repo. The list should be empty. |
| output, errput = svntest.main.run_svnadmin('lstxns', sbox.repo_dir) |
| svntest.verify.compare_and_display_lines( |
| "Error running 'svnadmin lstxns'.", |
| 'STDERR', [], errput) |
| svntest.verify.compare_and_display_lines( |
| "Output of 'svnadmin lstxns' is unexpected.", |
| 'STDOUT', [], output) |
| |
| #---------------------------------------------------------------------- |
| |
| # Commit from multiple working copies is not yet supported. At |
| # present an error is generated and none of the working copies change. |
| # Related to issue 959, this test here doesn't use svn:externals but the |
| # behaviour needs to be considered. |
| |
| def commit_multiple_wc(sbox): |
| "attempted commit from multiple wc fails" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Checkout a second working copy |
| wc2_dir = os.path.join(wc_dir, 'A', 'wc2') |
| url = sbox.repo_url |
| svntest.actions.run_and_verify_svn("Output on stderr where none expected", |
| svntest.verify.AnyOutput, [], |
| 'checkout', |
| url, wc2_dir) |
| |
| # Modify both working copies |
| mu_path = os.path.join(wc_dir, 'A', 'mu') |
| svntest.main.file_append(mu_path, 'appended mu text') |
| lambda2_path = os.path.join(wc2_dir, 'A', 'B', 'lambda') |
| svntest.main.file_append(lambda2_path, 'appended lambda2 text') |
| |
| # Verify modified status |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/mu', status='M ') |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| expected_status2 = svntest.actions.get_virginal_state(wc2_dir, 1) |
| expected_status2.tweak('A/B/lambda', status='M ') |
| svntest.actions.run_and_verify_status(wc2_dir, expected_status2) |
| |
| # Commit should fail, even though one target is a "child" of the other. |
| svntest.actions.run_and_verify_svn("Unexpectedly not locked", |
| None, svntest.verify.AnyOutput, |
| 'commit', '-m', 'log', |
| wc_dir, wc2_dir) |
| |
| # Verify status unchanged |
| svntest.actions.run_and_verify_status(wc_dir, expected_status) |
| svntest.actions.run_and_verify_status(wc2_dir, expected_status2) |
| |
| |
| def commit_nonrecursive(sbox): |
| "commit named targets with -N (issues #1195, #1239)" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| ### Note: the original recipes used 'add -N'. These days, we use |
| ### --depth={empty,files}, and both the code and the comments below |
| ### have been adjusted to reflect this. |
| |
| ##################################################### |
| ### Issue #1195: |
| ### |
| ### 1. Create these directories and files: |
| ### |
| ### file1 |
| ### dir1 |
| ### dir1/file2 |
| ### dir1/file3 |
| ### dir1/dir2 |
| ### dir1/dir2/file4 |
| ### |
| ### 2. run 'svn add --depth=empty <all of the above>' |
| ### |
| ### 3. run 'svn ci -N <all of the above>' |
| ### |
| ### (The bug was that only 4 entities would get committed, when it |
| ### should be 6: dir2/ and file4 were left out.) |
| |
| # These paths are relative to the top of the test's working copy. |
| file1_path = 'file1' |
| dir1_path = 'dir1' |
| file2_path = os.path.join('dir1', 'file2') |
| file3_path = os.path.join('dir1', 'file3') |
| dir2_path = os.path.join('dir1', 'dir2') |
| file4_path = os.path.join('dir1', 'dir2', 'file4') |
| |
| # Create the new files and directories. |
| svntest.main.file_append(os.path.join(wc_dir, file1_path), 'this is file1') |
| os.mkdir(os.path.join(wc_dir, dir1_path)) |
| svntest.main.file_append(os.path.join(wc_dir, file2_path), 'this is file2') |
| svntest.main.file_append(os.path.join(wc_dir, file3_path), 'this is file3') |
| os.mkdir(os.path.join(wc_dir, dir2_path)) |
| svntest.main.file_append(os.path.join(wc_dir, file4_path), 'this is file4') |
| |
| # Add them to version control. |
| svntest.actions.run_and_verify_svn(None, svntest.verify.AnyOutput, [], |
| 'add', '--depth=empty', |
| os.path.join(wc_dir, file1_path), |
| os.path.join(wc_dir, dir1_path), |
| os.path.join(wc_dir, file2_path), |
| os.path.join(wc_dir, file3_path), |
| os.path.join(wc_dir, dir2_path), |
| os.path.join(wc_dir, file4_path)) |
| |
| # Commit. We should see all 6 items (2 dirs, 4 files) get sent. |
| expected_output = svntest.wc.State( |
| wc_dir, |
| { file1_path : Item(verb='Adding'), |
| dir1_path : Item(verb='Adding'), |
| file2_path : Item(verb='Adding'), |
| file3_path : Item(verb='Adding'), |
| dir2_path : Item(verb='Adding'), |
| file4_path : Item(verb='Adding'), |
| } |
| ) |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.add({ |
| file1_path : Item(status=' ', wc_rev=2), |
| dir1_path : Item(status=' ', wc_rev=2), |
| file2_path : Item(status=' ', wc_rev=2), |
| file3_path : Item(status=' ', wc_rev=2), |
| dir2_path : Item(status=' ', wc_rev=2), |
| file4_path : Item(status=' ', wc_rev=2), |
| }) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| '-N', |
| os.path.join(wc_dir, file1_path), |
| os.path.join(wc_dir, dir1_path), |
| os.path.join(wc_dir, file2_path), |
| os.path.join(wc_dir, file3_path), |
| os.path.join(wc_dir, dir2_path), |
| os.path.join(wc_dir, file4_path)) |
| |
| ####################################################################### |
| ### |
| ### There's some complex history here; please bear with me. |
| ### |
| ### First there was issue #1239, which had the following recipe: |
| ### |
| ### 1. Create these directories and files: |
| ### |
| ### dirA |
| ### dirA/fileA |
| ### dirA/fileB |
| ### dirA/dirB |
| ### dirA/dirB/fileC |
| ### dirA/dirB/nocommit |
| ### |
| ### 2. run 'svn add --depth=empty <all of the above>' |
| ### |
| ### 3. run 'svn ci -N <all but nocommit>' |
| ### |
| ### (In this recipe, 'add -N' has been changed to 'add --depth...', |
| ### but 'ci -N' has been left as-is, for reasons explained below.) |
| ### |
| ### Issue #1239 claimed a two-part bug: that step 3 would try to |
| ### commit the file `nocommit' when it shouldn't, and that it would |
| ### get an error anyway: |
| ### |
| ### Adding wc/dirA |
| ### Adding wc/dirA/fileA |
| ### Adding wc/dirA/fileB |
| ### Adding wc/dirA/dirB |
| ### Adding wc/dirA/dirB/nocommit |
| ### Adding wc/dirA/dirB/fileC |
| ### Transmitting file data ....svn: A problem occurred; \ |
| ### see later errors for details |
| ### svn: Commit succeeded, but other errors follow: |
| ### svn: Problem running log |
| ### svn: Error bumping revisions post-commit (details follow): |
| ### svn: in directory |
| ### 'F:/Programmation/Projets/subversion/svnant/test/wc/dirA' |
| ### svn: start_handler: error processing command 'committed' in |
| ### 'F:/Programmation/Projets/subversion/svnant/test/wc/dirA' |
| ### svn: Working copy not locked |
| ### svn: directory not locked |
| ### (F:/Programmation/Projets/subversion/svnant/test/wc) |
| ### |
| ### However, this was all in the days before --depth, and depended |
| ### on an idiosyncratic interpretation of -N, one which required |
| ### commit to behave differently from other commands taking -N. |
| ### |
| ### These days, -N should be equivalent to --depth=files in almost |
| ### all cases. There are some exceptions (e.g., status), but commit |
| ### is not an exception. Thus, the above recipe is now incorrect, |
| ### because "wc/dirA/dirB" was given as an explicit target, and |
| ### therefore the file "wc/dirA/dirB/nocommit" *should* have been |
| ### committed after all, since it's a file child of a named target |
| ### and -N means --depth=files. |
| ### |
| ### So we really need two tests: one for commit -N (--depth=files), |
| ### and another for --depth=empty. I've changed this test to cover |
| ### the -N case, and added 'commit_propmods_with_depth_empty' to |
| ### depth_tests.py to cover the --depth=empty case. |
| |
| # Now add these directories and files, except the last: |
| dirA_path = 'dirA' |
| fileA_path = os.path.join('dirA', 'fileA') |
| fileB_path = os.path.join('dirA', 'fileB') |
| dirB_path = os.path.join('dirA', 'dirB') |
| nope_1_path = os.path.join(dirB_path, 'nope_1') |
| nope_2_path = os.path.join(dirB_path, 'nope_2') |
| |
| # Create the new files and directories. |
| os.mkdir(os.path.join(wc_dir, dirA_path)) |
| svntest.main.file_append(os.path.join(wc_dir, fileA_path), 'fileA') |
| svntest.main.file_append(os.path.join(wc_dir, fileB_path), 'fileB') |
| os.mkdir(os.path.join(wc_dir, dirB_path)) |
| svntest.main.file_append(os.path.join(wc_dir, nope_1_path), 'nope_1') |
| svntest.main.file_append(os.path.join(wc_dir, nope_2_path), 'nope_2') |
| |
| # Add them to version control. |
| svntest.actions.run_and_verify_svn(None, svntest.verify.AnyOutput, [], |
| 'add', '--depth=empty', |
| os.path.join(wc_dir, dirA_path), |
| os.path.join(wc_dir, fileA_path), |
| os.path.join(wc_dir, fileB_path), |
| os.path.join(wc_dir, dirB_path), |
| os.path.join(wc_dir, nope_1_path), |
| os.path.join(wc_dir, nope_2_path)) |
| |
| expected_output = svntest.wc.State( |
| wc_dir, |
| { dirA_path : Item(verb='Adding'), |
| fileA_path : Item(verb='Adding'), |
| fileB_path : Item(verb='Adding'), |
| } |
| ) |
| |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| |
| # Expect the leftovers from the first part of the test. |
| expected_status.add({ |
| file1_path : Item(status=' ', wc_rev=2), |
| dir1_path : Item(status=' ', wc_rev=2), |
| file2_path : Item(status=' ', wc_rev=2), |
| file3_path : Item(status=' ', wc_rev=2), |
| dir2_path : Item(status=' ', wc_rev=2), |
| file4_path : Item(status=' ', wc_rev=2), |
| }) |
| |
| # Expect some commits and some non-commits from this part of the test. |
| expected_status.add({ |
| dirA_path : Item(status=' ', wc_rev=3), |
| fileA_path : Item(status=' ', wc_rev=3), |
| fileB_path : Item(status=' ', wc_rev=3), |
| dirB_path : Item(status='A ', wc_rev=0), |
| nope_1_path : Item(status='A ', wc_rev=0), |
| nope_2_path : Item(status='A ', wc_rev=0) |
| }) |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| '-N', os.path.join(wc_dir, dirA_path)) |
| |
| #---------------------------------------------------------------------- |
| # Regression for #1017: ra_neon was allowing the deletion of out-of-date |
| # files or dirs, which majorly violates Subversion's semantics. |
| |
| |
| def commit_out_of_date_deletions(sbox): |
| "commit deletion of out-of-date file or dir" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Make a backup copy of the working copy |
| wc_backup = sbox.add_wc_path('backup') |
| svntest.actions.duplicate_dir(wc_dir, wc_backup) |
| |
| # Change omega's text, and make a propchange to A/C directory |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| C_path = os.path.join(wc_dir, 'A', 'C') |
| svntest.main.file_append(omega_path, 'appended omega text') |
| svntest.main.run_svn(None, 'propset', 'fooprop', 'foopropval', C_path) |
| |
| # Commit revision 2. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/omega' : Item(verb='Sending'), |
| 'A/C' : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('A/D/H/omega', 'A/C', wc_rev=2, status=' ') |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| wc_dir) |
| |
| # Now, in the second working copy, schedule both omega and C for deletion. |
| omega_path = os.path.join(wc_backup, 'A', 'D', 'H', 'omega') |
| C_path = os.path.join(wc_backup, 'A', 'C') |
| svntest.main.run_svn(None, 'rm', omega_path, C_path) |
| |
| # Attempt to delete omega. This should return an (expected) |
| # out-of-dateness error. |
| outlines, errlines = svntest.main.run_svn(1, 'commit', '-m', 'blah', |
| omega_path) |
| for line in errlines: |
| if re.match(".*[Oo]ut.of.date.*", line): |
| break |
| else: |
| raise svntest.Failure |
| |
| # Attempt to delete directory C. This should return an (expected) |
| # out-of-dateness error. |
| outlines, errlines = svntest.main.run_svn(1, 'commit', '-m', 'blah', C_path) |
| for line in errlines: |
| if re.match(".*[Oo]ut.of.date.*", line): |
| break |
| else: |
| raise svntest.Failure |
| |
| def commit_with_bad_log_message(sbox): |
| "commit with a log message containing bad data" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| iota_path = os.path.join(wc_dir, 'iota') |
| log_msg_path = os.path.join(wc_dir, 'log-message') |
| |
| # Make a random change, so there's something to commit. |
| svntest.main.file_append(iota_path, 'fish') |
| |
| # Create a log message containing a zero-byte. |
| svntest.main.file_append(log_msg_path, '\x00') |
| |
| # Commit and expect an error. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| None, None, |
| "contains a zero byte", |
| None, None, |
| None, None, |
| '-F', log_msg_path, |
| iota_path) |
| |
| def from_wc_top_with_bad_editor(sbox): |
| "commit with invalid external editor cmd" |
| |
| # Shortly after revision 5407, Vladimir Prus posted this bug recipe: |
| # |
| # #!/bin/bash |
| # cd /tmp |
| # rm -rf repo wc |
| # svnadmin create repo |
| # svn mkdir file:///tmp/repo/foo -m "" |
| # svn co file:///tmp/repo/foo wc |
| # cd wc |
| # svn ps svn:externals "lib http://something.org/lib" . |
| # svn ci |
| # |
| # The final 'svn ci' would seg fault because of a problem in |
| # calculating the paths to insert in the initial log message that |
| # gets passed to the editor. |
| # |
| # So this regression test is primarily about making sure the seg |
| # fault is gone, and only secondarily about testing that we get the |
| # expected error from passing a bad editor cmd to Subversion. |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| svntest.actions.run_and_verify_svn("Unexpected failure from propset.", |
| svntest.verify.AnyOutput, [], |
| 'pset', 'fish', 'food', wc_dir) |
| os.chdir(wc_dir) |
| out, err = svntest.actions.run_and_verify_svn( |
| "Commit succeeded when should have failed.", |
| None, svntest.verify.AnyOutput, |
| 'ci', '--editor-cmd', 'no_such-editor') |
| |
| err = string.join(map(string.strip, err), ' ') |
| if not (re.match(".*no_such-editor.*", err) |
| and re.match(".*Commit failed.*", err)): |
| print "Commit failed, but not in the way expected." |
| raise svntest.Failure |
| |
| |
| def mods_in_schedule_delete(sbox): |
| "commit with mods in schedule delete" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Schedule a delete, then put in local mods |
| C_path = os.path.join(wc_dir, 'A', 'C') |
| svntest.actions.run_and_verify_svn(None, svntest.verify.AnyOutput, [], |
| 'rm', C_path) |
| foo_path = os.path.join(C_path, 'foo') |
| foo_contents = 'zig\nzag\n' |
| svntest.main.file_append(foo_path, foo_contents) |
| |
| # Commit should succeed |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.remove('A/C') |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/C' : Item(verb='Deleting'), |
| }) |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, expected_status, |
| None, None, None, None, None, wc_dir) |
| |
| # Unversioned file still exists |
| actual_contents = svntest.main.file_read(foo_path) |
| if actual_contents != foo_contents: |
| raise svntest.Failure |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def tab_test(sbox): |
| "tabs in paths" |
| # For issue #1954. |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| tab_file = os.path.join(wc_dir, 'A', "tab\tfile") |
| tab_dir = os.path.join(wc_dir, 'A', "tab\tdir") |
| source_url = sbox.repo_url + "/source_dir" |
| tab_url = sbox.repo_url + "/tab%09dir" |
| |
| svntest.main.file_append(tab_file, "This file has a tab in it.") |
| os.mkdir(tab_dir) |
| |
| def match_bad_tab_path(path, errlines): |
| match_re = ".*: Invalid control character '0x09' in path .*" |
| for line in errlines: |
| if re.match (match_re, line): |
| break |
| else: |
| raise svntest.Failure("Failed to find match_re in " + str(errlines)) |
| |
| # add file to wc |
| outlines, errlines = svntest.main.run_svn(1, 'add', tab_file) |
| match_bad_tab_path(tab_file, errlines) |
| |
| # add dir to wc |
| outlines, errlines = svntest.main.run_svn(1, 'add', tab_dir) |
| match_bad_tab_path(tab_dir, errlines) |
| |
| # mkdir URL |
| outlines, errlines = svntest.main.run_svn(1, |
| 'mkdir', '-m', 'msg', tab_url) |
| match_bad_tab_path(tab_dir, errlines) |
| |
| # copy URL |
| svntest.main.run_svn(1, |
| 'mkdir', '-m', 'msg', source_url) |
| outlines, errlines = svntest.main.run_svn(1, |
| 'copy', '-m', 'msg', |
| source_url, tab_url) |
| match_bad_tab_path(tab_dir, errlines) |
| |
| # mv URL |
| outlines, errlines = svntest.main.run_svn(1, 'mv', '-m', 'msg', |
| source_url, tab_url) |
| match_bad_tab_path(tab_dir, errlines) |
| |
| #---------------------------------------------------------------------- |
| |
| def local_mods_are_not_commits(sbox): |
| "local ops should not be treated like commits" |
| |
| # For issue #2285. |
| # |
| # Some commands can run on either a URL or a local path. These |
| # commands take a log message, intended for the URL case. |
| # Therefore, they should make sure that getting a log message for |
| # a local operation errors (because not committing). |
| # |
| # This is in commit_tests.py because the unifying theme is that |
| # commits are *not* happening. And because there was no better |
| # place to put it :-). |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| expected_error = '.*Local, non-commit operations do not take a log message.*' |
| |
| # copy wc->wc |
| svntest.actions.run_and_verify_svn(None, None, expected_error, |
| 'cp', '-m', 'log msg', |
| os.path.join(wc_dir, 'iota'), |
| os.path.join(wc_dir, 'iota2')) |
| |
| # copy repos->wc |
| svntest.actions.run_and_verify_svn(None, None, expected_error, |
| 'cp', '-m', 'log msg', |
| sbox.repo_url + "/iota", |
| os.path.join(wc_dir, 'iota2')) |
| |
| # delete |
| svntest.actions.run_and_verify_svn(None, None, expected_error, |
| 'rm', '-m', 'log msg', |
| os.path.join(wc_dir, 'A', 'D', 'gamma')) |
| |
| # mkdir |
| svntest.actions.run_and_verify_svn(None, None, expected_error, |
| 'mkdir', '-m', 'log msg', |
| os.path.join(wc_dir, 'newdir')) |
| |
| # rename |
| svntest.actions.run_and_verify_svn(None, None, expected_error, |
| 'cp', '-m', 'log msg', |
| os.path.join(wc_dir, 'A', 'mu'), |
| os.path.join(wc_dir, 'A', 'yu')) |
| |
| # Helper for hook tests: returns the "hook failed" line, with precise |
| # wording that changed with Subversion 1.5. |
| def hook_failure_message(hookname): |
| if svntest.main.server_minor_version < 5: |
| return "'%s' hook failed with error output:\n" % hookname |
| else: |
| return "'%s' hook failed (exited with a " \ |
| "non-zero exitcode of 1). The following error output " \ |
| "was produced by the hook:\n" % hookname |
| |
| |
| #---------------------------------------------------------------------- |
| # Test if the post-commit error message is returned back to the svn |
| # client and is displayed as a warning. |
| # |
| def post_commit_hook_test(sbox): |
| "post commit hook failure case testing" |
| |
| sbox.build() |
| |
| # Get paths to the working copy and repository |
| wc_dir = sbox.wc_dir |
| repo_dir = sbox.repo_dir |
| |
| # Disable commits |
| svntest.actions.create_failing_post_commit_hook(repo_dir) |
| |
| # Modify iota just so there is something to commit. |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "lakalakalakalaka") |
| |
| # Now, commit and examine the output (we happen to know that the |
| # filesystem will report an absolute path because that's the way the |
| # filesystem is created by this test suite. |
| expected_output = [ "Sending "+ iota_path + "\n", |
| "Transmitting file data .\n", |
| "Committed revision 2.\n", |
| "\n", |
| "Warning: " + hook_failure_message('post-commit'), |
| "Post-commit hook failed\n", |
| ] |
| |
| svntest.actions.run_and_verify_svn(None, expected_output, [], |
| 'ci', '-m', 'log msg', iota_path) |
| |
| #---------------------------------------------------------------------- |
| # Commit two targets non-recursively, but both targets should be the |
| # same folder (in multiple variations). Test that svn handles this correctly. |
| def commit_same_folder_in_targets(sbox): |
| "commit two targets, both the same folder" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| iota_path = os.path.join(wc_dir, 'iota') |
| |
| svntest.main.file_append(iota_path, "added extra line to file iota") |
| |
| # Create expected output tree. |
| expected_output = svntest.wc.State(wc_dir, { |
| 'iota' : Item(verb='Sending'), |
| }) |
| |
| # Created expected status tree. |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak('iota', wc_rev=2) |
| |
| # Commit the wc_dir and iota. |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, |
| None, None, |
| None, None, |
| '-N', |
| wc_dir, |
| iota_path) |
| |
| #---------------------------------------------------------------------- |
| # test for issue 2459: verify that commit fails when a file with mixed |
| # eol-styles is included, and show an error message which includes the |
| # filename. |
| def commit_inconsistent_eol(sbox): |
| "commit files with inconsistent eol should fail" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| iota_path = os.path.join(wc_dir, 'iota') |
| mu_path = os.path.join(wc_dir, 'A', 'mu') |
| |
| svntest.main.run_svn(None, 'propset', 'svn:eol-style', 'native', iota_path) |
| svntest.main.file_append_binary(iota_path, |
| "added extra line to file iota\012" |
| "added extra line to file iota\015") |
| svntest.main.file_append(mu_path, "added extra line to file mu\n" |
| "added extra line to file mu\n") |
| |
| expected_err = ".*iota.*" |
| |
| svntest.actions.run_and_verify_svn(None, None, expected_err, |
| 'commit', '-m', 'log message', |
| wc_dir) |
| |
| |
| def mkdir_with_revprop(sbox): |
| "set revision props during remote mkdir" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| '--with-revprop', 'bug=42', remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '42', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def delete_with_revprop(sbox): |
| "set revision props during remote delete" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| remote_dir) |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'delete', '-m', 'msg', |
| '--with-revprop', 'bug=52', remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 3:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 3, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '52', [], 'propget', 'bug', |
| '--revprop', '-r', 3, sbox.repo_url) |
| |
| |
| def commit_with_revprop(sbox): |
| "set revision props during commit" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| omega_path = os.path.join(wc_dir, 'A', 'D', 'H', 'omega') |
| gloo_path = os.path.join(wc_dir, 'A', 'D', 'H', 'gloo') |
| expected_output = svntest.wc.State(wc_dir, { |
| 'A/D/H/omega' : Item(verb='Sending'), |
| 'A/D/H/gloo' : Item(verb='Adding'), |
| }) |
| |
| expected_status.tweak('A/D/H/omega', wc_rev=2, status=' ') |
| expected_status.tweak('A/D/H/gloo', wc_rev=2, status=' ') |
| |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| '-m', 'msg', |
| '--with-revprop', 'bug=62', |
| omega_path, gloo_path) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '62', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def import_with_revprop(sbox): |
| "set revision props during import" |
| |
| sbox.build() |
| local_dir = os.path.join(sbox.wc_dir, 'folder') |
| local_file = os.path.join(sbox.wc_dir, 'folder', 'file') |
| os.mkdir(local_dir) |
| svntest.main.file_write(local_file, "xxxx") |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'import', '-m', 'msg', |
| '--with-revprop', 'bug=72', local_dir, |
| sbox.repo_url) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '72', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def copy_R2R_with_revprop(sbox): |
| "set revision props during repos-to-repos copy" |
| |
| sbox.build() |
| remote_dir1 = sbox.repo_url + "/dir1" |
| remote_dir2 = sbox.repo_url + "/dir2" |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| remote_dir1) |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'copy', '-m', 'msg', |
| '--with-revprop', 'bug=82', remote_dir1, |
| remote_dir2) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 3:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 3, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '82', [], 'propget', 'bug', |
| '--revprop', '-r', 3, sbox.repo_url) |
| |
| |
| def copy_WC2R_with_revprop(sbox): |
| "set revision props during wc-to-repos copy" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| local_dir = os.path.join(sbox.wc_dir, 'folder') |
| svntest.actions.run_and_verify_svn(None, None, [], |
| 'mkdir', local_dir) |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'copy', '-m', 'msg', |
| '--with-revprop', 'bug=92', local_dir, |
| remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '92', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def move_R2R_with_revprop(sbox): |
| "set revision props during repos-to-repos move" |
| |
| sbox.build() |
| remote_dir1 = sbox.repo_url + "/dir1" |
| remote_dir2 = sbox.repo_url + "/dir2" |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| remote_dir1) |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'move', '-m', 'msg', |
| '--with-revprop', 'bug=102', remote_dir1, |
| remote_dir2) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 3:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 3, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '102', [], 'propget', 'bug', |
| '--revprop', '-r', 3, sbox.repo_url) |
| |
| |
| def propedit_with_revprop(sbox): |
| "set revision props during remote property edit" |
| |
| sbox.build() |
| svntest.main.use_editor('append_foo') |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'propedit', '-m', 'msg', |
| '--with-revprop', 'bug=112', 'prop', |
| sbox.repo_url) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '112', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def set_multiple_props_with_revprop(sbox): |
| "set multiple revision props during remote mkdir" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| '--with-revprop', 'bug=32', |
| '--with-revprop', 'ref=22', remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n', ' ref\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '32', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '22', [], 'propget', 'ref', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def use_empty_value_in_revprop_pair(sbox): |
| "set revprop without value ('') during remote mkdir" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| '--with-revprop', 'bug=', |
| '--with-revprop', 'ref=', remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n', ' ref\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '', [], 'propget', 'ref', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def no_equals_in_revprop_pair(sbox): |
| "set revprop without '=' during remote mkdir" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| svntest.actions.run_and_verify_svn(None, None, [], 'mkdir', '-m', 'msg', |
| '--with-revprop', 'bug', |
| '--with-revprop', 'ref', remote_dir) |
| |
| expected = svntest.verify.UnorderedOutput( |
| ['Unversioned properties on revision 2:\n', |
| ' svn:author\n',' svn:date\n', ' svn:log\n', |
| ' bug\n', ' ref\n']) |
| svntest.actions.run_and_verify_svn(None, expected, [], 'proplist', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '', [], 'propget', 'bug', |
| '--revprop', '-r', 2, sbox.repo_url) |
| svntest.actions.run_and_verify_svn(None, '', [], 'propget', 'ref', |
| '--revprop', '-r', 2, sbox.repo_url) |
| |
| |
| def set_invalid_revprops(sbox): |
| "set invalid revision props during remote mkdir" |
| |
| sbox.build() |
| remote_dir = sbox.repo_url + "/dir" |
| # Try to set svn: revprops. |
| expected = '.*Standard properties can\'t.*' |
| svntest.actions.run_and_verify_svn(None, [], expected, 'mkdir', '-m', 'msg', |
| '--with-revprop', 'svn:author=42', remote_dir) |
| svntest.actions.run_and_verify_svn(None, [], expected, 'mkdir', '-m', 'msg', |
| '--with-revprop', 'svn:log=42', remote_dir) |
| svntest.actions.run_and_verify_svn(None, [], expected, 'mkdir', '-m', 'msg', |
| '--with-revprop', 'svn:date=42', remote_dir) |
| svntest.actions.run_and_verify_svn(None, [], expected, 'mkdir', '-m', 'msg', |
| '--with-revprop', 'svn:foo=bar', remote_dir) |
| |
| # Empty revprop pair. |
| svntest.actions.run_and_verify_svn(None, [], |
| 'svn: Revision property pair is empty', |
| 'mkdir', '-m', 'msg', |
| '--with-revprop', '', |
| remote_dir) |
| |
| #---------------------------------------------------------------------- |
| |
| def start_commit_hook_test(sbox): |
| "start-commit hook failure case testing" |
| |
| sbox.build() |
| |
| # Get paths to the working copy and repository |
| wc_dir = sbox.wc_dir |
| repo_dir = sbox.repo_dir |
| |
| # Create a hook that outputs a message to stderr and returns exit code 1 |
| hook_code = """import sys |
| sys.stderr.write("Start-commit hook failed") |
| sys.exit(1)""" |
| |
| # Setup the hook configs to log data to a file |
| start_commit_hook = svntest.main.get_start_commit_hook_path(repo_dir) |
| svntest.main.create_python_hook_script(start_commit_hook, hook_code) |
| |
| # Modify iota just so there is something to commit. |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "More stuff in iota") |
| |
| # Commit, expect error code 1 |
| actual_stdout, actual_stderr = svntest.main.run_svn(1, |
| 'ci', '--quiet', |
| '-m', 'log msg', wc_dir) |
| |
| # No stdout expected |
| svntest.verify.compare_and_display_lines('Start-commit hook test', |
| 'STDOUT', [], actual_stdout) |
| |
| # Compare only the last two lines of stderr since the preceding ones |
| # contain source code file and line numbers. |
| if len(actual_stderr) > 2: |
| actual_stderr = actual_stderr[-2:] |
| expected_stderr = [ "svn: " + hook_failure_message('start-commit'), |
| "Start-commit hook failed\n" |
| ] |
| svntest.verify.compare_and_display_lines('Start-commit hook test', |
| 'STDERR', |
| expected_stderr, actual_stderr) |
| |
| #---------------------------------------------------------------------- |
| |
| def pre_commit_hook_test(sbox): |
| "pre-commit hook failure case testing" |
| |
| sbox.build() |
| |
| # Get paths to the working copy and repository |
| wc_dir = sbox.wc_dir |
| repo_dir = sbox.repo_dir |
| |
| # Create a hook that outputs a message to stderr and returns exit code 1 |
| hook_code = """import sys |
| sys.stderr.write("Pre-commit hook failed") |
| sys.exit(1)""" |
| |
| # Setup the hook configs to log data to a file |
| pre_commit_hook = svntest.main.get_pre_commit_hook_path(repo_dir) |
| svntest.main.create_python_hook_script(pre_commit_hook, hook_code) |
| |
| # Modify iota just so there is something to commit. |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "More stuff in iota") |
| |
| # Commit, expect error code 1 |
| actual_stdout, actual_stderr = svntest.main.run_svn(1, |
| 'ci', '--quiet', |
| '-m', 'log msg', wc_dir) |
| |
| # No stdout expected |
| svntest.verify.compare_and_display_lines('Pre-commit hook test', |
| 'STDOUT', [], actual_stdout) |
| |
| # Compare only the last two lines of stderr since the preceding ones |
| # contain source code file and line numbers. |
| if len(actual_stderr) > 2: |
| actual_stderr = actual_stderr[-2:] |
| expected_stderr = [ "svn: " + hook_failure_message('pre-commit'), |
| "Pre-commit hook failed\n" |
| ] |
| svntest.verify.compare_and_display_lines('Pre-commit hook test', |
| 'STDERR', |
| expected_stderr, actual_stderr) |
| |
| #---------------------------------------------------------------------- |
| |
| def versioned_log_message(sbox): |
| "'svn commit -F foo' when foo is a versioned file" |
| |
| sbox.build() |
| |
| os.chdir(sbox.wc_dir) |
| |
| iota_path = os.path.join('iota') |
| mu_path = os.path.join('A', 'mu') |
| log_path = os.path.join('A', 'D', 'H', 'omega') |
| |
| svntest.main.file_append(iota_path, "2") |
| |
| # try to check in a change using a versioned file as your log entry. |
| svntest.actions.run_and_verify_svn(None, None, svntest.verify.AnyOutput, |
| 'ci', '-F', log_path) |
| |
| # force it. should not produce any errors. |
| svntest.actions.run_and_verify_svn(None, None, [], |
| 'ci', '-F', log_path, '--force-log') |
| |
| svntest.main.file_append(mu_path, "2") |
| |
| # try the same thing, but specifying the file to commit explicitly. |
| svntest.actions.run_and_verify_svn(None, None, svntest.verify.AnyOutput, |
| 'ci', '-F', log_path, mu_path) |
| |
| # force it... should succeed. |
| svntest.actions.run_and_verify_svn(None, None, [], |
| 'ci', |
| '-F', log_path, |
| '--force-log', mu_path) |
| |
| #---------------------------------------------------------------------- |
| |
| def changelist_near_conflict(sbox): |
| "'svn commit --changelist=foo' above a conflict" |
| |
| sbox.build() |
| |
| wc_dir = sbox.wc_dir |
| iota_path = os.path.join(wc_dir, "iota") |
| mu_path = os.path.join(wc_dir, "A", "mu") |
| gloo_path = os.path.join(wc_dir, "A", "D", "H", "gloo") |
| |
| expected_status = make_standard_slew_of_changes(wc_dir) |
| |
| # Create a changelist. |
| changelist_name = "logical-changeset" |
| svntest.actions.run_and_verify_svn(None, None, [], |
| "changelist", changelist_name, |
| mu_path, gloo_path) |
| |
| # Create a conflict (making r2 in the process). |
| inject_conflict_into_wc(sbox, 'iota', iota_path, |
| None, expected_status, 2) |
| |
| # Commit the changelist. |
| expected_output = svntest.wc.State(wc_dir, { |
| "A/D/H/gloo" : Item(verb='Adding'), |
| }) |
| expected_status.tweak("A/D/H/gloo", wc_rev=3, status=" ") |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| "--changelist=" + changelist_name, |
| "-m", "msg", wc_dir) |
| |
| |
| #---------------------------------------------------------------------- |
| |
| def no_such_changelist(sbox): |
| "'svn commit --changelist=not-found' should warn" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Attempt to commit a non-existent changelist. |
| expected_output = svntest.wc.State(wc_dir, {}) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| svntest.actions.run_and_verify_svn("Attempt to commit a changelist with no " |
| "relevant paths should warn", |
| None, ".*Unknown changelist 'not-found'", |
| "commit", "--changelist=not-found", |
| "-m", "msg", wc_dir) |
| |
| def commit_out_of_date_file(sbox): |
| "try to commit a file that is out-of-date" |
| |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| |
| # Make a backup copy of the working copy |
| wc_backup = sbox.add_wc_path('backup') |
| svntest.actions.duplicate_dir(wc_dir, wc_backup) |
| |
| pi_path = os.path.join(wc_dir, 'A', 'D', 'G', 'pi') |
| backup_pi_path = os.path.join(wc_backup, 'A', 'D', 'G', 'pi') |
| |
| svntest.main.file_append(pi_path, "new line\n") |
| expected_output = svntest.wc.State(wc_dir, { |
| "A/D/G/pi" : Item(verb='Sending'), |
| }) |
| expected_status = svntest.actions.get_virginal_state(wc_dir, 1) |
| expected_status.tweak("A/D/G/pi", wc_rev=2, status=" ") |
| svntest.actions.run_and_verify_commit(wc_dir, |
| expected_output, |
| expected_status, |
| None, None, None, None, None, |
| "-m", "log message", wc_dir) |
| |
| svntest.main.file_append(backup_pi_path, "hello") |
| expected_err = ".*(pi.*out of date|Out of date.*pi).*" |
| svntest.actions.run_and_verify_svn(None, None, expected_err, |
| 'commit', '-m', 'log message', |
| wc_backup) |
| |
| def start_commit_detect_capabilities(sbox): |
| "start-commit hook sees client capabilities" # Issue #2991 |
| sbox.build() |
| wc_dir = sbox.wc_dir |
| repos_dir = sbox.repo_dir |
| |
| # Create a start-commit hook that detects the "mergeinfo" capability. |
| hook_text = "import sys\n" + \ |
| "fp = open(sys.argv[1] + '/hooks.log', 'w')\n" + \ |
| "caps = sys.argv[3].split(',')\n" + \ |
| "if 'mergeinfo' in caps:\n" + \ |
| " fp.write('yes')\n" + \ |
| "else:\n" + \ |
| " fp.write('no')\n" + \ |
| "fp.close()\n" |
| |
| start_commit_hook = svntest.main.get_start_commit_hook_path(repos_dir) |
| svntest.main.create_python_hook_script(start_commit_hook, hook_text) |
| |
| # Commit something. |
| iota_path = os.path.join(wc_dir, "iota") |
| svntest.main.file_append(iota_path, "More stuff in iota") |
| svntest.actions.run_and_verify_svn(None, [], [], 'ci', '--quiet', |
| '-m', 'log msg', wc_dir) |
| |
| # Check that "mergeinfo" was detected. |
| log_path = os.path.join(repos_dir, "hooks.log") |
| if os.path.exists(log_path): |
| data = open(log_path).read() |
| os.unlink(log_path) |
| else: |
| raise svntest.actions.SVNUnexpectedOutput("'%s' not found") % log_path |
| if data != 'yes': |
| raise svntest.Failure |
| |
| |
| ######################################################################## |
| # Run the tests |
| |
| # list all tests here, starting with None: |
| test_list = [ None, |
| commit_one_file, |
| commit_one_new_file, |
| commit_one_new_binary_file, |
| commit_multiple_targets, |
| commit_multiple_targets_2, |
| commit_inclusive_dir, |
| commit_top_dir, |
| commit_unversioned_thing, |
| nested_dir_replacements, |
| hudson_part_1, |
| hudson_part_1_variation_1, |
| hudson_part_1_variation_2, |
| hudson_part_2, |
| hudson_part_2_1, |
| hook_test, |
| merge_mixed_revisions, |
| commit_uri_unsafe, |
| commit_deleted_edited, |
| commit_in_dir_scheduled_for_addition, |
| commit_rmd_and_deleted_file, |
| commit_add_file_twice, |
| commit_from_long_dir, |
| commit_with_lock, |
| commit_current_dir, |
| commit_multiple_wc, |
| commit_nonrecursive, |
| failed_commit, |
| commit_out_of_date_deletions, |
| commit_with_bad_log_message, |
| from_wc_top_with_bad_editor, |
| mods_in_schedule_delete, |
| Skip(tab_test, is_non_posix_os_or_cygwin_platform), |
| local_mods_are_not_commits, |
| post_commit_hook_test, |
| commit_same_folder_in_targets, |
| commit_inconsistent_eol, |
| SkipUnless(mkdir_with_revprop, server_has_revprop_commit), |
| SkipUnless(delete_with_revprop, server_has_revprop_commit), |
| SkipUnless(commit_with_revprop, server_has_revprop_commit), |
| SkipUnless(import_with_revprop, server_has_revprop_commit), |
| SkipUnless(copy_R2R_with_revprop, server_has_revprop_commit), |
| SkipUnless(copy_WC2R_with_revprop, server_has_revprop_commit), |
| SkipUnless(move_R2R_with_revprop, server_has_revprop_commit), |
| SkipUnless(propedit_with_revprop, server_has_revprop_commit), |
| SkipUnless(set_multiple_props_with_revprop, |
| server_has_revprop_commit), |
| SkipUnless(use_empty_value_in_revprop_pair, |
| server_has_revprop_commit), |
| SkipUnless(no_equals_in_revprop_pair, server_has_revprop_commit), |
| SkipUnless(set_invalid_revprops, server_has_revprop_commit), |
| start_commit_hook_test, |
| pre_commit_hook_test, |
| versioned_log_message, |
| changelist_near_conflict, |
| no_such_changelist, |
| commit_out_of_date_file, |
| start_commit_detect_capabilities, |
| ] |
| |
| if __name__ == '__main__': |
| svntest.main.run_tests(test_list) |
| # NOTREACHED |
| |
| |
| ### End of file. |