-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1560 from sol/update-machine-state-on-disconnect
Update machine state on unhandled exceptions
- Loading branch information
Showing
3 changed files
with
23 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update the tray icon to "disconnected" when a serial-over-USB machine is unplugged. |
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,14 @@ | ||
from unittest.mock import Mock | ||
from plover.machine.base import ThreadedStenotypeBase | ||
|
||
class MyMachine(ThreadedStenotypeBase): | ||
def run(self): | ||
raise "some unexpected error" | ||
|
||
def test_update_machine_staten_on_unhandled_exception(): | ||
machine = MyMachine() | ||
callback = Mock() | ||
machine.add_state_callback(callback) | ||
machine.start_capture() | ||
machine.join() | ||
callback.assert_called_with('disconnected') |