Refactor filesystem abstraction to and use it in production
The filesystem abstraction needs to be known to production to avoid
too much code duplication. So far we have used functions in
`PackageManager` that the `TestPackageManager overrides.

With this change, we can remove them, and instead just pass an interface.
On the long run, we should be able to do dependency injection simply
by passing a different object (or overriding) the `Dub` class.

An initial attempt made `FSEntry` inherit from the `Filesystem` interface,
however that attempt was doomed as it conflates two different abstractions:
`FSEntry` is a "node" in the filesystem, which we want to act on in one
of multiple ways: move to another node, or take an action. On the other hand,
`Filesystem` is a more generic interface and takes a path as most of its
function's argument. A `path` and an `FSEntry` have a lot of overlap
(they are a reference to a node in a tree) and the resulting interface
would have been very clunky.
1 parent 21b0c8f commit ee1b000e53777c37996daeff8cfbc739965cad0b
@Mathias Lang Mathias Lang authored on 17 Jun
Showing 10 changed files
View
build-files.txt
View
source/dub/internal/io/filesystem.d 0 → 100644
View
source/dub/internal/io/mockfs.d 0 → 100644
View
source/dub/internal/io/realfs.d 0 → 100644
View
source/dub/packagemanager.d
View
source/dub/test/base.d
View
source/dub/test/dependencies.d
View
source/dub/test/other.d
View
source/dub/test/selections_from_parent_dir.d
View
source/dub/test/subpackages.d