Add dependency checks for TFS.
Review Request #12554 — Created Aug. 19, 2022 and submitted
This updates
TFSClient
to add formal support for dependency checks.
Unlike most other SCM updates, this one's a bit more complicated due to
the three wrapper classes that can be chosen.The wrapper classes now all inherit from a base class, which defines the
interface for wrappers. They then override their own
check_dependencies()
, performing the checks that used to be done in
TFSClient
.
TFSClient
has been updated to check each wrapper in order, selecting
one that passes dependency checks, or failing with a hopefully helpful
error listing broad dependencies.That has the added benefit of now allowing a fallback to TEE when the TF
Helper is installed but Java is not.The
tf_wrapper
attribute is now a property, which enforces a
dependency check, emitting a warning if dependencies haven't already
been checked viasetup()
orhas_dependencies()
. All methods on
TFSClient
go through this already, ensuring this is used.There weren't any TFS unit tests before. This change adds the first
ones, which are all focused on the variety of dependency checks.
Unit tests pass on Python 3.7-3.11.
Summary | ID |
---|---|
a1f884cab7f306b5c6029f9d283eaf2600fd5c06 |
Description | From | Last Updated |
---|---|---|
I think it would be less confusing to do: for ...: wrapper = wrapper_cls(**wrapper_kwargs) try: wrapper.check_dependencies() found = True break … |
david | |
'os' imported but unused Column: 1 Error code: F401 |
reviewbot | |
'rbtools.clients.errors.TooManyRevisionsError' imported but unused Column: 1 Error code: F401 |
reviewbot | |
'rbtools.clients.errors.InvalidRevisionSpecError' imported but unused Column: 1 Error code: F401 |
reviewbot |
- Change Summary:
-
- Fixed the wrapper dependency check loop to be structured a lot nicer.
- Fixed bad assumptions on the return string type from executing
tf.exe
, and improved testing around this.
- Commits:
-
Summary ID 4924f37823cf2e9127674df12e8ebe7f876d1759 fa64eb92062ae7e4c1df387d94e9c4617849d0d3 - Diff:
-
Revision 2 (+1468 -142)
Checks run (1 failed, 1 succeeded)
flake8
- Change Summary:
-
Removed unused imports accidentally scheduled for commit.
- Commits:
-
Summary ID fa64eb92062ae7e4c1df387d94e9c4617849d0d3 a1f884cab7f306b5c6029f9d283eaf2600fd5c06 - Diff:
-
Revision 3 (+1462 -142)