File: test_wrapfs.py

package info (click to toggle)
python-fs 2.4.16-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,944 kB
  • sloc: python: 13,048; makefile: 226; sh: 3
file content (29 lines) | stat: -rw-r--r-- 853 bytes parent folder | download | duplicates (2)
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
from __future__ import unicode_literals

import unittest
from six import text_type

from fs import wrapfs
from fs.opener import open_fs


class WrappedFS(wrapfs.WrapFS):
    wrap_name = "test"


class TestWrapFS(unittest.TestCase):
    def setUp(self):
        self.wrapped_fs = open_fs("mem://")
        self.fs = WrappedFS(self.wrapped_fs)

    def test_encode(self):
        self.assertEqual((self.wrapped_fs, "foo"), self.fs.delegate_path("foo"))
        self.assertEqual((self.wrapped_fs, "bar"), self.fs.delegate_path("bar"))
        self.assertIs(self.wrapped_fs, self.fs.delegate_fs())

    def test_repr(self):
        self.assertEqual(repr(self.fs), "WrappedFS(MemoryFS())")

    def test_str(self):
        self.assertEqual(text_type(self.fs), "<memfs>(test)")
        self.assertEqual(text_type(wrapfs.WrapFS(open_fs("mem://"))), "<memfs>")