Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pyfakefs case-sensitive rename behavior different from OS on Windows #160

Closed
CausticYarn opened this issue Mar 3, 2017 · 1 comment · Fixed by #161
Closed

Pyfakefs case-sensitive rename behavior different from OS on Windows #160

CausticYarn opened this issue Mar 3, 2017 · 1 comment · Fixed by #161
Labels

Comments

@CausticYarn
Copy link

On Windows 7, renaming a file to the same name with a different case succeeds, but on pyfakefs it fails with the exception: WindowsError: [Error 17] Fake filesystem object: can not rename to existing file: '\FOO'

See reproduction below:

import pyfakefs.fake_filesystem

import os

with open('foo', 'w') as f:
    pass

os.rename('foo', 'foo')

#success
os.rename('foo', 'FOO')

with open('bar', 'w') as f:
    pass

try:
    os.rename('bar', 'foo')
except WindowsError as e:
    pass

os.remove('foo')

fake_filesystem = pyfakefs.fake_filesystem.FakeFilesystem()
fake_os = pyfakefs.fake_filesystem.FakeOsModule(fake_filesystem)

fake_filesystem.CreateFile('foo')
fake_os.rename('foo', 'foo')

#fails WindowsError: [Error 17] Fake filesystem object: can not rename to existing file: '\\FOO'
fake_os.rename('foo', 'FOO')
mrbean-bremen added a commit to mrbean-bremen/pyfakefs that referenced this issue Mar 4, 2017
@mrbean-bremen
Copy link
Member

Good finding, thanks! I actually didn't know such a rename was possible,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants