write test for anti-Ubuntu-crash-reporter exception-catching code #1746
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1746
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hey,
I just noticed that 'tahoe put' (without any parameters, in an unconfigured state) might throw an IOError (No such file or directory: u'~/.tahoe/node.url').
While this itself is a little unfriendly towards user, it is also causing the Ubuntu 'Crash report' application the show up. The 'crash report' appears to be a new features in Ubuntu 12.04. Apparently, it's sitting in the background looking for failures/exceptions and nags people who know what they do :P
This may lead to bad statistics at Ubuntu about tahoe's stability. Also, it's pretty annoying. :)
(See attachment)
Attachment 50.png (24353 bytes) added
ubuntu crash report (collapsed)
I have verified this with a fresh Ubuntu installation. The reporter is called "apport" and according to /etc/default/apport it is enabled by default now.
Grr, silly Ubuntu devs making our lives harder for no good reason.
"If you notice further problems, try restarting the computer."
What is this, Windows? As if restarting will help for 99% of conditions this detects :-(
See files in /etc/python*/sitecustomize.py:
I traced it back into the apport-package, ubuntu provides.
Installing the hook does the following
This means that your python environment is modified like this:
A dirty, fix for this ticket could be (untested!)
Thanks ChosenOne for investigating this.
Knowing that it is implemented by
sys.excepthook
, we can easily prevent that from triggering, by catching exceptions at the entry point to the CLI.Attachment fix-1746.darcs.patch (108289 bytes) added
Catch exceptions from CLI in order to prevent the Ubuntu crash monolog from triggering. refs #1746
ChosenOne, please test this patch against trunk.
The exception remains, but apport is not started. Patch works.
I'm +1 for this for CLI commands like "tahoe put" and friends (although maybe we should just rewrite those commands to never report gateway failures or bad arguments as exceptions, always emitting a nicer error message).
I'm less confident about doing this for "tahoe start", if only for the case where we eventually have a double-clickable "launch tahoe" icon, and if the only way that an exception during startup can be noticed is by a GUI apport hook that notices the exception and reports it in a dialog (monolog) box.
I guess at a more fundamental level, Ubuntu (via apport) is telling us that exceptions are not an acceptable way to deliver "user made a mistake" error messages to users, which I can't entirely disagree with (although it's still pretty annoying).
If we wanted to trap uncaught errors and display a modal dialog, we should do that. But I can't think why we would want it to look anything like the Ubuntu one, and I dislike intensely the idea that the error reporting behaviour of our code should be suddenly changed by distribution developers who obviously have no clue about usable error reporting should work.
In any case, this patch doesn't change the (visible) behaviour of
tahoe start
from what it does without apport.In general, it seems a good rule is that python exceptions from CLI commands should only hit top-level and be user-perceptible if there is a code bug. Python backtraces are not really so different from "segementation violation -- core dumped".
I agree with gdt.
Once we've fixed all such places in our code, so that we never intentionally display a Python backtrace to a user, then the behavior of the apport hook may not be inappropriate.
Any case where our code displays a Python backtrace to a user should be ticketed with the
error
keyword:https://tahoe-lafs.org/trac/tahoe-lafs/query?status=!closed&keywords=~error&order=priority
In changeset:2ee1bc7148d45719:
This is fixed; please open another ticket or tickets for any inappropriate backtraces.
Reopening because it needs a test.
updating title, priority
IOError and verbose exceptions trigger Ubuntu crash reporterto write test for anti-Ubuntu-crash-reporter exception-catching codeoh, also, ChosenOne's work is done here, assigning back to davidsarah for the test-writing
In changeset:5889/cloud-backend:
Please review: https://github.com/davidsarah/tahoe-lafs/commit/64e326e211d4b08e543feb98c45d382dce519fab
I've reviewed this patch and its test. The patch catches all exceptions in the CLI by having a try/catch around the 'run' function for all CLI commands. The test correctly distinguishes between when this exception is caught rather than propagated. I haven't directly checked that this solves the ubuntu app reporting problem, since I don't know how to build the ubuntu version. But ChosenOne's analysis about how catching the exception solves the problem makes sense.
Fixed in 52a583ce.