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.
00-simple.t in vendors/t/fcm-update – NEMO

source: vendors/t/fcm-update/00-simple.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: 3.9 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 update".
21#-------------------------------------------------------------------------------
22. $(dirname $0)/test_header
23#-------------------------------------------------------------------------------
24check_svn_version
25tests 7
26#-------------------------------------------------------------------------------
27setup
28init_repos
29init_merge_branches merge1 merge2 $REPOS_URL
30export SVN_EDITOR="sed -i 1i\foo"
31cd $TEST_DIR/wc
32#-------------------------------------------------------------------------------
33# Tests fcm update -r PREV
34svn switch -q $ROOT_URL/branches/dev/Share/merge1
35TEST_KEY=$TEST_KEY_BASE-r-PREV
36run_pass "$TEST_KEY" fcm update -r PREV <<__IN__
37y
38__IN__
39merge_sort "$TEST_DIR/$TEST_KEY.out" "$TEST_DIR/$TEST_KEY.sorted.out"
40file_cmp "$TEST_KEY.sorted.out" "$TEST_KEY.sorted.out" <<__OUT__
41update: status of ".":
42?       unversioned_file
43update: continue?
44Enter "y" or "n" (or just press <return> for "n"):
45Updating '.':
46D    added_directory
47D    added_file
48D    module/tree_conflict_file
49U    lib/python/info/poems.py
50U    module/hello_constants.f90
51U    module/hello_constants.inc
52U    module/hello_constants_dummy.inc
53U    subroutine/hello_sub_dummy.h
54Updated to revision 4.
55__OUT__
56file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
57#-------------------------------------------------------------------------------
58# Tests fcm update
59rm unversioned_file
60TEST_KEY=$TEST_KEY_BASE-normal
61run_pass "$TEST_KEY" fcm update <<__IN__
62y
63__IN__
64sed -n "/^  *\*/p" "$TEST_DIR/$TEST_KEY.out" | sort -o \
65    "$TEST_DIR/$TEST_KEY.update-status.sorted.out"
66file_cmp "$TEST_KEY.update-status.sorted.out" \
67         "$TEST_KEY.update-status.sorted.out" <<__OUT__
68        *            added_directory
69        *            added_directory/hello_constants.f90
70        *            added_directory/hello_constants.inc
71        *            added_directory/hello_constants_dummy.inc
72        *            added_file
73        *            module/tree_conflict_file
74        *        4   .
75        *        4   lib/python/info/poems.py
76        *        4   module
77        *        4   module/hello_constants.f90
78        *        4   module/hello_constants.inc
79        *        4   module/hello_constants_dummy.inc
80        *        4   subroutine/hello_sub_dummy.h
81__OUT__
82sed -i "/^  *\*/d" "$TEST_DIR/$TEST_KEY.out"
83merge_sort "$TEST_DIR/$TEST_KEY.out" "$TEST_DIR/$TEST_KEY.sorted.out"
84file_cmp "$TEST_KEY.sorted.out" "$TEST_KEY.sorted.out" <<__OUT__
85update: status of ".":
86update: continue?
87Enter "y" or "n" (or just press <return> for "n"):
88Updating '.':
89A    added_directory
90A    added_directory/hello_constants.f90
91A    added_directory/hello_constants.inc
92A    added_directory/hello_constants_dummy.inc
93A    added_file
94A    module/tree_conflict_file
95U    lib/python/info/poems.py
96U    module/hello_constants.f90
97U    module/hello_constants.inc
98U    module/hello_constants_dummy.inc
99U    subroutine/hello_sub_dummy.h
100Updated to revision 9.
101__OUT__
102file_cmp "$TEST_KEY.err" "$TEST_KEY.err" </dev/null
103teardown
104#-------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.