Exemplo n.º 1
0
    def test_does_not_mangle_inline_comment_within_statement(self):
        text = "blah blah--comment here\n"
        text += "blah blah"

        expected = "EXEC SQL " + text

        self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 2
0
 def test_prepend_exec_sql_wrapped_statement_with_multiple_semis_on_last_line(self):
     text1 = "create table control.myfavoritetable (\n"
     text2 = "    id bigint\n"
     text3 = ");"
     text4 = "select a from b;"
     expected = "EXEC SQL " + text1 + text2 + text3 + "EXEC SQL " + text4
     self.assertEqual(expected, sqlprep.prepare_sql(text1 + text2 + text3 + text4))
Exemplo n.º 3
0
    def test_handles_inline_comment_between_statements(self):
        text = "blah blah; --comment here\n"
        text += "blah blah;"

        expected = "EXEC SQL blah blah; //comment here\n"
        expected += "EXEC SQL blah blah;"

        self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 4
0
    def test_does_not_mangle_first_column_comment_within_statement(self):
        text = "select a from b\n"
        text += "--comment here\n"
        text += "where c=3"

        expected = "EXEC SQL " + text

        self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 5
0
def prep_file(filelike):
    """read in sql, prepare it, save prepped sql to temp file
       return: name of temp file which contains prepped sql"""
    raw_sql = filelike.read()
    prepped_sql = sqlprep.prepare_sql(raw_sql)
    with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix=".pgc") as dst:
        dst.write(prepped_sql)
    return dst.name
Exemplo n.º 6
0
    def test_handles_first_column_comment_between_statements(self):
        text = "blah blah;\n"
        text += "--comment here\n"
        text += "blah blah;"

        expected = "EXEC SQL blah blah;"
        expected += "EXEC SQL \n\nblah blah;"

        self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 7
0
def check_string(sql_string, add_semicolon=False):
    """
    Check whether a string is valid PostgreSQL. Returns a boolean
    indicating validity and a message from ecpg, which will be an
    empty string if the input was valid, or a description of the
    problem otherwise.
    """
    prepped_sql = sqlprep.prepare_sql(sql_string, add_semicolon=add_semicolon)
    success, msg = ecpg.check_syntax(prepped_sql)
    return success, msg
Exemplo n.º 8
0
def check_string(sql_string):
    """
    Check whether a string is valid PostgreSQL. Returns a list of messages
    from ecpg, which will be the empty list if the input was valid, or a
    list of error messages otherwise.
    """
    prepped_sql = sqlprep.prepare_sql(sql_string)
    results = []
    for (line_offset, sql) in prepped_sql:
        success, msglist = ecpg.check_syntax(line_offset, sql)
        if not success:
            results.extend(msglist)
    return results
Exemplo n.º 9
0
 def test_prepend_exec_sql_to_simple_statements(self):
     text = "create table control.myfavoritetable (id bigint);"
     expected = "EXEC SQL " + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 10
0
 def test_prepend_exec_sql_multiple_lines(self):
     text1 = "create table control.myfavoritetable (id bigint);\n"
     text2 = "create table control.myfavoritetable (id bigint);"
     expected = "EXEC SQL " + text1 + "EXEC SQL " + text2
     self.assertEqual(expected, sqlprep.prepare_sql(text1 + text2))
Exemplo n.º 11
0
 def test_append_semi_once(self):
     text = "select a from b;"
     expected = 'EXEC SQL ' + text
     self.assertEqual(expected, sqlprep.prepare_sql(text,
                                                    add_semicolon=True))
Exemplo n.º 12
0
 def test_no_append_semi(self):
     text = "select a from b"
     expected = 'EXEC SQL ' + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 13
0
 def test_comment_start_found_within_comment_within_statement(self):
     text = "select a from b --comment in comment --here\nwhere c=1;"
     expected = "EXEC SQL select a from b --comment in comment --here\nwhere c=1;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 14
0
 def test_trailing_whitespace_after_semicolon(self):
     text = "select a from b; "
     expected = "EXEC SQL select a from b;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 15
0
 def test_semi_found_in_block_comment(self):
     text = "select a\n/*\n;\n*/from b;"
     expected = "EXEC SQL " + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 16
0
 def test_append_semi_line_comment(self):
     text = "select a from b\n/* looks done!\n*"
     expected = 'EXEC SQL ' + text
     self.assertEqual(expected, sqlprep.prepare_sql(text, add_semicolon=True))
Exemplo n.º 17
0
 def test_line_starts_with_semicolon(self):
     text = ";select a from b;"
     expected = "EXEC SQL ;EXEC SQL select a from b;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 18
0
 def test_append_semi_once(self):
     text = "select a from b;"
     expected = 'EXEC SQL ' + text
     self.assertEqual(expected, sqlprep.prepare_sql(text, add_semicolon=True))
Exemplo n.º 19
0
 def test_semi_found_in_comment_at_end_of_line(self):
     text = "select a\nfrom b --semi in comment;\nwhere c=1;"
     expected = "EXEC SQL select a\nfrom b --semi in comment;\nwhere c=1;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 20
0
 def test_double_semicolon(self):
     text = "select a from b;;"
     expected = "EXEC SQL select a from b;;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 21
0
 def test_comment_start_found_within_comment_between_statements(self):
     text = "select a from b; --comment in comment --here\nselect c from d;"
     expected = "EXEC SQL select a from b; //comment in comment //here\nEXEC SQL select c from d;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 22
0
 def test_prepend_exec_sql_wrapped_statement(self):
     text = "create table control.myfavoritetable (\n"
     text += "    id bigint\n"
     text += ");"
     expected = "EXEC SQL " + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 23
0
 def test_line_comment_in_block_comment_is_undisturbed(self):
     text = "select a\n/*\n--hey\n*/\nfrom b;"
     expected = "EXEC SQL " + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 24
0
 def test_prepend_exec_sql_two_statements_one_line(self):
     text = "select a from b; select c from d;"
     expected = "EXEC SQL select a from b;EXEC SQL  select c from d;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 25
0
 def test_opening_two_block_comments_only_requries_one_close(self):
     text = "select a\n/*\n/*\ncomment\n*/from b;select c from d;"
     expected = "EXEC SQL select a\n/*\n/*\ncomment\n*/from b;EXEC SQL select c from d;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 26
0
 def test_handles_first_line_comment(self):
     text = "--comment on line 1\nselect a from b;"
     expected = "//comment on line 1\nEXEC SQL select a from b;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 27
0
 def test_prepend_exec_sql_wrapped_trailing_sql(self):
     text = "select a from b; select a\nfrom b;"
     expected = "EXEC SQL select a from b;EXEC SQL  select a\nfrom b;"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 28
0
 def test_handles_block_comment_on_last_line(self):
     text = "select a from b;\n/*\nselect c from d;\n*/"
     expected = "EXEC SQL select a from b;\n/*\nselect c from d;\n*/"
     self.assertEqual(expected, sqlprep.prepare_sql(text))
Exemplo n.º 29
0
 def test_no_append_semi(self):
     text = "select a from b"
     expected = 'EXEC SQL ' + text
     self.assertEqual(expected, sqlprep.prepare_sql(text))