#!/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 18 #------------------------------------------------------------------------------- setup init_repos init_branch ctrl $REPOS_URL init_branch_wc ren_ren $REPOS_URL # Set a special (null) fcm-graphic-merge diff editor. export FCM_GRAPHIC_MERGE=fcm-dummy-diff cd $TEST_DIR/wc #------------------------------------------------------------------------------- # Tests fcm conflicts: rename, rename, diff rename, discard local TEST_KEY=$TEST_KEY_BASE-discard svn switch -q $ROOT_URL/branches/dev/Share/ctrl svn rename -q pro/hello.pro pro/hello.pro.renamed-local svn commit -q -m "Renamed conflict file (local)" svn update -q echo "Local contents (1)" >>pro/hello.pro.renamed-local svn commit -q -m "Modified conflict file (local)" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/ren_ren echo "Merge contents (1)" >>pro/hello.pro svn commit -q -m "Modified conflict file (merge)" svn update -q svn rename -q pro/hello.pro pro/hello.pro.renamed-merge svn commit -q -m "Renamed conflict file (merge)" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/ctrl fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ren_ren >/dev/null run_pass "$TEST_KEY" fcm conflicts <<__IN__ n __IN__ file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__ [info] pro/hello.pro: in tree conflict. Locally: renamed to pro/hello.pro.renamed-local. Externally: renamed to pro/hello.pro.renamed-merge. Answer (y) to accept the local rename. 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-merge.working pro/hello.pro.renamed-merge.merge-left.r1 pro/hello.pro.renamed-merge.merge-right.r9 ==== 1:3c Local contents (1) 2:2a 3:3c Merge contents (1) D pro/hello.pro.renamed-local Resolved conflicted state of '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: renamed to pro/hello.pro.renamed-local. Externally: renamed to pro/hello.pro.renamed-merge. Answer (y) to accept the local rename. 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-local.working pro/hello.pro.renamed-local.merge-left.r1 pro/hello.pro.renamed-local.merge-right.r9 ==== 1:3c Local contents (1) 2:2a 3:3c Merge contents (1) Reverted 'pro/hello.pro.renamed-merge' Resolved conflicted state of 'pro/hello.pro' __OUT__ file_cmp "$TEST_KEY.err" "$TEST_KEY.err"