Selaa lähdekoodia

Add 01_refs_unicode: Support running on platforms that can't encode certain characters.

Jelmer Vernooij 9 vuotta sitten
vanhempi
commit
ede032f850
4 muutettua tiedostoa jossa 17 lisäystä ja 1 poistoa
  1. 2 0
      debian/changelog
  2. 13 0
      debian/patches/01_refs_unicode
  3. 1 0
      debian/patches/series
  4. 1 1
      dulwich/tests/test_refs.py

+ 2 - 0
debian/changelog

@@ -5,6 +5,8 @@ dulwich (0.11.1-1) UNRELEASED; urgency=medium
    + Fixes FTBFS on some architectures. Closes: #798565
   * debian/copyright: Fix license header to be unique.
   * debian/watch: Fix watch URL to use pypi redirector service.
+  * Add 01_refs_unicode: Support running on platforms that can't encode
+    certain characters.
 
  -- Jelmer Vernooij <jelmer@debian.org>  Sun, 13 Sep 2015 18:15:59 +0000
 

+ 13 - 0
debian/patches/01_refs_unicode

@@ -0,0 +1,13 @@
+diff --git a/dulwich/tests/test_refs.py b/dulwich/tests/test_refs.py
+index 3a645c6..61547a1 100644
+--- a/dulwich/tests/test_refs.py
++++ b/dulwich/tests/test_refs.py
+@@ -441,7 +441,7 @@ class DiskRefsContainerTests(RefsContainerTests, TestCase):
+     def test_non_ascii(self):
+         try:
+             encoded_ref = u'refs/tags/schön'.encode(sys.getfilesystemencoding())
+-        except UnicodeDecodeError:
++        except UnicodeEncodeError:
+             raise SkipTest("filesystem encoding doesn't support special character")
+         p = os.path.join(self._repo.path, 'refs', 'tags', 'schön')
+         with open(p, 'w') as f:

+ 1 - 0
debian/patches/series

@@ -0,0 +1 @@
+01_refs_unicode

+ 1 - 1
dulwich/tests/test_refs.py

@@ -441,7 +441,7 @@ class DiskRefsContainerTests(RefsContainerTests, TestCase):
     def test_non_ascii(self):
         try:
             encoded_ref = u'refs/tags/schön'.encode(sys.getfilesystemencoding())
-        except UnicodeDecodeError:
+        except UnicodeEncodeError:
             raise SkipTest("filesystem encoding doesn't support special character")
         p = os.path.join(self._repo.path, 'refs', 'tags', 'schön')
         with open(p, 'w') as f: