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

MockFile.Delete does not throw exception when file does not exist #284

Closed
borismod opened this issue Apr 9, 2018 · 6 comments
Closed

MockFile.Delete does not throw exception when file does not exist #284

borismod opened this issue Apr 9, 2018 · 6 comments
Labels
state: in work Issues that are currently worked on type: bug Issues that describe misbehaving functionality

Comments

@borismod
Copy link
Contributor

borismod commented Apr 9, 2018

Unit test to reproduce:

var fs = new MockFileSystem();
fs.File.Delete(@"c:\someFilePath.txt");

The above code does not throw any exception, while the real File.Delete from System IO will throw

@jpreese jpreese added the type: bug Issues that describe misbehaving functionality label Jul 6, 2018
@jpreese jpreese changed the title MockFile.Delete does not throw exteption when file does not exist MockFile.Delete does not throw exception when file does not exist Jul 6, 2018
@jpreese
Copy link
Member

jpreese commented Jul 7, 2018

For clarity, File.Delete from System.IO will only throw if the directory does not exist. If it tries to delete a file that does not exist, it works just fine. The former throws a DirectoryNotFoundException.

We should implement this for parity with System.IO

@jpreese
Copy link
Member

jpreese commented Jul 9, 2018

Additional clarification.. it looks like this will break some old tests as well. We'll need to add a directory in the failing tests.

peter-sereda pushed a commit to peter-sereda/System.IO.Abstractions that referenced this issue Oct 22, 2018
@peter-sereda
Copy link
Contributor

Hello @jpreese, @fgreinacher . I have tried to fix the issue in my repository fork. Could you please check the result and tell me if something needs to be corrected?
peter-sereda#1

@fgreinacher
Copy link
Contributor

Hey @peter-sereda - thanks for taking care of this. Please open a PR against this repository so that we get test results.

@peter-sereda
Copy link
Contributor

peter-sereda commented Oct 25, 2018

@fgreinacher , done.
#387

@fgreinacher fgreinacher added the state: in work Issues that are currently worked on label Oct 25, 2018
peter-sereda pushed a commit to peter-sereda/System.IO.Abstractions that referenced this issue Oct 30, 2018
@borismod
Copy link
Contributor Author

borismod commented Nov 5, 2018

@peter-sereda @fgreinacher @jpreese thanks a lot guys for your contribution. Really appreciated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
state: in work Issues that are currently worked on type: bug Issues that describe misbehaving functionality
Projects
None yet
Development

No branches or pull requests

4 participants