blob: f48ce2cc3ef2508d315de325060c059d4ad596a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/env python
# coding=UTF-8
import mozunit
import pytest
@pytest.fixture
def test_log():
return [
"01-30 20:15:41.937 E/GeckoAppShell( 1703): >>> "
'REPORTING UNCAUGHT EXCEPTION FROM THREAD 9 ("GeckoBackgroundThread")',
"01-30 20:15:41.937 E/GeckoAppShell( 1703): java.lang.NullPointerException",
"01-30 20:15:41.937 E/GeckoAppShell( 1703):"
" at org.mozilla.gecko.GeckoApp$21.run(GeckoApp.java:1833)",
"01-30 20:15:41.937 E/GeckoAppShell( 1703):"
" at android.os.Handler.handleCallback(Handler.java:587)",
]
def test_uncaught_exception(check_for_java_exception, test_log):
"""Test for an exception which should be caught."""
assert 1 == check_for_java_exception(test_log)
def test_truncated_exception(check_for_java_exception, test_log):
"""Test for an exception which should be caught which was truncated."""
truncated_log = list(test_log)
truncated_log[0], truncated_log[1] = truncated_log[1], truncated_log[0]
assert 1 == check_for_java_exception(truncated_log)
def test_unchecked_exception(check_for_java_exception, test_log):
"""Test for an exception which should not be caught."""
passable_log = list(test_log)
passable_log[0] = (
"01-30 20:15:41.937 E/GeckoAppShell( 1703):"
' >>> NOT-SO-BAD EXCEPTION FROM THREAD 9 ("GeckoBackgroundThread")'
)
assert 0 == check_for_java_exception(passable_log)
def test_test_name_unicode(check_for_java_exception, test_log):
"""Test that check_for_crashes can handle unicode in dump_directory."""
assert 1 == check_for_java_exception(test_log, test_name=u"🍪", quiet=False)
if __name__ == "__main__":
mozunit.main()
|