/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_export.py

  • Committer: Vincent Ladeuil
  • Date: 2010-01-25 15:55:48 UTC
  • mto: (4985.1.4 add-attr-cleanup)
  • mto: This revision was merged to the branch mainline in revision 4988.
  • Revision ID: v.ladeuil+lp@free.fr-20100125155548-0l352pujvt5bzl5e
Deploy addAttrCleanup on the whole test suite.

Several use case worth mentioning:

- setting a module or any other object attribute is the majority
by far. In some cases the setting itself is deferred but most of
the time we want to set at the same time we add the cleanup.

- there multiple occurrences of protecting hooks or ui factory
which are now useless (the test framework takes care of that now),

- there was some lambda uses that can now be avoided.

That first cleanup already simplifies things a lot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
import os
18
 
import time
 
18
 
19
19
 
20
20
from bzrlib import (
21
21
    errors,
22
22
    export,
 
23
    osutils,
23
24
    tests,
24
25
    )
25
26
 
61
62
        wt.commit('1')
62
63
        self.build_tree(['target/', 'target/foo'])
63
64
        self.assertRaises(errors.BzrError, export.export, wt, 'target', format="dir")
64
 
 
65
 
    def test_dir_export_existing_single_file(self):
66
 
        self.build_tree(['dir1/', 'dir1/dir2/', 'dir1/first', 'dir1/dir2/second'])
67
 
        wtree = self.make_branch_and_tree('dir1')
68
 
        wtree.add(['dir2', 'first', 'dir2/second'])
69
 
        wtree.commit('1')
70
 
        export.export(wtree, 'target1', format='dir', subdir='first')
71
 
        self.failUnlessExists('target1/first')
72
 
        export.export(wtree, 'target2', format='dir', subdir='dir2/second')
73
 
        self.failUnlessExists('target2/second')
74
 
        
75
 
    def test_dir_export_files_same_timestamp(self):
76
 
        builder = self.make_branch_builder('source')
77
 
        builder.start_series()
78
 
        builder.build_snapshot(None, None, [
79
 
            ('add', ('', 'root-id', 'directory', '')),
80
 
            ('add', ('a', 'a-id', 'file', 'content\n'))])
81
 
        builder.build_snapshot(None, None, [
82
 
            ('add', ('b', 'b-id', 'file', 'content\n'))])
83
 
        builder.finish_series()
84
 
        b = builder.get_branch()
85
 
        b.lock_read()
86
 
        self.addCleanup(b.unlock)
87
 
        tree = b.basis_tree()
88
 
        orig_iter_files_bytes = tree.iter_files_bytes
89
 
        # Make iter_files_bytes slower, so we provoke mtime skew
90
 
        def iter_files_bytes(to_fetch):
91
 
            for thing in orig_iter_files_bytes(to_fetch):
92
 
                yield thing
93
 
                time.sleep(1)
94
 
        tree.iter_files_bytes = iter_files_bytes
95
 
        export.export(tree, 'target', format='dir')
96
 
        t = self.get_transport('target')
97
 
        st_a = t.stat('a')
98
 
        st_b = t.stat('b')
99
 
        # All files must be given the same mtime.
100
 
        self.assertEqual(st_a.st_mtime, st_b.st_mtime)
101
 
 
102
 
    def test_dir_export_files_per_file_timestamps(self):
103
 
        builder = self.make_branch_builder('source')
104
 
        builder.start_series()
105
 
        # Earliest allowable date on FAT32 filesystems is 1980-01-01
106
 
        a_time = time.mktime((1999, 12, 12, 0, 0, 0, 0, 0, 0))
107
 
        b_time = time.mktime((1980, 01, 01, 0, 0, 0, 0, 0, 0))
108
 
        builder.build_snapshot(None, None, [
109
 
            ('add', ('', 'root-id', 'directory', '')),
110
 
            ('add', ('a', 'a-id', 'file', 'content\n'))],
111
 
            timestamp=a_time)
112
 
        builder.build_snapshot(None, None, [
113
 
            ('add', ('b', 'b-id', 'file', 'content\n'))],
114
 
            timestamp=b_time)
115
 
        builder.finish_series()
116
 
        b = builder.get_branch()
117
 
        b.lock_read()
118
 
        self.addCleanup(b.unlock)
119
 
        tree = b.basis_tree()
120
 
        export.export(tree, 'target', format='dir', per_file_timestamps=True)
121
 
        t = self.get_transport('target')
122
 
        self.assertEqual(a_time, t.stat('a').st_mtime)
123
 
        self.assertEqual(b_time, t.stat('b').st_mtime)