Ejemplo n.º 1
0
def test_nested_scope_definition():
    tree = parse_string("a.b.c = 2")
    assert tree.children[0].children[0].children[0].name == "c"

    tree = parse_string("a.b.c{d=1}")
    assert tree.children[0].children[0].children[0].name == "c"
    assert tree.children[0].children[0].children[0].children[0].name == "d"
    assert isinstance(tree.children[0].children[0].children[0].children[0],
                      grammar.Definition)
Ejemplo n.º 2
0
def test_badquote_multiline_string_2():
    parse_string(
        """intensities = "Choice of which intensities to export. Allowed combinations:
      "
          "     scale, profile, sum, profile+sum, sum+profile+scale. Auto"
          "will
            default to scale or profile+sum depending on if"
          "the data are scaled."
        """)
Ejemplo n.º 3
0
def test_badquote_multiline_string():
    # Even if defined as """ string, prints self as a single quoted string
    # - although can parse this so technically part of the spec
    parse_string("""experiments = None
    .help = "The output experiment list file name.
            If None, don't"
            "output an experiment list file.\"""")
    parse_string("""experiments = None
    .help = 'The output experiment list file name.
            If None, dont'
            "output an experiment list file.\"""")
Ejemplo n.º 4
0
def test_include():
    parse_string("include file something.phil")
    parse_string("include scope a.b.c.d")
    # subscope
    parse_string("include scope a.b.c.d smething")
    # No file designator
    parse_string("include fastentrypoints.py")
Ejemplo n.º 5
0
def test_multiline_string_dedent():
    # This test case causes tokenizer problems
    r = parse_string("""require_images = True
  .help = "Flag which can be set to False to launch image viewer without
     "
          "checking the image format (needed for some image format classes).
 "
 """)
    r.print_scope()
Ejemplo n.º 6
0
def test_multiple_scope_definitions():
    root_scope = parse_string("scope {\n  a = 1\n  b = 2\n}", verbose=True)
    assert isinstance(root_scope.children[0], grammar.Scope)
    assert len(root_scope.children[0].children) == 2
    assert all(
        isinstance(x, grammar.Definition)
        for x in root_scope.children[0].children)
    assert str(root_scope.children[0].children[0].name) == "a"
    assert str(root_scope.children[0].children[1].name) == "b"
Ejemplo n.º 7
0
def test_parses():
    parse_string("""
    options.something = some sort *of choice
        .help = "whaaaat"
        .optional = True
        .caption =  "Some long description"
                    "a second line"
        .short_caption=4
    another.option = "some"
    file.name = file.mds
    """)
    parse_string("name = file.mds")
    # multiline string
    parse_string("a = 'a'\n'b'\n'c' 4")
Ejemplo n.º 8
0
def test_scope_inline_options():
    parse_string("""something
.multiple = True {
}""")
Ejemplo n.º 9
0
def test_escaped_line():
    parse_string(
        """display = *image mean variance dispersion sigma_b sigma_s threshold \
          global_threshold
  .help = None""")
Ejemplo n.º 10
0
def check_raises(content):
    with pytest.raises(SyntaxError) as e:
        parse_string(content)
    return str(e.value)
Ejemplo n.º 11
0
def test_options():
    parse_string("a = 2\n  .caption='goodoption'")
    assert "unknown option" in check_raises("a = 2\n .badoption = 3").lower()
Ejemplo n.º 12
0
def test_string_continuation():
    parse_string('a = "Some long description"\n  "a second line"')
Ejemplo n.º 13
0
def test_multiple_definitions_root_scope():
    defs = parse_string("a = 1\n  b = 2")
    assert len(defs.children) == 2
    assert all(isinstance(x, grammar.Definition) for x in defs.children)
Ejemplo n.º 14
0
def test_subscope():
    parse_string("scope {\n  options.b = 4\n}")
    parse_string("scope { options.b = 4 }")
Ejemplo n.º 15
0
def test_multiple_newline():
    parse_string("something = 3\n\nanother = 4")
    parse_string("something {\n}\n\nanother{}")
    parse_string("something {\n}\n\nanother{}\n\n\n")
    parse_string("a = 4\n\n\n")
Ejemplo n.º 16
0
def test_leading_newline():
    test_scope = "a {\n  b = 1\n}"
    parse_string(test_scope)
    parse_string("\n" + test_scope)
Ejemplo n.º 17
0
def test_inline_quotes():
    parse_string("""something=1
    .help = Treat all sulfur atoms as having the same f' and f\"""")
Ejemplo n.º 18
0
def test_comment():
    parse_string("some = 3 # comment\n# another comment\nb = 3\n#after")
    # not comment
    parse_string("some = 3# comment")
    parse_string("a #comment\n{}")
    parse_string(
        "a #comment\n{#somment\nb=2 # comment\nc = 3# not comment}#after")
    parse_string(
        "#comment\n# comment\na #comment\n{#somment\nb=2 # comment\nc = 3# not comment\n}"
    )
    parse_string("d=a b c # 1 {2} 3 \\\n4 {5 6}}")
    parse_string("a # what\n# what\n#what\n{}")
    parse_string("a = 3\n#comment\n.help=some\n")
    parse_string("a = 3\n#comment\n#another\n.help=some\n")
    # Scope commenting
    parse_string("!a { }")
    parse_string("a\n!.help='a'{}")
    parse_string("!a = 2")
    parse_string("! include none")
Ejemplo n.º 19
0
def test_empty_scope():
    parse_string("a {}")
Ejemplo n.º 20
0
def test_close_semicolon():
    tree = parse_string("""some = 3; .help=help""")
    assert tree.children[0].options["help"]