dom/bindings/parser/tests/test_error_lineno.py

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     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