Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90742790
dbquery_regression_tests.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 4, 08:48
Size
2 KB
Mime Type
text/x-python
Expires
Wed, Nov 6, 08:48 (1 d, 10 h)
Engine
blob
Format
Raw Data
Handle
22126581
Attached To
R3600 invenio-infoscience
dbquery_regression_tests.py
View Options
# -*- coding: utf-8 -*-
## This file is part of Invenio.
## Copyright (C) 2011, 2012 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""dbquery Regression Test Suite."""
__revision__
=
"$Id$"
import
unittest
from
invenio
import
dbquery
from
invenio.testutils
import
make_test_suite
,
run_test_suite
class
RunSqlReturnListOfDictionaries
(
unittest
.
TestCase
):
"""Test run_sql behavior when with_dict parameter is provided"""
def
test_select_simple_columns_query
(
self
):
"""dbquery - select simple columns query"""
res
=
dbquery
.
run_sql
(
"SELECT id,name,dbquery FROM collection WHERE id<3"
,
with_dict
=
True
)
self
.
assertEqual
(
res
,
([{
'dbquery'
:
None
,
'id'
:
1
,
'name'
:
'Atlantis Institute of Fictive Science'
},
{
'dbquery'
:
'980:"PREPRINT"'
,
'id'
:
2
,
'name'
:
'Preprints'
}]))
def
test_select_date_format_column_query
(
self
):
"""dbquery - select date format column query"""
import
time
year
=
time
.
localtime
()
.
tm_year
res
=
dbquery
.
run_sql
(
"SELECT DATE_FORMAT(creation_date, '%Y') FROM bibrec WHERE id<3"
,
with_dict
=
True
)
self
.
assertEqual
(
res
,
([{
"DATE_FORMAT(creation_date, '%Y')"
:
str
(
year
)},
{
"DATE_FORMAT(creation_date, '%Y')"
:
str
(
year
)}]))
def
test_select_sum_columns_query
(
self
):
"""dbquery - select sum columns query"""
res
=
dbquery
.
run_sql
(
"SELECT id+nbrecs,name FROM collection WHERE id>1 AND id<5"
,
with_dict
=
True
)
self
.
assertEqual
(
res
,
([{
'id+nbrecs'
:
39L
,
'name'
:
'Preprints'
},
{
'id+nbrecs'
:
17L
,
'name'
:
'Books'
},
{
'id+nbrecs'
:
12L
,
'name'
:
'Theses'
}]))
def
test_select_all_columns_query
(
self
):
"""dbquery - select all columns query"""
res
=
dbquery
.
run_sql
(
"SELECT * FROM collection WHERE id=2"
,
with_dict
=
True
)
# kwalitee: disable=sql
self
.
assertEqual
(
res
,
([{
'dbquery'
:
'980:"PREPRINT"'
,
'id'
:
2
,
'name'
:
'Preprints'
,
'nbrecs'
:
37L
,
'reclist'
:
'x
\x9c
c
\xf8\xcf\xc8\xc0\xf0\xe3\xff\x7f
f
\x06
6E
\x16\x06\x04\x00\x00
N
\xbd\x04
%'
}]))
TEST_SUITE
=
make_test_suite
(
RunSqlReturnListOfDictionaries
,)
if
__name__
==
"__main__"
:
run_test_suite
(
TEST_SUITE
,
warn_user
=
True
)
Event Timeline
Log In to Comment