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.
06-tree-rename-delete.t in vendors/t/fcm-conflicts – NEMO

source: vendors/t/fcm-conflicts/06-tree-rename-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: 4.5 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 15
26#-------------------------------------------------------------------------------
27setup
28init_repos
29init_branch ctrl $REPOS_URL
30init_branch_wc ren_del $REPOS_URL
31cd $TEST_DIR/wc
32#-------------------------------------------------------------------------------
33# Tests fcm conflicts: rename, delete, discard local
34TEST_KEY=$TEST_KEY_BASE-discard
35svn switch -q $ROOT_URL/branches/dev/Share/ctrl
36svn rename -q pro/hello.pro pro/hello.pro.renamed
37svn commit -q -m "Renamed conflict file (local)"
38svn update -q
39echo "Local contents (1)" >>pro/hello.pro.renamed
40svn commit -q -m "Modified conflict file (local)"
41svn update -q
42svn switch -q $ROOT_URL/branches/dev/Share/ren_del
43svn delete -q pro/hello.pro
44svn commit -q -m "Deleted conflict file  (merge)"
45svn update -q
46svn switch -q $ROOT_URL/branches/dev/Share/ctrl
47fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ren_del >/dev/null
48run_pass "$TEST_KEY" fcm conflicts <<__IN__
49n
50__IN__
51file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
52[info] pro/hello.pro: in tree conflict.
53Locally: renamed to pro/hello.pro.renamed.
54Externally: deleted.
55Answer (y) to accept the local rename.
56Answer (n) to accept the external delete.
57Keep the local version?
58Enter "y" or "n" (or just press <return> for "n") D         pro/hello.pro.renamed
59Resolved conflicted state of 'pro/hello.pro'
60__OUT__
61file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
62#-------------------------------------------------------------------------------
63# Tests fcm conflicts: rename, 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.renamed
69__OUT__
70file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
71#-------------------------------------------------------------------------------
72cd $TEST_DIR
73rm -rf $TEST_DIR/wc
74mkdir $TEST_DIR/wc
75svn checkout -q $ROOT_URL/branches/dev/Share/ctrl $TEST_DIR/wc
76cd $TEST_DIR/wc
77#-------------------------------------------------------------------------------
78# Tests fcm conflicts: rename, delete, keep local
79TEST_KEY=$TEST_KEY_BASE-keep
80fcm merge --non-interactive $ROOT_URL/branches/dev/Share/ren_del >/dev/null
81run_pass "$TEST_KEY" fcm conflicts <<__IN__
82y
83__IN__
84file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
85[info] pro/hello.pro: in tree conflict.
86Locally: renamed to pro/hello.pro.renamed.
87Externally: deleted.
88Answer (y) to accept the local rename.
89Answer (n) to accept the external delete.
90Keep the local version?
91Enter "y" or "n" (or just press <return> for "n") Resolved conflicted state of 'pro/hello.pro'
92__OUT__
93file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
94#-------------------------------------------------------------------------------
95# Tests fcm conflicts: rename, delete, keep local (status)
96TEST_KEY=$TEST_KEY_BASE-keep-status
97run_pass "$TEST_KEY" svn status --config-dir=$TEST_DIR/.subversion/
98file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
99 M      .
100__OUT__
101file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
102#-------------------------------------------------------------------------------
103# Tests fcm conflicts: rename, delete, keep local (cat)
104TEST_KEY=$TEST_KEY_BASE-keep-cat
105run_pass "$TEST_KEY" cat pro/hello.pro.renamed
106file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__
107PRO HELLO
108END
109Local contents (1)
110__OUT__
111file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
112teardown
Note: See TracBrowser for help on using the repository browser.