Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Paul Graydon
erp5
Commits
bf336faf
Commit
bf336faf
authored
Apr 01, 2019
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZMySQLDA: test for table structure migration
parent
4bd5cbe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
172 additions
and
0 deletions
+172
-0
product/ZMySQLDA/tests/testTableStructureMigration.py
product/ZMySQLDA/tests/testTableStructureMigration.py
+172
-0
No files found.
product/ZMySQLDA/tests/testTableStructureMigration.py
0 → 100644
View file @
bf336faf
##############################################################################
# coding: utf-8
# Copyright (c) 2019 Nexedi SA and Contributors. All Rights Reserved.
# Jérome Perrin <jerome@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
textwrap
import
dedent
from
_mysql_exceptions
import
OperationalError
from
Shared.DC.ZRDB.DA
import
DA
from
Products.ERP5Type.tests.ERP5TypeTestCase
import
ERP5TypeTestCase
class
TestTableStructureMigrationTestCase
(
ERP5TypeTestCase
):
def
getBusinessTemplateList
(
self
):
return
'erp5_full_text_mroonga_catalog'
,
def
beforeTearDown
(
self
):
self
.
portal
.
erp5_sql_connection
().
query
(
'DROP table if exists X'
)
self
.
commit
()
def
query
(
self
,
q
):
return
self
.
portal
.
erp5_sql_connection
().
query
(
q
)
def
check_upgrade_schema
(
self
,
previous_schema
,
new_schema
):
self
.
query
(
previous_schema
)
da
=
DA
(
id
=
self
.
id
(),
title
=
self
.
id
(),
connection_id
=
self
.
portal
.
erp5_sql_connection
.
getId
(),
arguments
=
(),
template
=
new_schema
).
__of__
(
self
.
portal
)
self
.
assertTrue
(
da
.
_upgradeSchema
(
src__
=
True
))
da
.
_upgradeSchema
()
self
.
assertFalse
(
da
.
_upgradeSchema
(
src__
=
True
))
self
.
assertEqual
(
new_schema
,
self
.
query
(
'SHOW CREATE TABLE `X`'
)[
1
][
0
][
1
])
def
test_add_column
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL,
`b` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
self
.
query
(
"SELECT a, b FROM X"
)
def
test_remove_column
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL,
`b` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`b` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
self
.
query
(
"SELECT b FROM X"
)
with
self
.
assertRaisesRegexp
(
OperationalError
,
"Unknown column 'a' in 'field list'"
):
self
.
query
(
"SELECT a FROM X"
)
def
test_rename_column
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`b` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
self
.
query
(
"SELECT b FROM X"
)
with
self
.
assertRaisesRegexp
(
OperationalError
,
"Unknown column 'a' in 'field list'"
):
self
.
query
(
"SELECT a FROM X"
)
def
test_change_column_type
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`a` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
# insterting 1 will be casted as string
self
.
query
(
"INSERT INTO X VALUES (1)"
)
self
.
assertEqual
((
'1'
,),
self
.
query
(
"SELECT a FROM X"
)[
1
][
0
])
def
test_change_column_default
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT 123
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
self
.
query
(
"INSERT INTO X VALUES ()"
)
self
.
assertEqual
((
123
,),
self
.
query
(
"SELECT a FROM X"
)[
1
][
0
])
def
test_add_index
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL,
KEY `idx_a` (`a`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
self
.
query
(
"SELECT * FROM X USE INDEX (`idx_a`)"
)
def
test_remove_index
(
self
):
self
.
check_upgrade_schema
(
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL,
KEY `idx_a` (`a`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
),
dedent
(
"""
\
CREATE TABLE `X` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"""
))
with
self
.
assertRaisesRegexp
(
OperationalError
,
"Key 'idx_a' doesn't exist in table 'X'"
):
self
.
query
(
"SELECT * FROM X USE INDEX (`idx_a`)"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment