-
Notifications
You must be signed in to change notification settings - Fork 361
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
SchedulerBase polish, typings, test #361
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import unittest | ||
from datetime import timedelta | ||
|
||
from rx.internal.constants import DELTA_ZERO, UTC_ZERO | ||
from rx.concurrency.schedulerbase import SchedulerBase | ||
|
||
|
||
class TestSchedulerBase(unittest.TestCase): | ||
|
||
def test_base_to_seconds(self): | ||
val = SchedulerBase.to_seconds(0.0) | ||
assert val == 0.0 | ||
val = SchedulerBase.to_seconds(DELTA_ZERO) | ||
assert val == 0.0 | ||
val = SchedulerBase.to_seconds(UTC_ZERO) | ||
assert val == 0.0 | ||
|
||
def test_base_to_datetime(self): | ||
val = SchedulerBase.to_datetime(0.0) | ||
assert val == UTC_ZERO | ||
val = SchedulerBase.to_datetime(DELTA_ZERO) | ||
assert val == UTC_ZERO | ||
val = SchedulerBase.to_datetime(UTC_ZERO) | ||
assert val == UTC_ZERO | ||
|
||
def test_base_to_timedelta(self): | ||
val = SchedulerBase.to_timedelta(0.0) | ||
assert val == DELTA_ZERO | ||
val = SchedulerBase.to_timedelta(DELTA_ZERO) | ||
assert val == DELTA_ZERO | ||
val = SchedulerBase.to_timedelta(UTC_ZERO) | ||
assert val == DELTA_ZERO | ||
|
||
def test_base_normalize_float(self): | ||
val = SchedulerBase.normalize(-1.0) | ||
assert val == 0.0 | ||
val = SchedulerBase.normalize(0.0) | ||
assert val == 0.0 | ||
val = SchedulerBase.normalize(1.0) | ||
assert val == 1.0 | ||
|
||
def test_base_normalize_delta(self): | ||
DELTA_ONE = timedelta(seconds=1.0) | ||
val = SchedulerBase.normalize(-DELTA_ONE) | ||
assert val == DELTA_ZERO | ||
val = SchedulerBase.normalize(DELTA_ZERO) | ||
assert val == DELTA_ZERO | ||
val = SchedulerBase.normalize(DELTA_ONE) | ||
assert val == DELTA_ONE | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 just curious, is it worth to re-declare
schedule
,schedule_relative
&schedule_absolute
as abstract methods while these are already declared intyping.Scheduler
?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.
Yeah, maybe not strictly necessary... Although it might help to keep the generated docs and
help()
complete.I guess I included this mainly because of an idea I have that I’m playing around with, which would simplify all of the classes that extend
SchedulerBase
by putting some often-repeated logic (schedule methods being defined in terms of one another) in the base class.Having these here at this point would make that second step a lot easier / readable.
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.
cool 👍