Mercurial > vim
annotate src/testdir/test_fnamemodify.vim @ 8861:45fe799c9672 v7.4.1718
commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 7 22:16:30 2016 +0200
patch 7.4.1718
Problem: Coverity: not using return value of set_ref_in_item().
Solution: Use the return value.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 07 Apr 2016 22:30:05 +0200 |
parents | c1ac169ee618 |
children | c5027d19ef61 |
rev | line source |
---|---|
8726
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Test filename modifiers. |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 func Test_fnamemodify() |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 let $HOME = fnamemodify('.', ':p:h:h') |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 set shell=sh |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 call assert_equal('/', fnamemodify('.', ':p')[-1:]) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 call assert_equal('r', fnamemodify('.', ':p:h')[-1:]) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 call assert_equal('t', fnamemodify('test.out', ':p')[-1:]) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 call assert_equal('test.out', fnamemodify('test.out', ':.')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 call assert_equal('a', fnamemodify('../testdir/a', ':.')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
12 call assert_equal('~/testdir/test.out', fnamemodify('test.out', ':~')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 call assert_equal('~/testdir/a', fnamemodify('../testdir/a', ':~')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
14 call assert_equal('a', fnamemodify('../testdir/a', ':t')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
15 call assert_equal('', fnamemodify('.', ':p:t')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
16 call assert_equal('test.out', fnamemodify('test.out', ':p:t')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
17 call assert_equal('out', fnamemodify('test.out', ':p:e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
18 call assert_equal('out', fnamemodify('test.out', ':p:t:e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 call assert_equal('abc.fb2.tar', fnamemodify('abc.fb2.tar.gz', ':r')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
20 call assert_equal('abc.fb2', fnamemodify('abc.fb2.tar.gz', ':r:r')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 call assert_equal('abc', fnamemodify('abc.fb2.tar.gz', ':r:r:r')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
22 call assert_equal('testdir/abc.fb2', substitute(fnamemodify('abc.fb2.tar.gz', ':p:r:r'), '.*\(testdir/.*\)', '\1', '')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
23 call assert_equal('gz', fnamemodify('abc.fb2.tar.gz', ':e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
24 call assert_equal('tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
25 call assert_equal('fb2.tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e:e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
26 call assert_equal('fb2.tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e:e:e')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
27 call assert_equal('tar', fnamemodify('abc.fb2.tar.gz', ':e:e:r')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
28 |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
29 call assert_equal('''abc def''', fnamemodify('abc def', ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
30 call assert_equal('''abc" "def''', fnamemodify('abc" "def', ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
31 call assert_equal('''abc"%"def''', fnamemodify('abc"%"def', ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
32 call assert_equal('''abc''\'''' ''\''''def''', fnamemodify('abc'' ''def', ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
33 call assert_equal('''abc''\''''%''\''''def''', fnamemodify('abc''%''def', ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
34 call assert_equal(expand('%:r:S'), shellescape(expand('%:r'))) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
35 sp test_alot.vim |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
36 call assert_equal('test_alot,''test_alot'',test_alot.vim', join([expand('%:r'), expand('%:r:S'), expand('%')], ',')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
37 quit |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
38 |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
39 call assert_equal("'abc\ndef'", fnamemodify("abc\ndef", ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
40 set shell=tcsh |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
41 call assert_equal("'abc\\\ndef'", fnamemodify("abc\ndef", ':S')) |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
42 set shell& |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
43 endfunc |
8730
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
44 |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
45 func Test_expand() |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
46 new |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
47 call assert_equal("", expand('%:S')) |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
48 quit |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
49 endfunc |