Ejemplo n.º 1
0
def test_hoist_ex():
    output = """\
void	*foo()
{
	if ()
		return NULL;
}
"""
    assert output == hoist("""\
void	*foo()
{
	if ()
		return NULL;
}
""")

    # TODO test on weird types
    output = """\
void foo()
{
\tt_list\t*bar;

\tbar = (t_list *)malloc(sizeof(t_list) * (count_elements(baz) + 1));
}
"""
    assert output == hoist("""\
void foo()
{
\tt_list\t*bar = (t_list *)malloc(sizeof(t_list) * (count_elements(baz) + 1));
}
""")
Ejemplo n.º 2
0
def test_remove_empty_line():
    input = """
int foo()
{
\tint\ta;

\ta = 1;

\tputs("bonjour");

}
"""
    output = """
int foo()
{
\tint\ta;

\ta = 1;
\tputs("bonjour");
}
"""
    assert output == hoist(input)

    input = """
int foo()
{

\tputs("bonjour");

}
"""
    output = """
int foo()
{
\tputs("bonjour");
}
"""
    assert output == hoist(input)

    input = """
int foo()
{
\tint a = 1;

\tputs("bonjour");

}
"""
    output = """
int foo()
{
\tint\ta;

\ta = 1;
\tputs("bonjour");
}
"""
    assert output == hoist(input)
Ejemplo n.º 3
0
def run_all(content: str) -> str:
    """ Run all formatters """
    content = clang_format(content)
    content = preprocessor_directive(content)
    content = remove_multiline_condition_space(content)
    content = parenthesize_return(content)
    content = space_before_semi_colon(content)
    content = hoist(content)
    content = align(content)
    return content
Ejemplo n.º 4
0
def test_assignment_splitting():
    output = scoped("\tint\ta;\n\n\ta = 1;")
    assert output == hoist(scoped("\tint a = 1;"))
    assert output == hoist(scoped("\tint a                = 1;"))
    assert output == hoist(scoped("\tint a =                1;"))
    assert output == hoist(scoped("\tint a\t\t\t\t\t\t\t\t= 1;"))
    assert output == hoist(scoped("\tint a =\t\t\t\t\t\t\t\t1;"))
    assert output == hoist(scoped("\tint a\t\t    \t\t\t\t= 1;"))
    assert output == hoist(scoped("\tint a =\t\t\t    \t\t\t1;"))
Ejemplo n.º 5
0
def test_hoist_pointer():
    input = """
int foo()
{
\tint *a = 1;
}
"""
    output = """
int foo()
{
\tint\t*a;

\ta = 1;
}
"""
    assert output == hoist(input)
Ejemplo n.º 6
0
def test_hoist():
    output = scoped("int a;\n\nfoo();\nbar();")
    assert output == hoist(scoped("foo();\nbar();\nint a;"))
    assert output == hoist(scoped("foo();\nint a;\nbar();"))