Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

626
Views
How do I patch the `pathlib.Path.exists()` method?

I want to patch the exists() method of a pathlib.Path object for a unit test but I have problems getting this to work.

What I am trying to do is this:

from unittest.mock import patch
from pathlib import Path

def test_move_basic():
    p = Path('~/test.py')
    with patch.object(p, 'exists') as mock_exists:
        mock_exists.return_value = True

But it fails with:

AttributeError: 'PosixPath' object attribute 'exists' is read-only.

Any ideas?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You need to patch the class, not the instance. It is enough to patch the method on the Path class, as it defines the exists method for the whole of the pathlib library (PosixPath, WindowsPath, PurePosixPath and PureWindowsPath all inherit the implementation):

>>> from unittest.mock import patch
>>> from pathlib import Path
>>> p = Path('~/test.py')
>>> with patch.object(Path, 'exists') as mock_exists:
...     mock_exists.return_value = True
...     p.exists()
...
True
>>> with patch.object(Path, 'exists') as mock_exists:
...     mock_exists.return_value = False
...     p.exists()
...
False
>>> with patch.object(Path, 'exists') as mock_exists:
...     mock_exists.return_value = 'Anything you like, actually'
...     p.exists()
...
'Anything you like, actually'

The pathlib classes use __slots__ to keep their memory footprint low, which has the side-effect of their instances not supporting arbitrary attribute assignment.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!