예제 #1
0
    def test_exists(self, sftp_conn, sftp_mock_dir):
        """Tests the `exists` method."""

        with SftpHook("sftp_default") as hook:
            assert hook.exists(posixpath.join(sftp_mock_dir, "subdir"))
            assert hook.exists(posixpath.join(sftp_mock_dir, "test.txt"))
            assert not hook.exists(posixpath.join(sftp_mock_dir, "non-existing.txt"))
예제 #2
0
    def test_walk(self, sftp_conn, sftp_mock_dir, mock_data_dir):
        """Tests the `walk` method."""

        with SftpHook("sftp_default") as hook:
            entries = list(hook.walk(sftp_mock_dir))

        pytest.helpers.assert_walk_equal(entries, os.walk(mock_data_dir))
예제 #3
0
    def test_open_read(self, sftp_conn, sftp_mock_dir):
        """Tests reading of a file using the `open` method."""

        file_path = posixpath.join(sftp_mock_dir, "test.txt")

        with SftpHook("sftp_default") as hook:
            with hook.open(file_path) as file_:
                content = file_.read()

        assert content == b"Test file\n"
예제 #4
0
    def test_makedirs(self, sftp_conn, sftp_client, tmpdir):
        """Tests the `mkdir` method with mode parameter."""

        dir_path = posixpath.join(str(tmpdir), "some", "nested", "dir")

        with SftpHook("sftp_default") as hook:
            hook.makedirs(dir_path, mode=0o750)

        assert sftp_client.exists(dir_path)
        assert pysftp.st_mode_to_int(sftp_client.stat(dir_path).st_mode) == 750
예제 #5
0
    def test_rmtree(self, sftp_conn, sftp_client, sftp_mock_dir):
        """Tests the `rmtree` method."""

        dir_path = posixpath.join(sftp_mock_dir, "subdir")
        assert sftp_client.exists(dir_path)

        with SftpHook("sftp_default") as hook:
            hook.rmtree(dir_path)

        assert not sftp_client.exists(dir_path)
예제 #6
0
    def test_rm(self, sftp_conn, sftp_client, sftp_mock_dir):
        """Tests the `rm` method."""

        file_path = posixpath.join(sftp_mock_dir, "test.txt")
        assert sftp_client.exists(file_path)

        with SftpHook("sftp_default") as hook:
            hook.rm(file_path)

        assert not sftp_client.exists(file_path)
예제 #7
0
    def test_open_write(self, sftp_conn, sftp_client, tmpdir):
        """Tests writing of a file using the `open` method."""

        file_path = posixpath.join(str(tmpdir), "test2.txt")
        assert not sftp_client.exists(file_path)

        with SftpHook("sftp_default") as hook:
            with hook.open(file_path, "wb") as file_:
                file_.write(b"Test file\n")

        assert sftp_client.exists(file_path)
예제 #8
0
    def test_makedirs_exists(self, sftp_conn, sftp_client, tmpdir):
        """Tests the `mkdir` method with exists_ok parameter."""

        dir_path = posixpath.join(str(tmpdir), "some", "nested", "dir")

        with SftpHook("sftp_default") as hook:
            hook.makedirs(dir_path, exist_ok=False)

            with pytest.raises(IOError):
                hook.makedirs(dir_path, exist_ok=False)

            hook.makedirs(dir_path, exist_ok=True)
예제 #9
0
    def test_mkdir_exists(self, sftp_conn, sftp_client, tmpdir):
        """Tests the `mkdir` method with the exists_ok parameter."""

        dir_path = posixpath.join(str(tmpdir), "subdir")
        assert not sftp_client.exists(dir_path)

        with SftpHook("sftp_default") as hook:
            hook.mkdir(dir_path, exist_ok=False)

            with pytest.raises(IOError):
                hook.mkdir(dir_path, exist_ok=False)

            hook.mkdir(dir_path, exist_ok=True)
예제 #10
0
    def test_listdir(self, sftp_conn, sftp_mock_dir, mock_data_dir):
        """Tests the `listdir` method."""

        with SftpHook("sftp_default") as hook:
            assert set(hook.listdir(sftp_mock_dir)) == set(os.listdir(mock_data_dir))
예제 #11
0
    def test_isdir(self, sftp_conn, sftp_mock_dir):
        """Tests the `isdir` method."""

        with SftpHook("sftp_default") as hook:
            assert hook.isdir(posixpath.join(sftp_mock_dir, "subdir"))
            assert not hook.isdir(posixpath.join(sftp_mock_dir, "test.txt"))