#!/bin/bash # ------------------------------------------------------------------------------ # (C) British Crown Copyright 2006-17 Met Office. # # This file is part of FCM, tools for managing and building source code. # # FCM is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # FCM is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with FCM. If not, see . # ------------------------------------------------------------------------------ # Basic tests for "fcm conflicts" (tree conflict mode). #------------------------------------------------------------------------------- . $(dirname $0)/test_header #------------------------------------------------------------------------------- check_svn_version tests 24 #------------------------------------------------------------------------------- setup init_repos init_branch ctrl $REPOS_URL init_branch_wc ed_ren $REPOS_URL export SVN_EDITOR="sed -i 1i\foo" # Set a special (null) fcm-graphic-merge diff editor. export FCM_GRAPHIC_MERGE=fcm-dummy-diff cd $TEST_DIR/wc #------------------------------------------------------------------------------- # Tests fcm conflicts: edit, rename, discard local TEST_KEY=$TEST_KEY_BASE-discard svn switch -q $ROOT_URL/branches/dev/Share/ctrl echo "Local contents (1)" >>pro/hello.pro svn commit -q -m "Modified local copy of conflict file" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/ed_ren echo "Merge contents (1)" >>pro/hello.pro svn rename -q pro/hello.pro pro/hello.pro.renamed svn commit -q -m "Modified and renamed merge copy of conflict file" svn update -q echo "Merge contents (2)" >>pro/hello.pro.renamed svn commit -q -m "Modified the merge copy of renamed conflict file" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/ctrl fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ed_ren >/dev/null run_pass "$TEST_KEY" fcm conflicts <<__IN__ n __IN__ sed -i "/^Resolved conflicted state of 'pro\/hello.pro'$/d" $TEST_DIR/"$TEST_KEY.out" file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__ [info] pro/hello.pro: in tree conflict. Locally: edited. Externally: renamed to pro/hello.pro.renamed. Answer (y) to keep the file. Answer (n) to accept the external rename. You can then merge in changes. Keep the local version? Enter "y" or "n" (or just press for "n") diff3 pro/hello.pro.renamed.working pro/hello.pro.renamed.merge-left.r1 pro/hello.pro.renamed.merge-right.r8 ==== 1:3c Local contents (1) 2:2a 3:3,4c Merge contents (1) Merge contents (2) D pro/hello.pro __OUT__ file_cmp "$TEST_KEY.err" "$TEST_KEY.err" /dev/null run_pass "$TEST_KEY" fcm conflicts <<__IN__ y __IN__ file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__ [info] pro/hello.pro: in tree conflict. Locally: edited. Externally: renamed to pro/hello.pro.renamed. Answer (y) to keep the file. Answer (n) to accept the external rename. You can then merge in changes. Keep the local version? Enter "y" or "n" (or just press for "n") diff3 pro/hello.pro.working pro/hello.pro.merge-left.r1 pro/hello.pro.merge-right.r8 ==== 1:3c Local contents (1) 2:2a 3:3,4c Merge contents (1) Merge contents (2) Reverted 'pro/hello.pro.renamed' Resolved conflicted state of 'pro/hello.pro' __OUT__ file_cmp "$TEST_KEY.err" "$TEST_KEY.err"