mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 08:56:34 +03:00
Autonumbered args not available in Python 2.6
This commit is contained in:
parent
71a168797c
commit
a8a3a298f8
14
lib/sql.py
14
lib/sql.py
|
@ -171,7 +171,7 @@ class SQL(Composable):
|
||||||
|
|
||||||
Example::
|
Example::
|
||||||
|
|
||||||
>>> query = sql.SQL("select {} from {}").format(
|
>>> query = sql.SQL("select {0} from {1}").format(
|
||||||
... sql.SQL(', ').join([sql.Identifier('foo'), sql.Identifier('bar')]),
|
... sql.SQL(', ').join([sql.Identifier('foo'), sql.Identifier('bar')]),
|
||||||
... sql.Identifier('table'))
|
... sql.Identifier('table'))
|
||||||
>>> print(query.as_string(conn))
|
>>> print(query.as_string(conn))
|
||||||
|
@ -202,12 +202,12 @@ class SQL(Composable):
|
||||||
:rtype: `Composed`
|
:rtype: `Composed`
|
||||||
|
|
||||||
The method is similar to the Python `str.format()` method: the string
|
The method is similar to the Python `str.format()` method: the string
|
||||||
template supports auto-numbered (``{}``), numbered (``{0}``,
|
template supports auto-numbered (``{}``, only available from Python
|
||||||
``{1}``...), and named placeholders (``{name}``), with positional
|
2.7), numbered (``{0}``, ``{1}``...), and named placeholders
|
||||||
arguments replacing the numbered placeholders and keywords replacing
|
(``{name}``), with positional arguments replacing the numbered
|
||||||
the named ones. However placeholder modifiers (``{0!r}``, ``{0:<10}``)
|
placeholders and keywords replacing the named ones. However placeholder
|
||||||
are not supported. Only `!Composable` objects can be passed to the
|
modifiers (``{0!r}``, ``{0:<10}``) are not supported. Only
|
||||||
template.
|
`!Composable` objects can be passed to the template.
|
||||||
|
|
||||||
Example::
|
Example::
|
||||||
|
|
||||||
|
|
|
@ -23,13 +23,14 @@
|
||||||
# License for more details.
|
# License for more details.
|
||||||
|
|
||||||
import datetime as dt
|
import datetime as dt
|
||||||
from testutils import unittest, ConnectingTestCase
|
from testutils import unittest, ConnectingTestCase, skip_before_python
|
||||||
|
|
||||||
import psycopg2
|
import psycopg2
|
||||||
from psycopg2 import sql
|
from psycopg2 import sql
|
||||||
|
|
||||||
|
|
||||||
class SqlFormatTests(ConnectingTestCase):
|
class SqlFormatTests(ConnectingTestCase):
|
||||||
|
@skip_before_python(2, 7)
|
||||||
def test_pos(self):
|
def test_pos(self):
|
||||||
s = sql.SQL("select {} from {}").format(
|
s = sql.SQL("select {} from {}").format(
|
||||||
sql.Identifier('field'), sql.Identifier('table'))
|
sql.Identifier('field'), sql.Identifier('table'))
|
||||||
|
@ -58,14 +59,14 @@ class SqlFormatTests(ConnectingTestCase):
|
||||||
self.assertEqual(s1, 'select "field" from "table"')
|
self.assertEqual(s1, 'select "field" from "table"')
|
||||||
|
|
||||||
def test_unicode(self):
|
def test_unicode(self):
|
||||||
s = sql.SQL(u"select {} from {}").format(
|
s = sql.SQL(u"select {0} from {1}").format(
|
||||||
sql.Identifier(u'field'), sql.Identifier('table'))
|
sql.Identifier(u'field'), sql.Identifier('table'))
|
||||||
s1 = s.as_string(self.conn)
|
s1 = s.as_string(self.conn)
|
||||||
self.assert_(isinstance(s1, unicode))
|
self.assert_(isinstance(s1, unicode))
|
||||||
self.assertEqual(s1, u'select "field" from "table"')
|
self.assertEqual(s1, u'select "field" from "table"')
|
||||||
|
|
||||||
def test_compose_literal(self):
|
def test_compose_literal(self):
|
||||||
s = sql.SQL("select {};").format(sql.Literal(dt.date(2016, 12, 31)))
|
s = sql.SQL("select {0};").format(sql.Literal(dt.date(2016, 12, 31)))
|
||||||
s1 = s.as_string(self.conn)
|
s1 = s.as_string(self.conn)
|
||||||
self.assertEqual(s1, "select '2016-12-31'::date;")
|
self.assertEqual(s1, "select '2016-12-31'::date;")
|
||||||
|
|
||||||
|
@ -75,28 +76,32 @@ class SqlFormatTests(ConnectingTestCase):
|
||||||
self.assertEqual(s1, "select foo;")
|
self.assertEqual(s1, "select foo;")
|
||||||
|
|
||||||
def test_percent_escape(self):
|
def test_percent_escape(self):
|
||||||
s = sql.SQL("42 % {}").format(sql.Literal(7))
|
s = sql.SQL("42 % {0}").format(sql.Literal(7))
|
||||||
s1 = s.as_string(self.conn)
|
s1 = s.as_string(self.conn)
|
||||||
self.assertEqual(s1, "42 % 7")
|
self.assertEqual(s1, "42 % 7")
|
||||||
|
|
||||||
def test_braces_escape(self):
|
def test_braces_escape(self):
|
||||||
s = sql.SQL("{{{}}}").format(sql.Literal(7))
|
s = sql.SQL("{{{0}}}").format(sql.Literal(7))
|
||||||
self.assertEqual(s.as_string(self.conn), "{7}")
|
self.assertEqual(s.as_string(self.conn), "{7}")
|
||||||
s = sql.SQL("{{1,{}}}").format(sql.Literal(7))
|
s = sql.SQL("{{1,{0}}}").format(sql.Literal(7))
|
||||||
self.assertEqual(s.as_string(self.conn), "{1,7}")
|
self.assertEqual(s.as_string(self.conn), "{1,7}")
|
||||||
|
|
||||||
def test_compose_badnargs(self):
|
def test_compose_badnargs(self):
|
||||||
|
self.assertRaises(IndexError, sql.SQL("select {0};").format)
|
||||||
|
|
||||||
|
@skip_before_python(2, 7)
|
||||||
|
def test_compose_badnargs_auto(self):
|
||||||
self.assertRaises(IndexError, sql.SQL("select {};").format)
|
self.assertRaises(IndexError, sql.SQL("select {};").format)
|
||||||
self.assertRaises(ValueError, sql.SQL("select {} {1};").format, 10, 20)
|
self.assertRaises(ValueError, sql.SQL("select {} {1};").format, 10, 20)
|
||||||
self.assertRaises(ValueError, sql.SQL("select {0} {};").format, 10, 20)
|
self.assertRaises(ValueError, sql.SQL("select {0} {};").format, 10, 20)
|
||||||
|
|
||||||
def test_compose_bad_args_type(self):
|
def test_compose_bad_args_type(self):
|
||||||
self.assertRaises(IndexError, sql.SQL("select {};").format, a=10)
|
self.assertRaises(IndexError, sql.SQL("select {0};").format, a=10)
|
||||||
self.assertRaises(KeyError, sql.SQL("select {x};").format, 10)
|
self.assertRaises(KeyError, sql.SQL("select {x};").format, 10)
|
||||||
|
|
||||||
def test_must_be_composable(self):
|
def test_must_be_composable(self):
|
||||||
self.assertRaises(TypeError, sql.SQL("select {};").format, 'foo')
|
self.assertRaises(TypeError, sql.SQL("select {0};").format, 'foo')
|
||||||
self.assertRaises(TypeError, sql.SQL("select {};").format, 10)
|
self.assertRaises(TypeError, sql.SQL("select {0};").format, 10)
|
||||||
|
|
||||||
def test_no_modifiers(self):
|
def test_no_modifiers(self):
|
||||||
self.assertRaises(ValueError, sql.SQL("select {a!r};").format, a=10)
|
self.assertRaises(ValueError, sql.SQL("select {a!r};").format, a=10)
|
||||||
|
@ -107,7 +112,7 @@ class SqlFormatTests(ConnectingTestCase):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
self.assertRaises(psycopg2.ProgrammingError,
|
self.assertRaises(psycopg2.ProgrammingError,
|
||||||
sql.SQL("select {};").format(sql.Literal(Foo())).as_string, self.conn)
|
sql.SQL("select {0};").format(sql.Literal(Foo())).as_string, self.conn)
|
||||||
|
|
||||||
def test_execute(self):
|
def test_execute(self):
|
||||||
cur = self.conn.cursor()
|
cur = self.conn.cursor()
|
||||||
|
@ -117,7 +122,7 @@ class SqlFormatTests(ConnectingTestCase):
|
||||||
foo text, bar text, "ba'z" text)
|
foo text, bar text, "ba'z" text)
|
||||||
""")
|
""")
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("insert into {} (id, {}) values (%s, {})").format(
|
sql.SQL("insert into {0} (id, {1}) values (%s, {2})").format(
|
||||||
sql.Identifier('test_compose'),
|
sql.Identifier('test_compose'),
|
||||||
sql.SQL(', ').join(map(sql.Identifier, ['foo', 'bar', "ba'z"])),
|
sql.SQL(', ').join(map(sql.Identifier, ['foo', 'bar', "ba'z"])),
|
||||||
(sql.Placeholder() * 3).join(', ')),
|
(sql.Placeholder() * 3).join(', ')),
|
||||||
|
@ -134,7 +139,7 @@ class SqlFormatTests(ConnectingTestCase):
|
||||||
foo text, bar text, "ba'z" text)
|
foo text, bar text, "ba'z" text)
|
||||||
""")
|
""")
|
||||||
cur.executemany(
|
cur.executemany(
|
||||||
sql.SQL("insert into {} (id, {}) values (%s, {})").format(
|
sql.SQL("insert into {0} (id, {1}) values (%s, {2})").format(
|
||||||
sql.Identifier('test_compose'),
|
sql.Identifier('test_compose'),
|
||||||
sql.SQL(', ').join(map(sql.Identifier, ['foo', 'bar', "ba'z"])),
|
sql.SQL(', ').join(map(sql.Identifier, ['foo', 'bar', "ba'z"])),
|
||||||
(sql.Placeholder() * 3).join(', ')),
|
(sql.Placeholder() * 3).join(', ')),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user