~ubuntu-branches/debian/sid/obnam/sid

« back to all changes in this revision

Viewing changes to obnamlib/fmt_simple/simple_tests.py

  • Committer: Package Import Robot
  • Author(s): Lars Wirzenius
  • Date: 2015-07-01 18:14:49 UTC
  • Revision ID: package-import@ubuntu.com-20150701181449-taxcvqg9cviw2cxo
Tags: 1.10-1
* New upstream version.
  * Fix "restore to /tmp messes up directory perms" by preventing
    restores to a non-empty directory. (Closes: #760492)
* Add build-dependency on git.
* Drop build-dependency on texlive and building of PDF form of manual.
  Texlive is an insanely large build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2015  Lars Wirzenius
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation, either version 3 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# =*= License: GPL-3+ =*=
 
17
 
 
18
 
 
19
import tempfile
 
20
import time
 
21
 
 
22
import obnamlib
 
23
 
 
24
 
 
25
class RepositoryFormatSimpleTests(obnamlib.RepositoryInterfaceTests):
 
26
 
 
27
    def setUp(self):
 
28
        self.tempdir = tempfile.mkdtemp()
 
29
        fs = obnamlib.LocalFS(self.tempdir)
 
30
        self.hooks = obnamlib.HookManager()
 
31
 
 
32
        # FIXME: The following must be format 6, for now.
 
33
        obnamlib.RepositoryFormat6.setup_hooks(self.hooks)
 
34
 
 
35
        self.repo = obnamlib.RepositoryFormatSimple(
 
36
            hooks=self.hooks,
 
37
            current_time=time.time)
 
38
        self.repo.set_fs(fs)