~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests.py

  • Committer: Martin Pool
  • Date: 2005-05-03 07:48:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050503074854-adb6f9d6382e27a9
- sketchy experiments in bash and zsh completion

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
# -*- coding: UTF-8 -*-
 
3
 
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
 
 
19
 
 
20
# XXX: We might prefer these to be in a text file rather than Python
 
21
# source, but that only works in doctest from Python 2.4 and later,
 
22
# which is not present in Warty.
 
23
 
 
24
r"""
 
25
Bazaar-NG test cases
 
26
********************
 
27
 
 
28
These are run by ``bzr.doctest``.
 
29
 
 
30
>>> import bzrlib, os
 
31
>>> from bzrlib import ScratchBranch
 
32
>>> from bzrlib.osutils import isdir, isfile
 
33
>>> bzrlib.commands.cmd_rocks()
 
34
it sure does!
 
35
 
 
36
Hey, nice place to begin.
 
37
 
 
38
The basic object is a Branch.  We have a special helper class
 
39
ScratchBranch that automatically makes a directory and cleans itself
 
40
up, but is in other respects identical.
 
41
 
 
42
ScratchBranches are initially empty:
 
43
 
 
44
>>> b = bzrlib.ScratchBranch()
 
45
>>> b.show_status()
 
46
 
 
47
New files in that directory are, it is initially unknown:
 
48
 
 
49
>>> file(b.base + '/hello.c', 'wt').write('int main() {}')
 
50
>>> b.show_status()
 
51
?       hello.c
 
52
 
 
53
That's not quite true; some files (like editor backups) are ignored by
 
54
default:
 
55
 
 
56
>>> file(b.base + '/hello.c~', 'wt').write('int main() {}')
 
57
>>> b.show_status()
 
58
?       hello.c
 
59
>>> list(b.unknowns())
 
60
['hello.c']
 
61
 
 
62
The ``add`` command marks a file to be added in the next revision:
 
63
 
 
64
>>> b.add('hello.c')
 
65
>>> b.show_status()
 
66
A       hello.c
 
67
 
 
68
You can also add files that otherwise would be ignored.  The ignore
 
69
patterns only apply to files that would be otherwise unknown, so they
 
70
have no effect once it's added.
 
71
 
 
72
>>> b.add('hello.c~')
 
73
>>> b.show_status()
 
74
A       hello.c
 
75
A       hello.c~
 
76
 
 
77
It is an error to add a file that isn't present in the working copy:
 
78
 
 
79
  >>> b.add('nothere')
 
80
  Traceback (most recent call last):
 
81
  ...
 
82
  BzrError: ('cannot add: not a regular file or directory: nothere', [])
 
83
 
 
84
If we add a file and then change our mind, we can either revert it or
 
85
remove the file.  If we revert, we are left with the working copy (in
 
86
either I or ? state).  If we remove, the working copy is gone.  Let's
 
87
do that to the backup, presumably added accidentally.
 
88
 
 
89
  >>> b.remove('hello.c~')
 
90
  >>> b.show_status()
 
91
  A       hello.c
 
92
 
 
93
Now to commit, creating a new revision.  (Fake the date and name for
 
94
reproducibility.)
 
95
 
 
96
  >>> b.commit('start hello world', timestamp=0, committer='foo@nowhere')
 
97
  >>> b.show_status()
 
98
  >>> b.show_status(show_all=True)
 
99
  .       hello.c
 
100
  I       hello.c~
 
101
 
 
102
 
 
103
We can look back at history
 
104
 
 
105
  >>> r = b.get_revision(b.lookup_revision(1))
 
106
  >>> r.message
 
107
  'start hello world'
 
108
  >>> b.write_log(show_timezone='utc')
 
109
  ----------------------------------------
 
110
  revno: 1
 
111
  committer: foo@nowhere
 
112
  timestamp: Thu 1970-01-01 00:00:00 +0000
 
113
  message:
 
114
    start hello world
 
115
 
 
116
(The other fields will be a bit unpredictable, depending on who ran
 
117
this test and when.)
 
118
 
 
119
As of 2005-02-21, we can also add subdirectories to the revision!
 
120
 
 
121
  >>> os.mkdir(b.base + "/lib")
 
122
  >>> b.show_status()
 
123
  ?       lib/
 
124
  >>> b.add('lib')
 
125
  >>> b.show_status()
 
126
  A       lib/
 
127
  >>> b.commit('add subdir')
 
128
  >>> b.show_status()
 
129
  >>> b.show_status(show_all=True)
 
130
  .       hello.c
 
131
  I       hello.c~
 
132
  .       lib/
 
133
 
 
134
and we can also add files within subdirectories:
 
135
 
 
136
  >>> file(b.base + '/lib/hello', 'w').write('hello!\n')
 
137
  >>> b.show_status()
 
138
  ?       lib/hello
 
139
  
 
140
  
 
141
Tests for adding subdirectories, etc.
 
142
 
 
143
    >>> b = bzrlib.branch.ScratchBranch()
 
144
    >>> os.mkdir(b.abspath('d1'))
 
145
    >>> os.mkdir(b.abspath('d2'))
 
146
    >>> os.mkdir(b.abspath('d2/d3'))
 
147
    >>> list(b.working_tree().unknowns())
 
148
    ['d1', 'd2']
 
149
 
 
150
Create some files, but they're not seen as unknown yet:
 
151
 
 
152
    >>> file(b.abspath('d1/f1'), 'w').close()
 
153
    >>> file(b.abspath('d2/f2'), 'w').close()
 
154
    >>> file(b.abspath('d2/f3'), 'w').close()
 
155
    >>> [v[0] for v in b.inventory.directories()]
 
156
    ['']
 
157
    >>> list(b.working_tree().unknowns())
 
158
    ['d1', 'd2']
 
159
 
 
160
Adding a directory, and we see the file underneath:
 
161
    
 
162
    >>> b.add('d1')
 
163
    >>> [v[0] for v in b.inventory.directories()]
 
164
    ['', 'd1']
 
165
    >>> list(b.working_tree().unknowns())
 
166
    ['d2', 'd1/f1']
 
167
    >>> # d2 comes first because it's in the top directory
 
168
 
 
169
    >>> b.add('d2')
 
170
    >>> b.commit('add some stuff')
 
171
    >>> list(b.working_tree().unknowns())
 
172
    ['d1/f1', 'd2/d3', 'd2/f2', 'd2/f3']
 
173
 
 
174
    >>> b.add('d1/f1')
 
175
    >>> list(b.working_tree().unknowns())
 
176
    ['d2/d3', 'd2/f2', 'd2/f3']
 
177
 
 
178
Tests for ignored files and patterns:
 
179
 
 
180
    >>> b = ScratchBranch(dirs=['src', 'doc'],
 
181
    ...                   files=['configure.in', 'configure',
 
182
    ...                          'doc/configure', 'foo.c',
 
183
    ...                          'foo'])
 
184
    >>> list(b.unknowns())
 
185
    ['configure', 'configure.in', 'doc', 'foo', 'foo.c', 'src']
 
186
    >>> b.add(['doc', 'foo.c', 'src', 'configure.in'])
 
187
    >>> list(b.unknowns())
 
188
    ['configure', 'foo', 'doc/configure']
 
189
    >>> f = file(b.abspath('.bzrignore'), 'w')
 
190
    >>> f.write('./configure\n'
 
191
    ...         './foo\n')
 
192
    >>> f.close()
 
193
    >>> b.add('.bzrignore')
 
194
    >>> list(b.unknowns())
 
195
    ['doc/configure']
 
196
    >>> b.commit("commit 1")
 
197
    >>> list(b.unknowns())
 
198
    ['doc/configure']
 
199
    >>> b.add("doc/configure")
 
200
    >>> b.commit("commit more")
 
201
    >>> del b
 
202
 
 
203
Renames, etc:
 
204
 
 
205
    >>> b = ScratchBranch(files=['foo'], dirs=['subdir'])
 
206
    >>> b.add(['foo', 'subdir'])
 
207
    >>> b.commit('add foo')
 
208
    >>> list(b.unknowns())
 
209
    []
 
210
    >>> b.move(['foo'], 'subdir')
 
211
    foo => subdir/foo
 
212
    >>> b.show_status()
 
213
    R       foo => subdir/foo
 
214
    >>> bzrlib.commands.cmd_renames(b.base)
 
215
    foo => subdir/foo
 
216
    >>> b.commit("move foo to subdir")
 
217
    >>> isfile(b.abspath('foo'))
 
218
    False
 
219
    >>> isfile(b.abspath('subdir/foo'))
 
220
    True
 
221
 
 
222
"""