Mercurial > vim
annotate src/testdir/test_startup.vim @ 15430:d94901eeb762 v8.1.0723
patch 8.1.0723: cannot easily run specific test when in src/testdir
commit https://github.com/vim/vim/commit/ec50401e1e1357a1340b3c92109fd4860e38a8ac
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 11 17:30:16 2019 +0100
patch 8.1.0723: cannot easily run specific test when in src/testdir
Problem: Cannot run specific test when in src/testdir the same was as in
the src directory.
Solution: Move build rule to src/testdir/Makefile.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Jan 2019 17:45:05 +0100 |
parents | c31e4b1fa4fd |
children | ca0a0b64809c |
rev | line source |
---|---|
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
1 " Tests for startup. |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
2 |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
3 source shared.vim |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
4 |
9678
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 " Check that loading startup.vim works. |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 func Test_startup_script() |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 set compatible |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 source $VIMRUNTIME/defaults.vim |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 call assert_equal(0, &compatible) |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 endfunc |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
12 |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
13 " Verify the order in which plugins are loaded: |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
14 " 1. plugins in non-after directories |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
15 " 2. packages |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
16 " 3. plugins in after directories |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
17 func Test_after_comes_later() |
9782
d6a69f968249
commit https://github.com/vim/vim/commit/328604307ba26e3182eb0b096e820f9cd346c2dd
Christian Brabandt <cb@256bit.org>
parents:
9780
diff
changeset
|
18 if !has('packages') |
d6a69f968249
commit https://github.com/vim/vim/commit/328604307ba26e3182eb0b096e820f9cd346c2dd
Christian Brabandt <cb@256bit.org>
parents:
9780
diff
changeset
|
19 return |
d6a69f968249
commit https://github.com/vim/vim/commit/328604307ba26e3182eb0b096e820f9cd346c2dd
Christian Brabandt <cb@256bit.org>
parents:
9780
diff
changeset
|
20 endif |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
21 let before = [ |
9788
3fdf6caf42f7
commit https://github.com/vim/vim/commit/446cce6d537b036467033975a86729dbdc83f860
Christian Brabandt <cb@256bit.org>
parents:
9782
diff
changeset
|
22 \ 'set nocp viminfo+=nviminfo', |
3fdf6caf42f7
commit https://github.com/vim/vim/commit/446cce6d537b036467033975a86729dbdc83f860
Christian Brabandt <cb@256bit.org>
parents:
9782
diff
changeset
|
23 \ 'set guioptions+=M', |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
24 \ 'let $HOME = "/does/not/exist"', |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
25 \ 'set loadplugins', |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
26 \ 'set rtp=Xhere,Xafter,Xanother', |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
27 \ 'set packpath=Xhere,Xafter', |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
28 \ 'set nomore', |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
29 \ 'let g:sequence = ""', |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
30 \ ] |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
31 let after = [ |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
32 \ 'redir! > Xtestout', |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
33 \ 'scriptnames', |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
34 \ 'redir END', |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
35 \ 'redir! > Xsequence', |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
36 \ 'echo g:sequence', |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
37 \ 'redir END', |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
38 \ 'quit', |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
39 \ ] |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
40 call mkdir('Xhere/plugin', 'p') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
41 call writefile(['let g:sequence .= "here "'], 'Xhere/plugin/here.vim') |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
42 call mkdir('Xanother/plugin', 'p') |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
43 call writefile(['let g:sequence .= "another "'], 'Xanother/plugin/another.vim') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
44 call mkdir('Xhere/pack/foo/start/foobar/plugin', 'p') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
45 call writefile(['let g:sequence .= "pack "'], 'Xhere/pack/foo/start/foobar/plugin/foo.vim') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
46 |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
47 call mkdir('Xafter/plugin', 'p') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
48 call writefile(['let g:sequence .= "after "'], 'Xafter/plugin/later.vim') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
49 |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
50 if RunVim(before, after, '') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
51 |
9780
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
52 let lines = readfile('Xtestout') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
53 let expected = ['Xbefore.vim', 'here.vim', 'another.vim', 'foo.vim', 'later.vim', 'Xafter.vim'] |
9780
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
54 let found = [] |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
55 for line in lines |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
56 for one in expected |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
57 if line =~ one |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
58 call add(found, one) |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
59 endif |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
60 endfor |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
61 endfor |
9780
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
62 call assert_equal(expected, found) |
103ad8a18ebc
commit https://github.com/vim/vim/commit/83b3c3d8a0fa1afed06c13163b9f72c0925f2a61
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
63 endif |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
64 |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
65 call assert_equal('here another pack after', substitute(join(readfile('Xsequence', 1), ''), '\s\+$', '', '')) |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
66 |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
67 call delete('Xtestout') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
68 call delete('Xsequence') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
69 call delete('Xhere', 'rf') |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
70 call delete('Xanother', 'rf') |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
71 call delete('Xafter', 'rf') |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
72 endfunc |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
73 |
11457
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
74 func Test_pack_in_rtp_when_plugins_run() |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
75 if !has('packages') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
76 return |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
77 endif |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
78 let before = [ |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
79 \ 'set nocp viminfo+=nviminfo', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
80 \ 'set guioptions+=M', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
81 \ 'let $HOME = "/does/not/exist"', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
82 \ 'set loadplugins', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
83 \ 'set rtp=Xhere', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
84 \ 'set packpath=Xhere', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
85 \ 'set nomore', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
86 \ ] |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
87 let after = [ |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
88 \ 'quit', |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
89 \ ] |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
90 call mkdir('Xhere/plugin', 'p') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
91 call writefile(['redir! > Xtestout', 'silent set runtimepath?', 'silent! call foo#Trigger()', 'redir END'], 'Xhere/plugin/here.vim') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
92 call mkdir('Xhere/pack/foo/start/foobar/autoload', 'p') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
93 call writefile(['function! foo#Trigger()', 'echo "autoloaded foo"', 'endfunction'], 'Xhere/pack/foo/start/foobar/autoload/foo.vim') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
94 |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
95 if RunVim(before, after, '') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
96 |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
97 let lines = filter(readfile('Xtestout'), '!empty(v:val)') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
98 call assert_match('Xhere[/\\]pack[/\\]foo[/\\]start[/\\]foobar', get(lines, 0)) |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
99 call assert_match('autoloaded foo', get(lines, 1)) |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
100 endif |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
101 |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
102 call delete('Xtestout') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
103 call delete('Xhere', 'rf') |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
104 endfunc |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
105 |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
106 func Test_help_arg() |
9796
1f1ed7959860
commit https://github.com/vim/vim/commit/3321e9d8a36c91c62d8ba3d43430b5c213b87f8b
Christian Brabandt <cb@256bit.org>
parents:
9794
diff
changeset
|
107 if !has('unix') && has('gui') |
1f1ed7959860
commit https://github.com/vim/vim/commit/3321e9d8a36c91c62d8ba3d43430b5c213b87f8b
Christian Brabandt <cb@256bit.org>
parents:
9794
diff
changeset
|
108 " this doesn't work with gvim on MS-Windows |
1f1ed7959860
commit https://github.com/vim/vim/commit/3321e9d8a36c91c62d8ba3d43430b5c213b87f8b
Christian Brabandt <cb@256bit.org>
parents:
9794
diff
changeset
|
109 return |
1f1ed7959860
commit https://github.com/vim/vim/commit/3321e9d8a36c91c62d8ba3d43430b5c213b87f8b
Christian Brabandt <cb@256bit.org>
parents:
9794
diff
changeset
|
110 endif |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
111 if RunVim([], [], '--help >Xtestout') |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
112 let lines = readfile('Xtestout') |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
113 call assert_true(len(lines) > 20) |
9804
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
114 call assert_match('Vi IMproved', lines[0]) |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
115 |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
116 " check if couple of lines are there |
9830
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
117 let found = [] |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
118 for line in lines |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
119 if line =~ '-R.*Readonly mode' |
9830
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
120 call add(found, 'Readonly mode') |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
121 endif |
9830
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
122 " Watch out for a second --version line in the Gnome version. |
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
123 if line =~ '--version.*Print version information and exit' |
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
124 call add(found, "--version") |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
125 endif |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
126 endfor |
9830
6049c1f01391
commit https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06
Christian Brabandt <cb@256bit.org>
parents:
9808
diff
changeset
|
127 call assert_equal(['Readonly mode', '--version'], found) |
9794
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
128 endif |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
129 call delete('Xtestout') |
fd32f719d34f
commit https://github.com/vim/vim/commit/472a0a880a709c027f4b19cfa56c08e78818112d
Christian Brabandt <cb@256bit.org>
parents:
9788
diff
changeset
|
130 endfunc |
9804
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
131 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
132 func Test_compatible_args() |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
133 let after = [ |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
134 \ 'call writefile([string(&compatible)], "Xtestout")', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
135 \ 'set viminfo+=nviminfo', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
136 \ 'quit', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
137 \ ] |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
138 if RunVim([], after, '-C') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
139 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
140 call assert_equal('1', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
141 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
142 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
143 if RunVim([], after, '-N') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
144 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
145 call assert_equal('0', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
146 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
147 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
148 call delete('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
149 endfunc |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
150 |
14772
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
151 " Test the -o[N] and -O[N] arguments to open N windows split |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
152 " horizontally or vertically. |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
153 func Test_o_arg() |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
154 let after = [ |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
155 \ 'call writefile([winnr("$"), |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
156 \ winheight(1), winheight(2), &lines, |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
157 \ winwidth(1), winwidth(2), &columns, |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
158 \ bufname(winbufnr(1)), bufname(winbufnr(2))], |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
159 \ "Xtestout")', |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
160 \ 'qall', |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
161 \ ] |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
162 if RunVim([], after, '-o2') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
163 " Open 2 windows split horizontally. Expect: |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
164 " - 2 windows |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
165 " - both windows should have the same or almost the same height |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
166 " - sum of both windows height (+ 3 for both statusline and Ex command) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
167 " should be equal to the number of lines |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
168 " - both windows should have the same width which should be equal to the |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
169 " number of columns |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
170 " - buffer of both windows should have no name |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
171 let [wn, wh1, wh2, ln, ww1, ww2, cn, bn1, bn2] = readfile('Xtestout') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
172 call assert_equal('2', wn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
173 call assert_inrange(0, 1, wh1 - wh2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
174 call assert_equal(string(wh1 + wh2 + 3), ln) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
175 call assert_equal(ww1, ww2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
176 call assert_equal(ww1, cn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
177 call assert_equal('', bn1) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
178 call assert_equal('', bn2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
179 endif |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
180 |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
181 if RunVim([], after, '-o foo bar') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
182 " Same expectations as for -o2 but buffer names should be foo and bar |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
183 let [wn, wh1, wh2, ln, ww1, ww2, cn, bn1, bn2] = readfile('Xtestout') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
184 call assert_equal('2', wn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
185 call assert_inrange(0, 1, wh1 - wh2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
186 call assert_equal(string(wh1 + wh2 + 3), ln) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
187 call assert_equal(ww1, ww2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
188 call assert_equal(ww1, cn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
189 call assert_equal('foo', bn1) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
190 call assert_equal('bar', bn2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
191 endif |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
192 |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
193 if RunVim([], after, '-O2') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
194 " Open 2 windows split vertically. Expect: |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
195 " - 2 windows |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
196 " - both windows should have the same or almost the same width |
14810
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
197 " - sum of both windows width (+ 1 for the separator) should be equal to |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
198 " the number of columns |
14772
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
199 " - both windows should have the same height |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
200 " - window height (+ 2 for the statusline and Ex command) should be equal |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
201 " to the number of lines |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
202 " - buffer of both windows should have no name |
14772
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
203 let [wn, wh1, wh2, ln, ww1, ww2, cn, bn1, bn2] = readfile('Xtestout') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
204 call assert_equal('2', wn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
205 call assert_inrange(0, 1, ww1 - ww2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
206 call assert_equal(string(ww1 + ww2 + 1), cn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
207 call assert_equal(wh1, wh2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
208 call assert_equal(string(wh1 + 2), ln) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
209 call assert_equal('', bn1) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
210 call assert_equal('', bn2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
211 endif |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
212 |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
213 if RunVim([], after, '-O foo bar') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
214 " Same expectations as for -O2 but buffer names should be foo and bar |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
215 let [wn, wh1, wh2, ln, ww1, ww2, cn, bn1, bn2] = readfile('Xtestout') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
216 call assert_equal('2', wn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
217 call assert_inrange(0, 1, ww1 - ww2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
218 call assert_equal(string(ww1 + ww2 + 1), cn) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
219 call assert_equal(wh1, wh2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
220 call assert_equal(string(wh1 + 2), ln) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
221 call assert_equal('foo', bn1) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
222 call assert_equal('bar', bn2) |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
223 endif |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
224 |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
225 call delete('Xtestout') |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
226 endfunc |
66e241c3a2f0
patch 8.1.0398: no test for -o and -O command line arguments
Christian Brabandt <cb@256bit.org>
parents:
13162
diff
changeset
|
227 |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
228 " Test the -p[N] argument to open N tabpages. |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
229 func Test_p_arg() |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
230 let after = [ |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
231 \ 'call writefile(split(execute("tabs"), "\n"), "Xtestout")', |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
232 \ 'qall', |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
233 \ ] |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
234 if RunVim([], after, '-p2') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
235 let lines = readfile('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
236 call assert_equal(4, len(lines)) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
237 call assert_equal('Tab page 1', lines[0]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
238 call assert_equal('> [No Name]', lines[1]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
239 call assert_equal('Tab page 2', lines[2]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
240 call assert_equal(' [No Name]', lines[3]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
241 endif |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
242 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
243 if RunVim([], after, '-p foo bar') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
244 let lines = readfile('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
245 call assert_equal(4, len(lines)) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
246 call assert_equal('Tab page 1', lines[0]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
247 call assert_equal('> foo', lines[1]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
248 call assert_equal('Tab page 2', lines[2]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
249 call assert_equal(' bar', lines[3]) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
250 endif |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
251 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
252 call delete('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
253 endfunc |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
254 |
14794
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
255 " Test the -V[N] argument to set the 'verbose' option to [N] |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
256 func Test_V_arg() |
14794
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
257 if has('gui_running') |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
258 " Can't catch the output of gvim. |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
259 return |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
260 endif |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
261 let out = system(GetVimCommand() . ' --clean -es -X -V0 -c "set verbose?" -cq') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
262 call assert_equal(" verbose=0\n", out) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
263 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
264 let out = system(GetVimCommand() . ' --clean -es -X -V2 -c "set verbose?" -cq') |
14794
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
265 call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nSearching for \"filetype\.vim\".*\n", out) |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
266 call assert_match(" verbose=2\n", out) |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
267 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
268 let out = system(GetVimCommand() . ' --clean -es -X -V15 -c "set verbose?" -cq') |
14794
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
269 call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nline 1: \" The default vimrc file\..* verbose=15\n", out) |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
270 endfunc |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
271 |
15284
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
272 " Test the '-q [errorfile]' argument. |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
273 func Test_q_arg() |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
274 let source_file = has('win32') ? '..\memfile.c' : '../memfile.c' |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
275 let after = [ |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
276 \ 'call writefile([&errorfile, string(getpos("."))], "Xtestout")', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
277 \ 'copen', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
278 \ 'w >> Xtestout', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
279 \ 'qall' |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
280 \ ] |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
281 |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
282 " Test with default argument '-q'. |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
283 call assert_equal('errors.err', &errorfile) |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
284 call writefile(["../memfile.c:1482:5: error: expected ';' before '}' token"], 'errors.err') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
285 if RunVim([], after, '-q') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
286 let lines = readfile('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
287 call assert_equal(['errors.err', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
288 \ '[0, 1482, 5, 0]', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
289 \ source_file . "|1482 col 5| error: expected ';' before '}' token"], |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
290 \ lines) |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
291 endif |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
292 call delete('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
293 call delete('errors.err') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
294 |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
295 " Test with explicit argument '-q Xerrors' (with space). |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
296 call writefile(["../memfile.c:1482:5: error: expected ';' before '}' token"], 'Xerrors') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
297 if RunVim([], after, '-q Xerrors') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
298 let lines = readfile('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
299 call assert_equal(['Xerrors', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
300 \ '[0, 1482, 5, 0]', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
301 \ source_file . "|1482 col 5| error: expected ';' before '}' token"], |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
302 \ lines) |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
303 endif |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
304 call delete('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
305 |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
306 " Test with explicit argument '-qXerrors' (without space). |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
307 if RunVim([], after, '-qXerrors') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
308 let lines = readfile('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
309 call assert_equal(['Xerrors', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
310 \ '[0, 1482, 5, 0]', |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
311 \ source_file . "|1482 col 5| error: expected ';' before '}' token"], |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
312 \ lines) |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
313 endif |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
314 |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
315 call delete('Xtestout') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
316 call delete('Xerrors') |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
317 endfunc |
c31e4b1fa4fd
patch 8.1.0650: command line argument -q [errorfile] is not tested
Bram Moolenaar <Bram@vim.org>
parents:
14828
diff
changeset
|
318 |
14810
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
319 " Test the -V[N]{filename} argument to set the 'verbose' option to N |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
320 " and set 'verbosefile' to filename. |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
321 func Test_V_file_arg() |
14828
421e120ffb30
patch 8.1.0426: accessing invalid memory in SmcOpenConnection()
Christian Brabandt <cb@256bit.org>
parents:
14810
diff
changeset
|
322 if RunVim([], [], ' --clean -V2Xverbosefile -c "set verbose? verbosefile?" -cq') |
14810
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
323 let out = join(readfile('Xverbosefile'), "\n") |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
324 call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
325 call assert_match("\n verbose=2\n", out) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
326 call assert_match("\n verbosefile=Xverbosefile", out) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
327 endif |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
328 |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
329 call delete('Xverbosefile') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
330 endfunc |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
331 |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
332 " Test the -m, -M and -R arguments: |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
333 " -m resets 'write' |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
334 " -M resets 'modifiable' and 'write' |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
335 " -R sets 'readonly' |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
336 func Test_m_M_R() |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
337 let after = [ |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
338 \ 'call writefile([&write, &modifiable, &readonly, &updatecount], "Xtestout")', |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
339 \ 'qall', |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
340 \ ] |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
341 if RunVim([], after, '') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
342 let lines = readfile('Xtestout') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
343 call assert_equal(['1', '1', '0', '200'], lines) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
344 endif |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
345 if RunVim([], after, '-m') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
346 let lines = readfile('Xtestout') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
347 call assert_equal(['0', '1', '0', '200'], lines) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
348 endif |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
349 if RunVim([], after, '-M') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
350 let lines = readfile('Xtestout') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
351 call assert_equal(['0', '0', '0', '200'], lines) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
352 endif |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
353 if RunVim([], after, '-R') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
354 let lines = readfile('Xtestout') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
355 call assert_equal(['1', '1', '1', '10000'], lines) |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
356 endif |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
357 |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
358 call delete('Xtestout') |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
359 endfunc |
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
360 |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
361 " Test the -A, -F and -H arguments (Arabic, Farsi and Hebrew modes). |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
362 func Test_A_F_H_arg() |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
363 let after = [ |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
364 \ 'call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout")', |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
365 \ 'qall', |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
366 \ ] |
14794
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
367 " Use silent Ex mode to avoid the hit-Enter prompt for the warning that |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
368 " 'encoding' is not utf-8. |
9be43810b5ec
patch 8.1.0409: startup test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14788
diff
changeset
|
369 if has('arabic') && &encoding == 'utf-8' && RunVim([], after, '-e -s -A') |
14788
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
370 let lines = readfile('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
371 call assert_equal(['1', '1', '0', '0'], lines) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
372 endif |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
373 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
374 if has('farsi') && RunVim([], after, '-F') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
375 let lines = readfile('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
376 call assert_equal(['1', '0', '1', '0'], lines) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
377 endif |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
378 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
379 if has('rightleft') && RunVim([], after, '-H') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
380 let lines = readfile('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
381 call assert_equal(['1', '0', '0', '1'], lines) |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
382 endif |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
383 |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
384 call delete('Xtestout') |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
385 endfunc |
0aff6e5f3d55
patch 8.1.0406: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14772
diff
changeset
|
386 |
9804
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
387 func Test_file_args() |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
388 let after = [ |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
389 \ 'call writefile(argv(), "Xtestout")', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
390 \ 'qall', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
391 \ ] |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
392 if RunVim([], after, '') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
393 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
394 call assert_equal(0, len(lines)) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
395 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
396 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
397 if RunVim([], after, 'one') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
398 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
399 call assert_equal(1, len(lines)) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
400 call assert_equal('one', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
401 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
402 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
403 if RunVim([], after, 'one two three') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
404 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
405 call assert_equal(3, len(lines)) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
406 call assert_equal('one', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
407 call assert_equal('two', lines[1]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
408 call assert_equal('three', lines[2]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
409 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
410 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
411 if RunVim([], after, 'one -c echo two') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
412 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
413 call assert_equal(2, len(lines)) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
414 call assert_equal('one', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
415 call assert_equal('two', lines[1]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
416 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
417 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
418 if RunVim([], after, 'one -- -c echo two') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
419 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
420 call assert_equal(4, len(lines)) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
421 call assert_equal('one', lines[0]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
422 call assert_equal('-c', lines[1]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
423 call assert_equal('echo', lines[2]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
424 call assert_equal('two', lines[3]) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
425 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
426 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
427 call delete('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
428 endfunc |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
429 |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
430 func Test_startuptime() |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
431 if !has('startuptime') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
432 return |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
433 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
434 let after = ['qall'] |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
435 if RunVim([], after, '--startuptime Xtestout one') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
436 let lines = readfile('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
437 let expected = ['--- VIM STARTING ---', 'parsing arguments', |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
438 \ 'shell init', 'inits 3', 'start termcap', 'opening buffers'] |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
439 let found = [] |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
440 for line in lines |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
441 for exp in expected |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
442 if line =~ exp |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
443 call add(found, exp) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
444 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
445 endfor |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
446 endfor |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
447 call assert_equal(expected, found) |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
448 endif |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
449 call delete('Xtestout') |
4ef933b816e7
commit https://github.com/vim/vim/commit/ba98bef1910094179bf90b9467b6e2d2f9462601
Christian Brabandt <cb@256bit.org>
parents:
9796
diff
changeset
|
450 endfunc |
9806
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
451 |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
452 func Test_read_stdin() |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
453 let after = [ |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
454 \ 'write Xtestout', |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
455 \ 'quit!', |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
456 \ ] |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
457 if RunVimPiped([], after, '-', 'echo something | ') |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
458 let lines = readfile('Xtestout') |
9808
0470742f7346
commit https://github.com/vim/vim/commit/e4a76ad0e74a31bbd9f1b1ac5b816d714d19a412
Christian Brabandt <cb@256bit.org>
parents:
9806
diff
changeset
|
459 " MS-Windows adds a space after the word |
0470742f7346
commit https://github.com/vim/vim/commit/e4a76ad0e74a31bbd9f1b1ac5b816d714d19a412
Christian Brabandt <cb@256bit.org>
parents:
9806
diff
changeset
|
460 call assert_equal(['something'], split(lines[0])) |
9806
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
461 endif |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
462 call delete('Xtestout') |
108b62925cb0
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Christian Brabandt <cb@256bit.org>
parents:
9804
diff
changeset
|
463 endfunc |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
464 |
13162
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
465 func Test_set_shell() |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
466 let after = [ |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
467 \ 'call writefile([&shell], "Xtestout")', |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
468 \ 'quit!', |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
469 \ ] |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
470 let $SHELL = '/bin/with space/sh' |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
471 if RunVimPiped([], after, '', '') |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
472 let lines = readfile('Xtestout') |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
473 " MS-Windows adds a space after the word |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
474 call assert_equal('/bin/with\ space/sh', lines[0]) |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
475 endif |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
476 call delete('Xtestout') |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
477 endfunc |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
12545
diff
changeset
|
478 |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
479 func Test_progpath() |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
480 " Tests normally run with "./vim" or "../vim", these must have been expanded |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
481 " to a full path. |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
482 if has('unix') |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
483 call assert_equal('/', v:progpath[0]) |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
484 elseif has('win32') |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
485 call assert_equal(':', v:progpath[1]) |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
486 call assert_match('[/\\]', v:progpath[2]) |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
487 endif |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
488 |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
489 " Only expect "vim" to appear in v:progname. |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
490 call assert_match('vim\c', v:progname) |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
9830
diff
changeset
|
491 endfunc |
11258
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
492 |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
493 func Test_silent_ex_mode() |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
494 if !has('unix') || has('gui_running') |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
495 " can't get output of Vim. |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
496 return |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
497 endif |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
498 |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
499 " This caused an ml_get error. |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
500 let out = system(GetVimCommand() . '-u NONE -es -c''set verbose=1|h|exe "%norm\<c-y>\<c-d>"'' -c cq') |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
501 call assert_notmatch('E315:', out) |
84f71a8a5f2c
patch 8.0.0515: ml_get errors in silent Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
502 endfunc |
11305
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
503 |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
504 func Test_default_term() |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
505 if !has('unix') || has('gui_running') |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
506 " can't get output of Vim. |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
507 return |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
508 endif |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
509 |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
510 let save_term = $TERM |
11307
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11305
diff
changeset
|
511 let $TERM = 'unknownxxx' |
11305
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
512 let out = system(GetVimCommand() . ' -c''set term'' -c cq') |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
513 call assert_match("defaulting to 'ansi'", out) |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
514 let $TERM = save_term |
3bcdfad55b19
patch 8.0.0538: no test for falling back to default term value
Christian Brabandt <cb@256bit.org>
parents:
11258
diff
changeset
|
515 endfunc |
12545
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
516 |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
517 func Test_zzz_startinsert() |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
518 " Test :startinsert |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
519 call writefile(['123456'], 'Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
520 let after = [ |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
521 \ ':startinsert', |
14810
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
522 \ 'call feedkeys("foobar\<c-o>:wq\<cr>","t")' |
12545
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
523 \ ] |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
524 if RunVim([], after, 'Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
525 let lines = readfile('Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
526 call assert_equal(['foobar123456'], lines) |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
527 endif |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
528 " Test :startinsert! |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
529 call writefile(['123456'], 'Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
530 let after = [ |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
531 \ ':startinsert!', |
14810
d47c8d294d1a
patch 8.1.0417: several command line arguments are not tested
Christian Brabandt <cb@256bit.org>
parents:
14794
diff
changeset
|
532 \ 'call feedkeys("foobar\<c-o>:wq\<cr>","t")' |
12545
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
533 \ ] |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
534 if RunVim([], after, 'Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
535 let lines = readfile('Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
536 call assert_equal(['123456foobar'], lines) |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
537 endif |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
538 call delete('Xtestout') |
241fbf588b95
patch 8.0.1151: "vim -c startinsert!" doesn't append
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
539 endfunc |