|
22 | 22 | R_ABC = collections.OrderedDict([('a', 0), ('b', 1), ('c', 2)])
|
23 | 23 |
|
24 | 24 |
|
| 25 | +class CustomRecord(asyncpg.Record): |
| 26 | + pass |
| 27 | + |
| 28 | + |
| 29 | +class AnotherCustomRecord(asyncpg.Record): |
| 30 | + pass |
| 31 | + |
| 32 | + |
25 | 33 | class TestRecord(tb.ConnectedTestCase):
|
26 | 34 |
|
27 | 35 | @contextlib.contextmanager
|
@@ -339,3 +347,169 @@ async def test_record_no_new(self):
|
339 | 347 | with self.assertRaisesRegex(
|
340 | 348 | TypeError, "cannot create 'asyncpg.Record' instances"):
|
341 | 349 | asyncpg.Record()
|
| 350 | + |
| 351 | + @tb.with_connection_options(record_class=CustomRecord) |
| 352 | + async def test_record_subclass_01(self): |
| 353 | + r = await self.con.fetchrow("SELECT 1 as a, '2' as b") |
| 354 | + self.assertIsInstance(r, CustomRecord) |
| 355 | + |
| 356 | + r = await self.con.fetch("SELECT 1 as a, '2' as b") |
| 357 | + self.assertIsInstance(r[0], CustomRecord) |
| 358 | + |
| 359 | + async with self.con.transaction(): |
| 360 | + cur = await self.con.cursor("SELECT 1 as a, '2' as b") |
| 361 | + r = await cur.fetchrow() |
| 362 | + self.assertIsInstance(r, CustomRecord) |
| 363 | + |
| 364 | + cur = await self.con.cursor("SELECT 1 as a, '2' as b") |
| 365 | + r = await cur.fetch(1) |
| 366 | + self.assertIsInstance(r[0], CustomRecord) |
| 367 | + |
| 368 | + async with self.con.transaction(): |
| 369 | + cur = self.con.cursor("SELECT 1 as a, '2' as b") |
| 370 | + async for r in cur: |
| 371 | + self.assertIsInstance(r, CustomRecord) |
| 372 | + |
| 373 | + ps = await self.con.prepare("SELECT 1 as a, '2' as b") |
| 374 | + r = await ps.fetchrow() |
| 375 | + self.assertIsInstance(r, CustomRecord) |
| 376 | + |
| 377 | + async def test_record_subclass_02(self): |
| 378 | + r = await self.con.fetchrow( |
| 379 | + "SELECT 1 as a, '2' as b", |
| 380 | + record_class=CustomRecord, |
| 381 | + ) |
| 382 | + self.assertIsInstance(r, CustomRecord) |
| 383 | + |
| 384 | + r = await self.con.fetch( |
| 385 | + "SELECT 1 as a, '2' as b", |
| 386 | + record_class=CustomRecord, |
| 387 | + ) |
| 388 | + self.assertIsInstance(r[0], CustomRecord) |
| 389 | + |
| 390 | + async with self.con.transaction(): |
| 391 | + cur = await self.con.cursor( |
| 392 | + "SELECT 1 as a, '2' as b", |
| 393 | + record_class=CustomRecord, |
| 394 | + ) |
| 395 | + r = await cur.fetchrow() |
| 396 | + self.assertIsInstance(r, CustomRecord) |
| 397 | + |
| 398 | + cur = await self.con.cursor( |
| 399 | + "SELECT 1 as a, '2' as b", |
| 400 | + record_class=CustomRecord, |
| 401 | + ) |
| 402 | + r = await cur.fetch(1) |
| 403 | + self.assertIsInstance(r[0], CustomRecord) |
| 404 | + |
| 405 | + async with self.con.transaction(): |
| 406 | + cur = self.con.cursor( |
| 407 | + "SELECT 1 as a, '2' as b", |
| 408 | + record_class=CustomRecord, |
| 409 | + ) |
| 410 | + async for r in cur: |
| 411 | + self.assertIsInstance(r, CustomRecord) |
| 412 | + |
| 413 | + ps = await self.con.prepare( |
| 414 | + "SELECT 1 as a, '2' as b", |
| 415 | + record_class=CustomRecord, |
| 416 | + ) |
| 417 | + r = await ps.fetchrow() |
| 418 | + self.assertIsInstance(r, CustomRecord) |
| 419 | + |
| 420 | + r = await ps.fetch() |
| 421 | + self.assertIsInstance(r[0], CustomRecord) |
| 422 | + |
| 423 | + @tb.with_connection_options(record_class=AnotherCustomRecord) |
| 424 | + async def test_record_subclass_03(self): |
| 425 | + r = await self.con.fetchrow( |
| 426 | + "SELECT 1 as a, '2' as b", |
| 427 | + record_class=CustomRecord, |
| 428 | + ) |
| 429 | + self.assertIsInstance(r, CustomRecord) |
| 430 | + |
| 431 | + r = await self.con.fetch( |
| 432 | + "SELECT 1 as a, '2' as b", |
| 433 | + record_class=CustomRecord, |
| 434 | + ) |
| 435 | + self.assertIsInstance(r[0], CustomRecord) |
| 436 | + |
| 437 | + async with self.con.transaction(): |
| 438 | + cur = await self.con.cursor( |
| 439 | + "SELECT 1 as a, '2' as b", |
| 440 | + record_class=CustomRecord, |
| 441 | + ) |
| 442 | + r = await cur.fetchrow() |
| 443 | + self.assertIsInstance(r, CustomRecord) |
| 444 | + |
| 445 | + cur = await self.con.cursor( |
| 446 | + "SELECT 1 as a, '2' as b", |
| 447 | + record_class=CustomRecord, |
| 448 | + ) |
| 449 | + r = await cur.fetch(1) |
| 450 | + self.assertIsInstance(r[0], CustomRecord) |
| 451 | + |
| 452 | + async with self.con.transaction(): |
| 453 | + cur = self.con.cursor( |
| 454 | + "SELECT 1 as a, '2' as b", |
| 455 | + record_class=CustomRecord, |
| 456 | + ) |
| 457 | + async for r in cur: |
| 458 | + self.assertIsInstance(r, CustomRecord) |
| 459 | + |
| 460 | + ps = await self.con.prepare( |
| 461 | + "SELECT 1 as a, '2' as b", |
| 462 | + record_class=CustomRecord, |
| 463 | + ) |
| 464 | + r = await ps.fetchrow() |
| 465 | + self.assertIsInstance(r, CustomRecord) |
| 466 | + |
| 467 | + r = await ps.fetch() |
| 468 | + self.assertIsInstance(r[0], CustomRecord) |
| 469 | + |
| 470 | + @tb.with_connection_options(record_class=CustomRecord) |
| 471 | + async def test_record_subclass_04(self): |
| 472 | + r = await self.con.fetchrow( |
| 473 | + "SELECT 1 as a, '2' as b", |
| 474 | + record_class=asyncpg.Record, |
| 475 | + ) |
| 476 | + self.assertIs(type(r), asyncpg.Record) |
| 477 | + |
| 478 | + r = await self.con.fetch( |
| 479 | + "SELECT 1 as a, '2' as b", |
| 480 | + record_class=asyncpg.Record, |
| 481 | + ) |
| 482 | + self.assertIs(type(r[0]), asyncpg.Record) |
| 483 | + |
| 484 | + async with self.con.transaction(): |
| 485 | + cur = await self.con.cursor( |
| 486 | + "SELECT 1 as a, '2' as b", |
| 487 | + record_class=asyncpg.Record, |
| 488 | + ) |
| 489 | + r = await cur.fetchrow() |
| 490 | + self.assertIs(type(r), asyncpg.Record) |
| 491 | + |
| 492 | + cur = await self.con.cursor( |
| 493 | + "SELECT 1 as a, '2' as b", |
| 494 | + record_class=asyncpg.Record, |
| 495 | + ) |
| 496 | + r = await cur.fetch(1) |
| 497 | + self.assertIs(type(r[0]), asyncpg.Record) |
| 498 | + |
| 499 | + async with self.con.transaction(): |
| 500 | + cur = self.con.cursor( |
| 501 | + "SELECT 1 as a, '2' as b", |
| 502 | + record_class=asyncpg.Record, |
| 503 | + ) |
| 504 | + async for r in cur: |
| 505 | + self.assertIs(type(r), asyncpg.Record) |
| 506 | + |
| 507 | + ps = await self.con.prepare( |
| 508 | + "SELECT 1 as a, '2' as b", |
| 509 | + record_class=asyncpg.Record, |
| 510 | + ) |
| 511 | + r = await ps.fetchrow() |
| 512 | + self.assertIs(type(r), asyncpg.Record) |
| 513 | + |
| 514 | + r = await ps.fetch() |
| 515 | + self.assertIs(type(r[0]), asyncpg.Record) |
0 commit comments