mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 23:26:43 +00:00
test for bug #534, unicode filenames
This test assure that uploading a file whose name contains unicode character doesn't prevent further uploads in the same directory.
This commit is contained in:
parent
c1f639d230
commit
5c0c5bfc81
@ -1,3 +1,4 @@
|
||||
# coding=utf-8
|
||||
|
||||
import os.path
|
||||
from twisted.trial import unittest
|
||||
@ -544,3 +545,23 @@ class Put(SystemTestMixin, CLITestMixin, unittest.TestCase):
|
||||
self.do_cli("get", "tahoe:uploaded.txt"))
|
||||
d.addCallback(lambda (out,err): self.failUnlessEqual(out, DATA2))
|
||||
return d
|
||||
|
||||
class Cp(SystemTestMixin, CLITestMixin, unittest.TestCase):
|
||||
def test_unicode_filename(self):
|
||||
self.basedir = os.path.dirname(self.mktemp())
|
||||
|
||||
fn1 = os.path.join(self.basedir, u"Ärtonwall")
|
||||
open(fn1, "wb").write("unicode file content")
|
||||
|
||||
fn2 = os.path.join(self.basedir, u"Metallica")
|
||||
open(fn2, "wb").write("non-unicode file content")
|
||||
|
||||
# Bug #534
|
||||
# Assure that uploading a file whose name contains unicode character doesn't
|
||||
# prevent further uploads in the same directory
|
||||
d = self.set_up_nodes()
|
||||
d.addCallback(lambda res: self.do_cli("create-alias", "tahoe"))
|
||||
d.addCallback(lambda res: self.do_cli("cp", fn1, "tahoe:"))
|
||||
d.addCallback(lambda res: self.do_cli("cp", fn2, "tahoe:"))
|
||||
|
||||
return d
|
||||
|
Loading…
Reference in New Issue
Block a user