summaryrefslogtreecommitdiff
path: root/src/obsync/test-obsync.py
blob: bca8e6ccbb9cb38b2ea153c3fbcb9ceb0bedb9e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
#!/usr/bin/env python

#
# Ceph - scalable distributed file system
#
# Copyright (C) 2011 New Dream Network
#
# This is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software
# Foundation.  See file COPYING.
#

"""
obsync_test.py: a system test for obsync
"""

from boto.s3.connection import OrdinaryCallingFormat
from boto.s3.connection import S3Connection
from boto.s3.key import Key
from optparse import OptionParser
from sys import stderr
import ConfigParser
import atexit
import boto
import os
import shutil
import subprocess
import random
import sys
import tempfile
import xattr

global opts
global tdir
global nonce
nonce = 0

###### Constants #######
ACL_XATTR = "rados.acl"
CONTENT_TYPE_XATTR = "rados.content_type"

###### Helper functions #######
def get_nonce():
    global nonce
    if (opts.deterministic_nonce):
        nonce = nonce + 1
        return nonce
    else:
        return random.randint(9999, 99999)

def get_s3_connection(conf):
    return boto.s3.connection.S3Connection(
            aws_access_key_id = conf["access_key"],
            aws_secret_access_key = conf["secret_key"],
            host = conf["host"],
            # TODO support & test all variations
            calling_format=boto.s3.connection.OrdinaryCallingFormat(),
            is_secure=False,
            )

def read_s3_config(cfg, section, sconfig, name):
    # TODO: support 'port', 'is_secure'
    sconfig[name] = {}
    for var in [ 'access_key', 'host', 'secret_key', 'user_id',
                 'display_name', 'email', 'consistency', ]:
        try:
            sconfig[name][var] = cfg.get(section, var)
        except ConfigParser.NoOptionError:
            pass
    # Make sure connection works
    try:
        conn = get_s3_connection(sconfig[name])
    except Exception, e:
        print >>stderr, "error initializing connection!"
        raise

    # Create bucket name
    try:
        template = cfg.get('fixtures', 'bucket prefix')
    except (ConfigParser.NoSectionError, ConfigParser.NoOptionError):
        template = 'test-{random}-'
    random.seed()
    try:
        sconfig[name]["bucket_name"] = \
            template.format(random=get_nonce())
    except:
        print >>stderr, "error parsing bucket prefix template"
        raise

def read_rgw_config(cfg, section, sconfig, rconfig, name):
    rconfig[name] = {}
    for var in [ 'ceph_conf' ]:
        try:
            rconfig[name][var] = cfg.get(section, var)
        except ConfigParser.NoOptionError:
            pass

def read_config():
    sconfig = {}
    rconfig = {}
    cfg = ConfigParser.RawConfigParser()
    try:
        path = os.environ['S3TEST_CONF']
    except KeyError:
        raise RuntimeError('To run tests, point environment ' + \
            'variable S3TEST_CONF to a config file.')
    with file(path) as f:
        cfg.readfp(f)

    for section in cfg.sections():
        try:
            (type_, name) = section.split(None, 1)
        except ValueError:
            continue
        if type_ == 's3':
            read_s3_config(cfg, section, sconfig, name)
        elif type_ == 'rgw':
            read_rgw_config(cfg, section, sconfig, rconfig, name)
    for k,v in rconfig.items():
        if (not sconfig.has_key(k)):
            raise Exception("Can't find the S3 bucket associated with \
    rgw pool %s" % k)
        v["bucket"] = sconfig[k]
    return sconfig, rconfig

def obsync(src, dst, misc):
    env = {}
    full = ["./obsync"]
    if (isinstance(src, str)):
        full.append(src)
    else:
        src.to_src(env, full)
    if (isinstance(dst, str)):
        full.append(dst)
    else:
        dst.to_dst(env, full)
    full.extend(misc)
    full.append("--boto-retries=1")
    if (opts.more_verbose):
        for k,v in env.items():
            print str(k) + "=" + str(v) + " ",
        print
        for f in full:
            print f,
        print
    return subprocess.call(full, stderr=opts.error_out, env=env)

def obsync_check(src, dst, opts):
    ret = obsync(src, dst, opts)
    if (ret != 0):
        raise RuntimeError("call to obsync failed!")

def cleanup_tempdir():
    if tdir != None and opts.keep_tempdir == False:
        shutil.rmtree(tdir)

def compare_directories(dir_a, dir_b, expect_same = True, compare_xattr = True):
    if (opts.verbose):
        print "comparing directories %s and %s" % (dir_a, dir_b)
    info = []
    for root, dirs, files in os.walk(dir_a):
        for filename in files:
            afile = os.path.join(root, filename)
            bfile = dir_b + afile[len(dir_a):]
            if (not os.path.exists(bfile)):
                info.append("Not found: %s: " % bfile)
            else:
                ret = subprocess.call(["diff", "-q", afile, bfile])
                if (ret != 0):
                    info.append("Files differ: %s and %s" % (afile, bfile))
                elif compare_xattr:
                    xinfo = xattr_diff(afile, bfile)
                    info.extend(xinfo)
    for root, dirs, files in os.walk(dir_b):
        for filename in files:
            bfile = os.path.join(root, filename)
            afile = dir_a + bfile[len(dir_b):]
            if (not os.path.exists(afile)):
                info.append("Not found: %s" % afile)
    if ((len(info) == 0) and (not expect_same)):
        print "expected the directories %s and %s to differ, but \
they were the same!" % (dir_a, dir_b)
        print "\n".join(info)
        raise Exception("compare_directories failed!")
    if ((len(info) != 0) and expect_same):
        print "expected the directories %s and %s to be the same, but \
they were different!" % (dir_a, dir_b)
        print "\n".join(info)
        raise Exception("compare_directories failed!")

def count_obj_in_dir(d):
    """counts the number of objects in a directory (WITHOUT recursing)"""
    num_objects = 0
    for f in os.listdir(d):
        num_objects = num_objects + 1
    return num_objects

def xuser(sconfig, src, dst):
    return [ "--xuser", sconfig[src]["user_id"] + "=" + sconfig[dst]["user_id"]]

def get_optional(h, k):
    if (h.has_key(k)):
        return h[k]
    else:
        return None

def xattr_diff(afile, bfile):
    def tuple_list_to_hash(tl):
        ret = {}
        for k,v in tl:
            ret[k] = v
        return ret
    info = []
    a_attr = tuple_list_to_hash(xattr.get_all(afile, namespace=xattr.NS_USER))
    b_attr = tuple_list_to_hash(xattr.get_all(bfile, namespace=xattr.NS_USER))
    for ka,va in a_attr.items():
        if b_attr.has_key(ka):
            if b_attr[ka] != va:
                info.append("xattrs differ for %s" % ka)
        else:
            info.append("only in %s: %s" % (afile, ka))
    for kb,vb in b_attr.items():
        if not a_attr.has_key(kb):
            info.append("only in %s: %s" % (bfile, kb))
    return info

def xattr_sync_impl(file_name, meta):
    xlist = xattr.get_all(file_name, namespace=xattr.NS_USER)
    to_delete = []
    to_set = {}
    for k,v in meta.items():
        to_set[k] = v
    for k,v in xlist:
        if (k == ACL_XATTR):
            continue
        if (not meta.has_key(k)):
            to_delete.append(k)
        elif (meta[k] == v):
            del to_set[k]
    return to_delete, to_set

def xattr_sync(file_name, meta):
    """ Synchronize the xattrs on a file with a hash of our choosing """
    to_delete, to_set = xattr_sync_impl(file_name, meta)
    for k in to_delete:
        xattr.remove(file_name, k)
    for k,v in to_set.items():
        xattr.set(file_name, k, v, namespace=xattr.NS_USER)

def assert_xattr(file_name, meta):
    """ Raise an exception if the xattrs on a file are not what we expect """
    to_delete, to_set = xattr_sync_impl(file_name, meta)
    if (len(to_delete) == 0) and (len(to_set) == 0):
        return
    print "XATTRS DIFFER: ",
    print "EXPECTED: {",
    sep = ""
    for k,v in meta.items():
        print sep + str(k) + " : " + str(v),
        sep = ", "
    print "}",
    print "GOT: {",
    sep = ""
    for k,v in xattr.get_all(file_name, namespace=xattr.NS_USER):
        if (k == ACL_XATTR):
            continue
        print "%s%s:%s" % (sep, k, v),
        sep = ", "
    print "}",
    print
    raise Exception("extended attributes are not what we expect on %s" % file_name)

###### ObSyncTestBucket #######
class ObSyncTestBucket(object):
    def __init__(self, conf):
        self.conf = conf
        self.name = conf["bucket_name"]
        self.url = "s3://" + conf["host"] + "/" + conf["bucket_name"]
        self.akey = conf["access_key"]
        self.skey = conf["secret_key"]
        self.consistency = get_optional(conf, "consistency")
    def to_src(self, env, args):
        env["SRC_AKEY"] = self.akey
        env["SRC_SKEY"] = self.skey
        args.append(self.url)
    def to_dst(self, env, args):
        env["DST_AKEY"] = self.akey
        env["DST_SKEY"] = self.skey
        args.append(self.url)
        if (self.consistency != None):
            env["DST_CONSISTENCY"] = self.consistency

class ObSyncTestPool(object):
    def __init__(self, bucket, ceph_conf):
        self.bucket = bucket
        self.ceph_conf = ceph_conf
    def to_src(self, env, args):
        args.append(self.get_url())
    def to_dst(self, env, args):
        env["DST_OWNER"] = self.bucket["user_id"]
        args.append(self.get_url())
    def get_url(self):
        return "rgw:%s:%s" % (self.ceph_conf, self.bucket["bucket_name"])

###### Main #######
# change directory to obsync directory
os.chdir(os.path.dirname(os.path.abspath(__file__)))

# parse options
parser = OptionParser("""test-obsync.sh
A system test for obsync.

Important environment variables:
S3TEST_CONF: path to the S3-tests configuration file
""")
parser.add_option("-k", "--keep-tempdir", action="store_true",
    dest="keep_tempdir", default=False,
    help="create the destination if it doesn't already exist")
parser.add_option("-v", "--verbose", action="store_true",
    dest="verbose", default=False,
    help="run verbose")
parser.add_option("-V", "--more-verbose", action="store_true", \
    dest="more_verbose", help="be really, really verbose (developer mode)")
parser.add_option("-D", "--deterministic-nonce", action="store_true", \
    dest="deterministic_nonce", help="use a deterministic bucket nonce\
(good for predictability, bad for re-entrancy).")
(opts, args) = parser.parse_args()
if (opts.more_verbose):
    opts.verbose = True

# parse configuration file
sconfig, rconfig = read_config()
opts.buckets = []
opts.buckets.append(ObSyncTestBucket(sconfig["main"]))
opts.buckets.append(ObSyncTestBucket(sconfig["alt"]))

opts.pools = []
if (rconfig.has_key("main")):
    if (opts.verbose):
        print "running rgw target tests..."
    opts.pools.append(ObSyncTestPool(sconfig["main"], \
                            rconfig["main"]["ceph_conf"]))

if not sconfig["main"]["user_id"]:
    raise Exception("You must specify a user_id for the main section.")
if not sconfig["alt"]["user_id"]:
    raise Exception("You must specify a user_id for the alt section.")

# set up temporary directory
tdir = tempfile.mkdtemp()
if (opts.verbose):
    print "created temporary directory: %s" % tdir
atexit.register(cleanup_tempdir)

# set up a little tree of files
os.mkdir("%s/dir1" % tdir)
os.mkdir("%s/dir1/c" % tdir)
os.mkdir("%s/dir1/c/g" % tdir)
f = open("%s/dir1/a" % tdir, 'w')
f.write("a")
f.close()
f = open("%s/dir1/b" % tdir, 'w')
f.close()
f = open("%s/dir1/c/d" % tdir, 'w')
f.write("file d!")
f.close()
f = open("%s/dir1/c/e" % tdir, 'w')
f.write("eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee")
f.close()
f = open("%s/dir1/c/f" % tdir, 'w')
f.write("file f.")
f.close()
f = open("%s/dir1/c/g/h" % tdir, 'w')
for i in range(0, 1000):
    f.write("%d." % i)
f.close()

if (opts.more_verbose):
    opts.error_out = sys.stderr
else:
    opts.error_out = open("/dev/null", 'w')

# copy this tree to somewhere else
subprocess.check_call(["cp", "-r", "%s/dir1" % tdir, "%s/dir1a" % tdir])

# make sure it's still the same
compare_directories("%s/dir1" % tdir, "%s/dir1a" % tdir)

# Run unit tests
ret = obsync("", "", ["--unit"])

# we should fail here, because we didn't supply -c
ret = obsync("file://%s/dir1" % tdir, "file://%s/dir2" % tdir, [])
if (ret == 0):
    raise RuntimeError("expected this call to obsync to fail, because \
we didn't supply -c. But it succeeded.")
if (opts.verbose):
    print "first call failed as expected."

# now supply -c and it should work
obsync_check("file://%s/dir1" % tdir, "file://%s/dir2" % tdir, ["-c"])
compare_directories("%s/dir1" % tdir, "%s/dir2" % tdir)

# test the alternate syntax where we leave off the file://, and it is assumed
# because the url begins with / or ./
obsync_check("file://%s/dir1" % tdir, "/%s/dir2" % tdir, ["-c"])

compare_directories("%s/dir1" % tdir, "%s/dir2" % tdir)

if (opts.verbose):
    print "successfully created dir2 from dir1"

if (opts.verbose):
    print "test a dry run between local directories"
os.mkdir("%s/dir1b" % tdir)
obsync_check("file://%s/dir1" % tdir, "file://%s/dir1b" % tdir, ["-n"])
if (count_obj_in_dir("/%s/dir1b" % tdir) != 0):
    raise RuntimeError("error! the dry run copied some files!")

if (opts.verbose):
    print "dry run didn't do anything. good."
obsync_check("file://%s/dir1" % tdir, "file://%s/dir1b" % tdir, [])
compare_directories("%s/dir1" % tdir, "%s/dir1b" % tdir)
if (opts.verbose):
    print "regular run synchronized the directories."

if (opts.verbose):
    print "test running without --delete-after or --delete-before..."
obsync_check("file://%s/dir1b" % tdir, "file://%s/dir1c" % tdir, ["-c"])
os.unlink("%s/dir1b/a" % tdir)
obsync_check("/%s/dir1b" % tdir, "file://%s/dir1c" % tdir, [])
if not os.path.exists("/%s/dir1c/a" % tdir):
    raise RuntimeError("error: running without --delete-after or \
--delete-before still deleted files from the destination!")
if (opts.verbose):
    print "test running _with_ --delete-after..."
obsync_check("/%s/dir1b" % tdir, "file://%s/dir1c" % tdir, ["--delete-after"])
if os.path.exists("/%s/dir1c/a" % tdir):
    raise RuntimeError("error: running with --delete-after \
failed to delete files from the destination!")

# test with --no-preserve-acls
obsync_check("file://%s/dir1" % tdir, "file://%s/dir1b2" % tdir,
            ["--no-preserve-acls", "-c"])


# Create synthetic ACL
obsync_check("file://%s/dir1" % tdir, "file://%s/dira" % tdir, ["-c"])
synthetic_xml1 = \
"<AccessControlPolicy xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\">\n\
<Owner>\n\
<ID>" + sconfig["main"]["user_id"] + "</ID>\n\
<DisplayName></DisplayName>\n\
</Owner>\n\
<AccessControlList>\n\
<Grant>\n\
  <Grantee xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \
xsi:type=\"CanonicalUser\">\n\
    <ID>" + sconfig["main"]["user_id"] + "</ID>\n\
    <DisplayName></DisplayName>\n\
  </Grantee>\n\
  <Permission>FULL_CONTROL</Permission>\n\
</Grant>\n\
</AccessControlList>\n\
</AccessControlPolicy>"
xattr.set("%s/dira/a" % tdir, ACL_XATTR, synthetic_xml1,
            namespace=xattr.NS_USER)
if (opts.verbose):
    print "set attr on %s" % ("%s/dira/a" % tdir)
# test ACL transformations
# canonicalize xml by parse + write out
obsync_check("file://%s/dira" % tdir, "file://%s/dira2" % tdir,
            ["-d", "-c"] + xuser(sconfig, "main", "alt"))
# test that ACL is preserved
obsync_check("file://%s/dira2" % tdir, "file://%s/dira3" % tdir,
            ["-d", "-c"])
synthetic_xml2 = xattr.get("%s/dira2/a" % tdir, ACL_XATTR,
                        namespace=xattr.NS_USER)
synthetic_xml3 = xattr.get("%s/dira3/a" % tdir, ACL_XATTR,
                        namespace=xattr.NS_USER)
if (synthetic_xml2 != synthetic_xml3):
    raise Exception("xml not preserved across obsync!")
# test ACL transformation
obsync_check("file://%s/dira3" % tdir, "file://%s/dira4" % tdir,
            ["-d", "-c"] + xuser(sconfig, "main", "alt"))
synthetic_xml4 = xattr.get("%s/dira4/a" % tdir, ACL_XATTR,
                        namespace=xattr.NS_USER)
if (synthetic_xml3 != synthetic_xml4):
    raise Exception("user translation was a no-op")
obsync_check("file://%s/dira4" % tdir, "file://%s/dira5" % tdir,
            ["-d", "-c"])
synthetic_xml5 = xattr.get("%s/dira5/a" % tdir, ACL_XATTR,
                        namespace=xattr.NS_USER)
if (synthetic_xml4 != synthetic_xml5):
    raise Exception("xml not preserved across obsync!")
# test ACL transformation back
obsync_check("file://%s/dira5" % tdir, "file://%s/dira6" % tdir,
            ["-d", "-c"] + xuser(sconfig, "alt", "main"))
if (synthetic_xml5 != synthetic_xml2):
    raise Exception("expected to transform XML back to original form \
through a double xuser")

# first, let's empty out the S3 bucket
os.mkdir("%s/empty1" % tdir)
if (opts.verbose):
    print "emptying out " + opts.buckets[0].name
obsync_check("file://%s/empty1" % tdir, opts.buckets[0],
            ["-c", "--delete-after"])

# make sure that the empty worked
obsync_check(opts.buckets[0], "file://%s/empty2" % tdir, ["-c"])
compare_directories("%s/empty1" % tdir, "%s/empty2" % tdir)
if (opts.verbose):
    print "successfully emptied out " + opts.buckets[0].name

if (opts.verbose):
    print "copying the sample directory to " + opts.buckets[0].name
# now copy the sample files to the test bucket
obsync_check("file://%s/dir1" % tdir, opts.buckets[0], [])

# make sure that the copy worked
obsync_check(opts.buckets[0], "file://%s/dir3" % tdir, ["-c"])
compare_directories("%s/dir1" % tdir, "%s/dir3" % tdir, compare_xattr = False)
if (opts.verbose):
    print "successfully copied the sample directory to " + opts.buckets[0].name

# test --follow-symlinks
os.mkdir("%s/sym_test_dir" % tdir)
f = open("%s/sym_test_dir/a" % tdir, 'w')
f.write("a")
f.close()
os.symlink("./a", "%s/sym_test_dir/b" % tdir)
obsync_check("file://%s/sym_test_dir" % tdir,
    "file://%s/sym_test_dir2" % tdir,
    ["-c", "--follow-symlinks"])
os.unlink("%s/sym_test_dir2/a" % tdir)
f = open("%s/sym_test_dir2/b" % tdir, 'r')
whole_file = f.read()
f.close()
if (whole_file != "a"):
    raise RuntimeError("error! unexpected value in %s/sym_test_dir2/b" % tdir)
if (opts.verbose):
    print "successfully copied a directory with --follow-symlinks"

# empty out bucket[0]
obsync_check("file://%s/empty1" % tdir, opts.buckets[0],
            ["--delete-after"])

def rmbucket(bucket):
    conn = get_s3_connection(bucket.conf)
    bucket = conn.get_bucket(bucket.name)
    bucket.delete()

# rgw target tests
if len(opts.pools) > 0:
    rmbucket(opts.buckets[0])
    os.mkdir("%s/rgw1" % tdir)
    f = open("%s/rgw1/aaa" % tdir, 'w')
    f.write("aaa")
    f.close()
    f = open("%s/rgw1/crazy" % tdir, 'w')
    for i in range(0, 1000):
        f.write("some crazy text\n")
    f.close()
    f = open("%s/rgw1/brick" % tdir, 'w')
    f.write("br\0ick")
    f.close()
    # we should fail here, because we didn't supply -c, and the bucket
    # doesn't exist
    ret = obsync("%s/rgw1" % tdir, opts.pools[0], [])
    if (ret == 0):
        raise RuntimeError("expected this call to obsync to fail, because \
    we didn't supply -c. But it succeeded.")
    if (opts.verbose):
        print "first rgw: call failed as expected."
    print "testing rgw target with --create"
    obsync_check("%s/rgw1" % tdir, opts.pools[0], ["--create"])
    obsync_check(opts.pools[0], "%s/rgw2" % tdir, ["-c"])
    compare_directories("%s/rgw1" % tdir, "%s/rgw2" % tdir, compare_xattr = False)
    # some tests with xattrs
    xattr_sync("%s/rgw2/brick" % tdir, { CONTENT_TYPE_XATTR : "bricks" })
    xattr_sync("%s/rgw2/crazy" % tdir, { CONTENT_TYPE_XATTR : "text/plain",
            "rados.meta.froobs" : "quux", "rados.meta.gaz" : "luxx" } )
    obsync_check("%s/rgw2" % tdir, opts.pools[0], [])
    obsync_check(opts.pools[0], "%s/rgw3" % tdir, ["-c"])
    compare_directories("%s/rgw2" % tdir, "%s/rgw3" % tdir, compare_xattr = True)

# test escaping
os.mkdir("%s/escape_dir1" % tdir)
f = open("%s/escape_dir1/$$foo" % tdir, 'w')
f.write("$foo")
f.close()
f = open("%s/escape_dir1/blarg$slash" % tdir, 'w')
f.write("blarg/")
f.close()
obsync_check("file://%s/escape_dir1" % tdir, opts.buckets[0], ["-d"])
obsync_check(opts.buckets[0], "file://%s/escape_dir2" % tdir, ["-c"])
compare_directories("%s/escape_dir1" % tdir, "%s/escape_dir2" % tdir,
                    compare_xattr = False)

# some more tests with --no-preserve-acls
obsync_check("file://%s/dir1" % tdir, opts.buckets[0],
            ["--no-preserve-acls"])
obsync_check(opts.buckets[0], "file://%s/dir1_no-preserve-acls" % tdir,
            ["--no-preserve-acls", "-c"])

if (opts.verbose):
    print "copying dir1 to " + opts.buckets[0].name
obsync_check("file://%s/dir1" % tdir, opts.buckets[0], ["--delete-before"])
if (opts.verbose):
    print "copying " + opts.buckets[0].name + " to " + opts.buckets[1].name
obsync_check(opts.buckets[0], opts.buckets[1], ["-c", "--delete-after"] + \
            xuser(sconfig, "main", "alt"))
if (opts.verbose):
    print "copying bucket1 to dir4..."
obsync_check(opts.buckets[1], "file://%s/dir4" % tdir, ["-c"])
compare_directories("%s/dir1" % tdir, "%s/dir4" % tdir, compare_xattr = False)
if (opts.verbose):
    print "successfully copied " + opts.buckets[0].name + " to " + \
        opts.buckets[1].name
if (opts.verbose):
    print "adding another object to " + opts.buckets[1].name
os.mkdir("%s/small" % tdir)
f = open("%s/small/new_thing" % tdir, 'w')
f.write("a new object!!!")
f.close()
obsync_check("%s/small" % tdir, opts.buckets[1], [])
obsync_check(opts.buckets[0], "%s/bucket0_out" % tdir, ["-c"])
obsync_check(opts.buckets[1], "%s/bucket1_out" % tdir, ["-c"])
bucket0_count = count_obj_in_dir("/%s/bucket0_out" % tdir)
bucket1_count = count_obj_in_dir("/%s/bucket1_out" % tdir)
if (bucket1_count != bucket0_count + 1):
    raise RuntimeError("error! expected one extra object in bucket1! \
bucket0_count=%d, bucket1_count=%d" % (bucket0_count, bucket1_count))
if (opts.verbose):
    print "copying bucket0 to bucket1..."
obsync_check(opts.buckets[0], opts.buckets[1], ["-c", "--delete-before"] + \
        xuser(sconfig, "main", "alt"))
obsync_check(opts.buckets[0], "%s/bucket0_out" % tdir, ["--delete-after"])
obsync_check(opts.buckets[1], "%s/bucket1_out" % tdir, ["--delete-after"])
bucket0_count = count_obj_in_dir("/%s/bucket0_out" % tdir)
bucket1_count = count_obj_in_dir("/%s/bucket1_out" % tdir)
if (bucket0_count != bucket1_count):
    raise RuntimeError("error! expected the same number of objects \
in bucket0 and bucket1. bucket0_count=%d, bucket1_count=%d" \
% (bucket0_count, bucket1_count))

# Check that content-type is preserved
os.mkdir("%s/content_type_test" % tdir)
hamfile = "%s/content_type_test/hammy_thing" % tdir
eggfile = "%s/content_type_test/eggy_thing" % tdir
f = open(hamfile, 'w')
f.write("SPAM SPAM SPAM")
f.close()
xattr_sync(hamfile, { CONTENT_TYPE_XATTR : "Ham" })
assert_xattr(hamfile, { CONTENT_TYPE_XATTR : "Ham" })
f = open(eggfile, 'w')
f.write("eggs")
f.close()
xattr_sync(eggfile, { CONTENT_TYPE_XATTR : "Eggs" })
obsync_check("%s/content_type_test" % tdir, opts.buckets[0], ["--delete-after"])
obsync_check(opts.buckets[0], "%s/content_type_test2" % tdir, ["-c"])
assert_xattr("%s/content_type_test2/hammy_thing" % tdir,
        { CONTENT_TYPE_XATTR : "Ham" })
assert_xattr("%s/content_type_test2/eggy_thing" % tdir,
        { CONTENT_TYPE_XATTR : "Eggs" })

# Check that user-defined metadata is preserved
os.mkdir("%s/user_defined_md" % tdir)
sporkfile = "%s/user_defined_md/spork" % tdir
f = open(sporkfile, 'w')
f.write("SPAM SPAM SPAM")
f.close()
xattr_sync(sporkfile,
    { "rados.meta.tines" : "3", "rados.content_type" : "application/octet-stream" })
obsync_check("%s/user_defined_md" % tdir, opts.buckets[0], ["--delete-after"])
obsync_check(opts.buckets[0], "%s/user_defined_md2" % tdir, ["-c"])
assert_xattr("%s/user_defined_md2/spork" % tdir,
    { "rados.meta.tines" : "3", "rados.content_type" : "application/octet-stream" })

# more rgw target tests
if len(opts.pools) > 0:
    # synchronize from an s3 bucket to an bucket directly
    obsync_check(opts.buckets[1], opts.pools[0], ["--delete-after"])
    obsync_check(opts.pools[0], "%s/rgw4" % tdir, ["--delete-after", "-c"])
    obsync_check(opts.buckets[1], "%s/rgw5" % tdir, ["--delete-after", "-c"])
    compare_directories("%s/rgw4" % tdir, "%s/rgw5" % tdir, compare_xattr = True)
    # restore proper ownership to the bucket
    obsync_check(opts.buckets[1], opts.pools[0], ["--delete-after"] + \
            xuser(sconfig, "alt", "main"))

sys.exit(0)