Skip to content

Conversation

@HarrisonTCodes
Copy link
Contributor

@HarrisonTCodes HarrisonTCodes commented Oct 30, 2025

Closes #1356

This PR adds stateful handling of file streams opened with the FileShare.None option. If a file stream is attempted to be opened whilst another file stream of the same file path and FileShare.None is in use (that is to say, has been opened and not yet disposed), an IOException will be thrown and the creation of the second file stream will be disallowed.

@HarrisonTCodes
Copy link
Contributor Author

Struggling to initially parse these API tests, not least because I can't seem to reproduce exactly on my machine. However, I expect the cause of failure might be because of the addition of the share argument in the MockFileStream constructor in MockFileStream.cs.

If this is the case, presumably this could be fixed by having share be the final argument (and keeping its default value), so the old argument order, including omission of this new one, would still be valid? This may not be ideal or align with the real file stream implementation though?

Worth nothing none of the factory methods have had their arguments or argument order changed.

@vbreuss
Copy link
Member

vbreuss commented Oct 31, 2025

Struggling to initially parse these API tests, not least because I can't seem to reproduce exactly on my machine. However, I expect the cause of failure might be because of the addition of the share argument in the MockFileStream constructor in MockFileStream.cs.

If this is the case, presumably this could be fixed by having share be the final argument (and keeping its default value), so the old argument order, including omission of this new one, would still be valid? This may not be ideal or align with the real file stream implementation though?

Worth nothing none of the factory methods have had their arguments or argument order changed.

@HarrisonTCodes : You change the public API surface in this PR. The API tests fail, because you didn't make this explicit in the PR. In order for the tests to succeed, you have to run the TestableIO.System.IO.Abstractions.Api.Tests.ApiAcceptance.AcceptApiChanges test once. This will adapt the API files and you have to commit them as part of this PR:
image

This way accidental API changes can be detected in the review.

Note, that this test is explicit!

Copy link
Member

@vbreuss vbreuss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add test cases to verify the correct behavior?

@HarrisonTCodes
Copy link
Contributor Author

Ah, thanks @vbreuss, sorry I missed that. I will try to run these explicit tests locally!

Yes, if we are happy with the structure and changes made in this PR (which seems to be the case based on this request), I shall consider them accepted and add test cases :)

Copy link
Contributor

@hangy hangy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the idea!

It might be useful to check if symbolic links need additional handling

@HarrisonTCodes
Copy link
Contributor Author

I like the idea!

It might be useful to check if symbolic links need additional handling

@hangy thanks for raising this :)

Maybe this is worth more discussion, and a clarification of the scope of this PR. Currently it just targets the behavior shown in the original (linked) issue, ie creation of a MockFileStream with an explicit FileShare.None argument. This seems like handy behavior to have when explicitly passing this argument.

However, there might be appetite to improve the handling of FileShare behavior across more of the APIs, such as in MockFile.cs and implicit file-sharing that mimics the real filesystem with methods like FileInfo.OpenWrite() too.

More realistic handling of other FileShare members might also be worth thinking about in the future too for example. This PR currently just handles FileShare.None. But maybe there is scope to handle these other modes better, such as disallowing write operations on a file when a file stream is open with just FileShare.Read (which could be doable with the use of a ConcurrentDictionary now instead of the old HashSet, with the value representing the share type!)

Copy link
Member

@vbreuss vbreuss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really like this change. I would just make some things internal to enable future refactorings without breaking changes...

jeffkl pushed a commit to jeffkl/vstest-loggers that referenced this pull request Nov 24, 2025
Updated
[System.IO.Abstractions](https://github.com/TestableIO/System.IO.Abstractions)
from 22.0.16 to 22.1.0.

<details>
<summary>Release notes</summary>

_Sourced from [System.IO.Abstractions's
releases](https://github.com/TestableIO/System.IO.Abstractions/releases)._

## 22.1.0

## What's Changed
* chore(deps): update dependency awexpect to 2.24.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1341
* chore(deps): update dependency benchmarkdotnet to 0.15.3 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1342
* chore(deps): update dependency awexpect to 2.25.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1343
* chore(deps): update dependency benchmarkdotnet to 0.15.4 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1344
* chore(deps): update dependency awexpect to 2.26.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1345
* chore(deps): update dependency nunit3testadapter to 5.2.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1348
* docs: removed erroneous content from Testably section in README by
@​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1349
* fix: make invalid UNC path error message platform-specific by
@​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1351
* chore(deps): update dependency sharpcompress to 0.41.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1352
* chore(deps): update dependency publicapigenerator to 11.5.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1353
* chore(deps): update dependency system.text.json to 9.0.10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1354
* chore(deps): update dependency dotnet-sdk to v9.0.306 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1355
* chore(deps): update mcr.microsoft.com/vscode/devcontainers/dotnet
docker tag to v10 by @​renovate[bot] in
TestableIO/System.IO.Abstractions#1357
* chore(deps): update github artifact actions (major) by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1359
* chore(deps): update dependency nunit.analyzers to 4.11.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1362
* chore(deps): update dependency benchmarkdotnet to 0.15.5 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1364
* chore(deps): update dependency nunit.analyzers to 4.11.1 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1365
* chore(deps): update dependency nunit.analyzers to 4.11.2 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1366
* chore(deps): update dependency benchmarkdotnet to 0.15.6 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1367
* chore(deps): update dependency system.text.json to v10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1369
* chore(deps): update dependency dotnet-sdk to v9.0.307 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1368
* chore(deps): update dependency
testably.abstractions.filesystem.interface to v10 by @​renovate[bot] in
TestableIO/System.IO.Abstractions#1372
* feat: add support for .NET 10 by @​vbreuss in
TestableIO/System.IO.Abstractions#1370
* chore(deps): update dependency system.text.json to v10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1373
* chore(deps): update dependency benchmarkdotnet to 0.15.7 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1374
* chore(deps): update dependency publicapigenerator to 11.5.1 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1375
* chore(deps): update actions/checkout action to v6 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1376
* fix: file stream sharing by @​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1363
* chore(deps): update dependency awexpect to 2.29.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1358
* chore(deps): update dependency awexpect.testably to 0.13.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1360
* chore: bump aweXpect to v2.29.0 by @​vbreuss in
TestableIO/System.IO.Abstractions#1379

## New Contributors
* @​HarrisonTCodes made their first contribution in
TestableIO/System.IO.Abstractions#1349

**Full Changelog**:
TestableIO/System.IO.Abstractions@v22.0.16...v22.1.0

Commits viewable in [compare
view](TestableIO/System.IO.Abstractions@v22.0.16...v22.1.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.IO.Abstractions&package-manager=nuget&previous-version=22.0.16&new-version=22.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
jeffkl pushed a commit to jeffkl/vstest-loggers that referenced this pull request Nov 24, 2025
Updated
[System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions)
from 22.0.16 to 22.1.0.

<details>
<summary>Release notes</summary>

_Sourced from [System.IO.Abstractions.TestingHelpers's
releases](https://github.com/TestableIO/System.IO.Abstractions/releases)._

## 22.1.0

## What's Changed
* chore(deps): update dependency awexpect to 2.24.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1341
* chore(deps): update dependency benchmarkdotnet to 0.15.3 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1342
* chore(deps): update dependency awexpect to 2.25.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1343
* chore(deps): update dependency benchmarkdotnet to 0.15.4 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1344
* chore(deps): update dependency awexpect to 2.26.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1345
* chore(deps): update dependency nunit3testadapter to 5.2.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1348
* docs: removed erroneous content from Testably section in README by
@​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1349
* fix: make invalid UNC path error message platform-specific by
@​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1351
* chore(deps): update dependency sharpcompress to 0.41.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1352
* chore(deps): update dependency publicapigenerator to 11.5.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1353
* chore(deps): update dependency system.text.json to 9.0.10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1354
* chore(deps): update dependency dotnet-sdk to v9.0.306 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1355
* chore(deps): update mcr.microsoft.com/vscode/devcontainers/dotnet
docker tag to v10 by @​renovate[bot] in
TestableIO/System.IO.Abstractions#1357
* chore(deps): update github artifact actions (major) by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1359
* chore(deps): update dependency nunit.analyzers to 4.11.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1362
* chore(deps): update dependency benchmarkdotnet to 0.15.5 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1364
* chore(deps): update dependency nunit.analyzers to 4.11.1 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1365
* chore(deps): update dependency nunit.analyzers to 4.11.2 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1366
* chore(deps): update dependency benchmarkdotnet to 0.15.6 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1367
* chore(deps): update dependency system.text.json to v10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1369
* chore(deps): update dependency dotnet-sdk to v9.0.307 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1368
* chore(deps): update dependency
testably.abstractions.filesystem.interface to v10 by @​renovate[bot] in
TestableIO/System.IO.Abstractions#1372
* feat: add support for .NET 10 by @​vbreuss in
TestableIO/System.IO.Abstractions#1370
* chore(deps): update dependency system.text.json to v10 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1373
* chore(deps): update dependency benchmarkdotnet to 0.15.7 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1374
* chore(deps): update dependency publicapigenerator to 11.5.1 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1375
* chore(deps): update actions/checkout action to v6 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1376
* fix: file stream sharing by @​HarrisonTCodes in
TestableIO/System.IO.Abstractions#1363
* chore(deps): update dependency awexpect to 2.29.0 by @​renovate[bot]
in TestableIO/System.IO.Abstractions#1358
* chore(deps): update dependency awexpect.testably to 0.13.0 by
@​renovate[bot] in
TestableIO/System.IO.Abstractions#1360
* chore: bump aweXpect to v2.29.0 by @​vbreuss in
TestableIO/System.IO.Abstractions#1379

## New Contributors
* @​HarrisonTCodes made their first contribution in
TestableIO/System.IO.Abstractions#1349

**Full Changelog**:
TestableIO/System.IO.Abstractions@v22.0.16...v22.1.0

Commits viewable in [compare
view](TestableIO/System.IO.Abstractions@v22.0.16...v22.1.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.IO.Abstractions.TestingHelpers&package-manager=nuget&previous-version=22.0.16&new-version=22.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

state: released Issues that are released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

MockFileSystem incorrectly allows shared access to same file

3 participants