New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
04-tree-edit-delete.t in vendors/t/fcm-conflicts – NEMO

source: vendors/t/fcm-conflicts/04-tree-edit-delete.t @ 10669

Last change on this file since 10669 was 10669, checked in by nicolasmartin, 5 years ago

Import latest FCM release from Github into the repository for testing

File size: 5.2 KB
Line 
1#!/bin/bash
2# ------------------------------------------------------------------------------
3# (C) British Crown Copyright 2006-17 Met Office.
4#
5# This file is part of FCM, tools for managing and building source code.
6#
7# FCM is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# FCM is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with FCM. If not, see <http://www.gnu.org/licenses/>.
19# ------------------------------------------------------------------------------
20# Basic tests for "fcm conflicts" (tree conflict mode).
21#-------------------------------------------------------------------------------
22. $(dirname $0)/test_header
23#-------------------------------------------------------------------------------
24check_svn_version
25tests 18
26#-------------------------------------------------------------------------------
27setup
28init_repos
29init_branch ctrl $REPOS_URL
30init_branch_wc ed_del $REPOS_URL
31export SVN_EDITOR="sed -i 1i\foo"
32# Set a special (null) fcm-graphic-merge diff editor.
33export FCM_GRAPHIC_MERGE=fcm-dummy-diff
34cd $TEST_DIR/wc
35#-------------------------------------------------------------------------------
36# Tests fcm conflicts: edit, delete, discard local
37TEST_KEY=$TEST_KEY_BASE-discard
38svn switch -q $ROOT_URL/branches/dev/Share/ctrl
39echo "Local contents (1)" >>pro/hello.pro
40svn commit -q -m "Modified local copy of conflict file"
41svn update -q
42svn switch -q $ROOT_URL/branches/dev/Share/ed_del
43svn delete -q pro/hello.pro
44svn commit -q -m "Deleted merge copy of conflict file"
45svn update -q
46svn switch -q $ROOT_URL/branches/dev/Share/ctrl
47fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ed_del >/dev/null
48run_pass "$TEST_KEY" fcm conflicts <<__IN__
49n
50__IN__
51sed -i "/^Resolved conflicted state of 'pro\/hello.pro'$/d" $TEST_DIR/"$TEST_KEY.out"
52file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
53[info] pro/hello.pro: in tree conflict.
54Locally: edited.
55Externally: deleted.
56Answer (y) to keep the file.
57Answer (n) to accept the external delete.
58Keep the local version?
59Enter "y" or "n" (or just press <return> for "n") D         pro/hello.pro
60__OUT__
61file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
62#-------------------------------------------------------------------------------
63# Tests fcm conflicts: edit, delete, discard local (status)
64TEST_KEY=$TEST_KEY_BASE-discard-status
65run_pass "$TEST_KEY" svn status --config-dir=$TEST_DIR/.subversion/
66file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
67 M      .
68D       pro/hello.pro
69__OUT__
70file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
71#-------------------------------------------------------------------------------
72# Tests fcm conflicts: edit, delete, discard local (info)
73TEST_KEY=$TEST_KEY_BASE-discard-info
74run_pass "$TEST_KEY" svn info pro/hello.pro
75sed -i "/Date:\|Updated:\|UUID:\|Checksum\|Relative URL:\|Working Copy Root Path:/d" $TEST_DIR/$TEST_KEY.out
76file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
77Path: pro/hello.pro
78Name: hello.pro
79URL: $ROOT_URL/branches/dev/Share/ctrl/pro/hello.pro
80Repository Root: $REPOS_URL
81Revision: 7
82Node Kind: file
83Schedule: delete
84Last Changed Author: $LOGNAME
85Last Changed Rev: 6
86
87__OUT__
88file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
89#-------------------------------------------------------------------------------
90cd $TEST_DIR
91rm -rf $TEST_DIR/wc
92mkdir $TEST_DIR/wc
93svn checkout -q $ROOT_URL/branches/dev/Share/ctrl $TEST_DIR/wc
94cd $TEST_DIR/wc
95#-------------------------------------------------------------------------------
96# Tests fcm conflicts: edit, delete, keep local
97TEST_KEY=$TEST_KEY_BASE-keep
98fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ed_del >/dev/null
99run_pass "$TEST_KEY" fcm conflicts <<__IN__
100y
101__IN__
102file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
103[info] pro/hello.pro: in tree conflict.
104Locally: edited.
105Externally: deleted.
106Answer (y) to keep the file.
107Answer (n) to accept the external delete.
108Keep the local version?
109Enter "y" or "n" (or just press <return> for "n") Resolved conflicted state of 'pro/hello.pro'
110__OUT__
111file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
112#-------------------------------------------------------------------------------
113# Tests fcm conflicts: edit, delete, keep local (status)
114TEST_KEY=$TEST_KEY_BASE-keep-status
115run_pass "$TEST_KEY" svn status --config-dir=$TEST_DIR/.subversion/
116file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
117 M      .
118__OUT__
119file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
120#-------------------------------------------------------------------------------
121# Tests fcm conflicts: edit, delete, keep local (cat)
122TEST_KEY=$TEST_KEY_BASE-keep-cat
123run_pass "$TEST_KEY" cat pro/hello.pro
124file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
125PRO HELLO
126END
127Local contents (1)
128__OUT__
129file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
130teardown
131#-------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.