~larry-e-works/uci-engine/amqp-to-kombu

« back to all changes in this revision

Viewing changes to cupstream2distro/tests/mocks/online/rsync

  • Committer: Francis Ginther
  • Date: 2014-06-10 20:42:46 UTC
  • mto: This revision was merged to the branch mainline in revision 571.
  • Revision ID: francis.ginther@canonical.com-20140610204246-b1bsrik7nlcolqy7
Import lp:cupstream2distro rev 605.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# -*- coding: utf-8 -*-
 
3
# Copyright: (C) 2013 Canonical
 
4
#
 
5
# Authors:
 
6
#  Didier Roche
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify it under
 
9
# the terms of the GNU General Public License as published by the Free Software
 
10
# Foundation; version 3.
 
11
#
 
12
# This program is distributed in the hope that it will be useful, but WITHOUT
 
13
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
14
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
15
# details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License along with
 
18
# this program; if not, write to the Free Software Foundation, Inc.,
 
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
20
 
 
21
import os
 
22
import shutil
 
23
import sys
 
24
 
 
25
 
 
26
def copy_data_file(filename, dest, dest_filename=''):
 
27
    '''copy filename to dest'''
 
28
    if dest_filename:
 
29
        dest = os.path.join(dest, dest_filename)
 
30
    shutil.copy(os.path.join(os.path.dirname(__file__), 'data', filename), dest)
 
31
 
 
32
 
 
33
if __name__ == '__main__':
 
34
 
 
35
    if os.environ.get("MOCK_ERROR_MODE") == "1":
 
36
        sys.stderr.write('error asked for rsync\n')
 
37
        sys.exit(1)
 
38
 
 
39
    commands = " ".join(sys.argv[1:])
 
40
 
 
41
    if commands == '--remove-source-files --timeout=60 rsync://default/cu2d_out/packagelist_rsync* .':
 
42
        copy_data_file('packagelist_rsync_foo-front', '.')
 
43
        copy_data_file('packagelist_rsync_oif-head', '.')
 
44
        sys.exit(0)
 
45
    elif commands == '--remove-source-files --timeout=60 rsync://nothing/cu2d_out/packagelist_rsync* .':
 
46
        sys.exit(0)
 
47
 
 
48
    # unhandled case
 
49
    sys.exit(1)