dom/bindings/parser/tests/test_error_lineno.py

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 import WebIDL
     3 def WebIDLTest(parser, harness):
     4     # Check that error messages put the '^' in the right place.
     6     threw = False
     7     input = """\
     8 // This is a comment.
     9 interface Foo {
    10 };
    12 /* This is also a comment. */
    13 interface ?"""
    14     try:
    15         parser.parse(input)
    16         results = parser.finish()
    17     except WebIDL.WebIDLError, e:
    18         threw = True
    19         lines = str(e).split('\n')
    21         harness.check(len(lines), 3, 'Expected number of lines in error message')
    22         harness.ok(lines[0].endswith('line 6:10'), 'First line of error should end with "line 6:10", but was "%s".' % lines[0])
    23         harness.check(lines[1], 'interface ?', 'Second line of error message is the line which caused the error.')
    24         harness.check(lines[2], ' ' * (len('interface ?') - 1) + '^',
    25                       'Correct column pointer in error message.')
    27     harness.ok(threw, "Should have thrown.")

mercurial