-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support passing dicts and namedtuples for namedtuple arguments (#473)
We support dicts (and other mappings), and for named tuples we do lookup by name instead of by position. Fixes #374.
- Loading branch information
Showing
2 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# | ||
# This source file is part of the EdgeDB open source project. | ||
# | ||
# Copyright 2019-present MagicStack Inc. and the EdgeDB authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
|
||
from collections import namedtuple, UserDict | ||
|
||
import edgedb | ||
from edgedb import _testbase as tb | ||
|
||
|
||
class TestNamedTupleTypes(tb.SyncQueryTestCase): | ||
|
||
async def test_namedtuple_01(self): | ||
NT1 = namedtuple('NT2', ['x', 'y']) | ||
NT2 = namedtuple('NT2', ['y', 'x']) | ||
|
||
ctors = [dict, UserDict, NT1, NT2] | ||
for ctor in ctors: | ||
val = ctor(x=10, y='y') | ||
res = self.client.query_single(''' | ||
select <tuple<x: int64, y: str>>$0 | ||
''', val) | ||
|
||
self.assertEqual(res, (10, 'y')) | ||
|
||
async def test_namedtuple_02(self): | ||
NT1 = namedtuple('NT2', ['x', 'z']) | ||
|
||
with self.assertRaisesRegex(edgedb.InvalidArgumentError, 'is missing'): | ||
self.client.query_single(''' | ||
select <tuple<x: int64, y: str>>$0 | ||
''', dict(x=20, z='test')) | ||
|
||
with self.assertRaisesRegex(edgedb.InvalidArgumentError, 'is missing'): | ||
self.client.query_single(''' | ||
select <tuple<x: int64, y: str>>$0 | ||
''', NT1(x=20, z='test')) |