-
Notifications
You must be signed in to change notification settings - Fork 88
DISPATCH-2029: Added a base class and moved some of the http1 adaptor… #1097
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
Conversation
… tests to this base class. Also introduced a new test that executes http1 tests over tcp
Codecov Report
@@ Coverage Diff @@
## main #1097 +/- ##
==========================================
+ Coverage 82.29% 84.28% +1.99%
==========================================
Files 111 111
Lines 27540 27540
==========================================
+ Hits 22663 23213 +550
+ Misses 4877 4327 -550
Continue to review full report at Codecov.
|
| client.close() | ||
|
|
||
|
|
||
| class Http1OneRouterTestBase(TestCase): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this broken up into two classes: Http1OneRouterTestBase and CommonHttp1AdaptorOneRouterTest? Since they must be inherited from together why not just combine them into a single class?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CommonHttp1AdaptorOneRouterTest contains only the tests, it does not have any setup information. In the future, this separation enables the the battery of tests in CommonHttp1AdaptorOneRouterTest to be run against a totally different setup
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm good with this once Jiri's request has been added.
… tests to this base class. Also introduced a new test that executes http1 tests over tcp