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

Spec for fake os.strerror() #202

Closed
jmcgeheeiv opened this issue Jun 11, 2017 · 3 comments
Closed

Spec for fake os.strerror() #202

jmcgeheeiv opened this issue Jun 11, 2017 · 3 comments

Comments

@jmcgeheeiv
Copy link
Contributor

jmcgeheeiv commented Jun 11, 2017

As pyfakefs users know, it is very useful for errors and exceptions to mention "fake file system".

While fixing a bug in fakefs related to exceptions, I noticed a nice way to add "fake file system" to the canonical error messages returned by os.strerror().

In fake os, define os.strerror() as something like this:

def strerror(errno):
    return '%s in the fake file system' % os.strerror(errno)

where the os.strerror() used within the function is the real os.strerror().

The English grammar of this message should be correct in all cases. Meanwhile, we can guarantee that startswith() can be used to detect the error message for both the real and fake file systems:

message = os.strerror(errno.ENOENT)
assert message.startswith('No such file or directory')

Then, all occurrences of literal string messages within pyfakefs should be replaced with the fake os.strerror().

@jmcgeheeiv jmcgeheeiv changed the title Spec for fake os. Spec for fake os.strerror() Jun 11, 2017
@mrbean-bremen mrbean-bremen added this to the v3.4 milestone Jan 3, 2018
@mrbean-bremen
Copy link
Member

This is a very sensible thing to do - setting 3.4 milestone.
Note, however, that checking for error messages is not a good idea because of localized error messages on non-English systems.

mrbean-bremen added a commit to mrbean-bremen/pyfakefs that referenced this issue Jan 19, 2018
mrbean-bremen added a commit to mrbean-bremen/pyfakefs that referenced this issue Jan 20, 2018
mrbean-bremen added a commit to mrbean-bremen/pyfakefs that referenced this issue Jan 20, 2018
@mrbean-bremen
Copy link
Member

mrbean-bremen commented Jan 20, 2018

@jmcgeheeiv - please check if this is what you had in mind.
I actually wanted to make a PR for this, but instead rebased and pushed to master, as I'm used to with the TSTL fixes - fingers faster than brain...

@mrbean-bremen
Copy link
Member

Fixed by this commit, please reopen if something is missing.

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

No branches or pull requests

2 participants