Unpin webob and hacking to fix compatibility issues
The pinned versions of webob and hacking weren't functioning properly with modern Python, so they are unpinned. Unpinning hacking brought a number of extra rules into use, so this commit also contains a number of code style fixes. There was also an incompatibility in the test_setup.sh script, which meant it doesn't work with MySQL 8.0 (which is in Ubuntu 20.04). This is also fixed in this commit. Change-Id: I0889bc35f8babfeec42f6f577d302bb5fbce1c95
This commit is contained in:
parent
647bb9c660
commit
983bb8e2d7
@ -16,7 +16,7 @@ PyYAML>=3.1.0
|
||||
requests>=1.1
|
||||
six>=1.7.0
|
||||
SQLAlchemy
|
||||
webob==1.7.4
|
||||
webob
|
||||
WSME>=0.6,<0.8
|
||||
SQLAlchemy-FullText-Search>=0.2.3
|
||||
stevedore>=1.3.0
|
||||
|
@ -165,5 +165,6 @@ def start():
|
||||
|
||||
srv.serve_forever()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
start()
|
||||
|
@ -298,5 +298,6 @@ class OpenIdConnectServer(WebApplicationServer):
|
||||
request_validator,
|
||||
token_expires_in=access_token_ttl)
|
||||
|
||||
|
||||
validator = SkeletonValidator()
|
||||
SERVER = OpenIdConnectServer(validator)
|
||||
|
@ -66,9 +66,9 @@ class OpenIdClient(object):
|
||||
message=e_msg.NO_CLIENT_ID)
|
||||
oauth_client_is_invalid = True
|
||||
for valid_oauth_client in CONF.oauth.valid_oauth_clients:
|
||||
if ((valid_oauth_client == client_id) or
|
||||
(valid_oauth_client.startswith('^') and
|
||||
re.match(valid_oauth_client, client_id))):
|
||||
if ((valid_oauth_client == client_id)
|
||||
or (valid_oauth_client.startswith('^')
|
||||
and re.match(valid_oauth_client, client_id))):
|
||||
oauth_client_is_invalid = False
|
||||
break
|
||||
if oauth_client_is_invalid:
|
||||
|
@ -100,9 +100,9 @@ class CORSMiddleware(object):
|
||||
|
||||
# Does this request match one of our origin domains?
|
||||
for allowed_origin in self.allowed_origins:
|
||||
if ((allowed_origin == origin) or
|
||||
(allowed_origin.startswith('^') and
|
||||
re.match(allowed_origin, origin))):
|
||||
if ((allowed_origin == origin)
|
||||
or (allowed_origin.startswith('^')
|
||||
and re.match(allowed_origin, origin))):
|
||||
|
||||
# Is this an OPTIONS request?
|
||||
if method == 'OPTIONS':
|
||||
|
@ -88,7 +88,7 @@ class SwiftStorageImpl(StorageBackend):
|
||||
conn.object_store.create_container(CONF.swift.container)
|
||||
conn.object_store.set_container_temp_url_key(
|
||||
CONF.swift.container, CONF.swift.temp_url_key)
|
||||
container = conn.object_store.set_container_metadata(
|
||||
conn.object_store.set_container_metadata(
|
||||
CONF.swift.container, read_ACL=".r:*")
|
||||
|
||||
def get_upload_url(self):
|
||||
|
@ -323,8 +323,8 @@ class StoriesController(rest.RestController):
|
||||
"""
|
||||
|
||||
# Reject private story types while ACL is not created.
|
||||
if (story.story_type_id and
|
||||
(story.story_type_id == 3 or story.story_type_id == 4)):
|
||||
if (story.story_type_id
|
||||
and (story.story_type_id == 3 or story.story_type_id == 4)):
|
||||
abort(400, _("Now you can't add story with type %s.") %
|
||||
story.story_type_id)
|
||||
|
||||
@ -393,8 +393,8 @@ class StoriesController(rest.RestController):
|
||||
user_id = request.current_user_id
|
||||
|
||||
# Reject private story types while ACL is not created.
|
||||
if (story.story_type_id and
|
||||
(story.story_type_id == 3 or story.story_type_id == 4)):
|
||||
if (story.story_type_id
|
||||
and (story.story_type_id == 3 or story.story_type_id == 4)):
|
||||
abort(400, _("Now you can't change story type to %s.") %
|
||||
story.story_type_id)
|
||||
|
||||
|
@ -179,8 +179,8 @@ def task_is_valid_put(task, original_task):
|
||||
abort(400,
|
||||
_("Milestones can only be associated with merged tasks"))
|
||||
|
||||
if (original_task.status == 'merged' and
|
||||
task.status and task.status != 'merged'):
|
||||
if (original_task.status == 'merged'
|
||||
and task.status and task.status != 'merged'):
|
||||
abort(400,
|
||||
_("Milestones can only be associated with merged tasks"))
|
||||
elif 'milestone_id' in task.as_dict(omit_unset=True):
|
||||
@ -201,48 +201,48 @@ def task_is_valid_put(task, original_task):
|
||||
|
||||
|
||||
def post_timeline_events(original_task, updated_task):
|
||||
# If both the assignee_id and the status were changed there will be
|
||||
# two separate comments in the activity log.
|
||||
# If both the assignee_id and the status were changed there will be
|
||||
# two separate comments in the activity log.
|
||||
|
||||
author_id = request.current_user_id
|
||||
specific_change = False
|
||||
author_id = request.current_user_id
|
||||
specific_change = False
|
||||
|
||||
if original_task.status != updated_task.status:
|
||||
events_api.task_status_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_status=original_task.status,
|
||||
new_status=updated_task.status)
|
||||
specific_change = True
|
||||
if original_task.status != updated_task.status:
|
||||
events_api.task_status_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_status=original_task.status,
|
||||
new_status=updated_task.status)
|
||||
specific_change = True
|
||||
|
||||
if original_task.priority != updated_task.priority:
|
||||
events_api.task_priority_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_priority=original_task.priority,
|
||||
new_priority=updated_task.priority)
|
||||
specific_change = True
|
||||
if original_task.priority != updated_task.priority:
|
||||
events_api.task_priority_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_priority=original_task.priority,
|
||||
new_priority=updated_task.priority)
|
||||
specific_change = True
|
||||
|
||||
if original_task.assignee_id != updated_task.assignee_id:
|
||||
events_api.task_assignee_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_assignee_id=original_task.assignee_id,
|
||||
new_assignee_id=updated_task.assignee_id)
|
||||
specific_change = True
|
||||
if original_task.assignee_id != updated_task.assignee_id:
|
||||
events_api.task_assignee_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id,
|
||||
old_assignee_id=original_task.assignee_id,
|
||||
new_assignee_id=updated_task.assignee_id)
|
||||
specific_change = True
|
||||
|
||||
if not specific_change:
|
||||
events_api.task_details_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id)
|
||||
if not specific_change:
|
||||
events_api.task_details_changed_event(
|
||||
story_id=original_task.story_id,
|
||||
task_id=original_task.id,
|
||||
task_title=original_task.title,
|
||||
author_id=author_id)
|
||||
|
||||
|
||||
class TasksPrimaryController(rest.RestController):
|
||||
|
@ -142,6 +142,7 @@ class ProjectGroup(base.APIBase):
|
||||
name="Infra",
|
||||
title="Awesome projects")
|
||||
|
||||
|
||||
TaskStatuses = wtypes.Enum(wtypes.text, 'todo', 'inprogress',
|
||||
'invalid', 'review', 'merged')
|
||||
|
||||
|
@ -199,9 +199,9 @@ def get_from_lane(worklist):
|
||||
def get_card(board, item_type, item_id, archived=False):
|
||||
for lane in board.lanes:
|
||||
for card in lane.worklist.items:
|
||||
if (card.item_type == item_type and
|
||||
card.item_id == item_id and
|
||||
card.archived == archived):
|
||||
if (card.item_type == item_type
|
||||
and card.item_id == item_id
|
||||
and card.archived == archived):
|
||||
return card
|
||||
|
||||
|
||||
|
@ -308,9 +308,9 @@ def move_item(item_id, new_pos, new_list_id=None):
|
||||
old_pos = modified_card.list_position
|
||||
|
||||
# If the item hasn't actually moved, we don't need to move it.
|
||||
if (old_pos == new_pos and
|
||||
(new_list_id == modified_card.list_id or
|
||||
new_list_id is None)):
|
||||
if (old_pos == new_pos
|
||||
and (new_list_id == modified_card.list_id
|
||||
or new_list_id is None)):
|
||||
return modified_card
|
||||
|
||||
# "old_list" is the list the item is moving from, and "new_list" is
|
||||
|
@ -19,16 +19,17 @@ Create Date: ${create_date}
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = ${repr(up_revision)}
|
||||
down_revision = ${repr(down_revision)}
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
${imports if imports else ""}
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = ${repr(up_revision)}
|
||||
down_revision = ${repr(down_revision)}
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
|
||||
${upgrades if upgrades else "pass"}
|
||||
|
@ -19,11 +19,6 @@ Create Date: 2013-12-10 00:35:55.327593
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '001'
|
||||
down_revision = None
|
||||
|
||||
|
||||
from alembic import op
|
||||
from oslo_log import log
|
||||
import sqlalchemy as sa
|
||||
@ -36,6 +31,10 @@ LOG = log.getLogger(__name__)
|
||||
MYSQL_ENGINE = 'InnoDB'
|
||||
MYSQL_CHARSET = 'utf8'
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '001'
|
||||
down_revision = None
|
||||
|
||||
|
||||
def _define_enums():
|
||||
pref_type = sa.Enum('string', 'int', 'bool', 'float')
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2015-08-17 12:17:35.629353
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '049'
|
||||
down_revision = '001'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@ -30,6 +26,11 @@ import sqlalchemy as sa
|
||||
import storyboard
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '049'
|
||||
down_revision = '001'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table('worklists',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2015-10-09 10:25:47.338906
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '050'
|
||||
down_revision = '049'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@ -34,6 +30,11 @@ from storyboard.db.api import worklists
|
||||
from storyboard.db import models
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '050'
|
||||
down_revision = '049'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table('board_permissions',
|
||||
sa.Column('board_id', sa.Integer(), nullable=True),
|
||||
|
@ -20,10 +20,6 @@ Create Date: 2015-12-03 12:00:00
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
||||
revision = '051'
|
||||
down_revision = '050'
|
||||
|
||||
from alembic import op
|
||||
import json
|
||||
@ -32,6 +28,10 @@ from sqlalchemy.sql import column
|
||||
from sqlalchemy.sql.expression import table
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '051'
|
||||
down_revision = '050'
|
||||
|
||||
subs_events_table = table(
|
||||
'subscription_events',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2016-02-08 15:58:59.451550
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '052'
|
||||
down_revision = '051'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '052'
|
||||
down_revision = '051'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
|
||||
op.add_column('tasks', sa.Column('link', sa.UnicodeText(), nullable=True))
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2016-02-04 11:27:55.607256
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '053'
|
||||
down_revision = '052'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@ -30,6 +26,11 @@ import sqlalchemy as sa
|
||||
from storyboard.db.decorators import UTCDateTime
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '053'
|
||||
down_revision = '052'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table(
|
||||
'due_dates',
|
||||
|
@ -19,15 +19,15 @@ Create Date: 2016-02-25 19:15:29.464877
|
||||
|
||||
"""
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '054'
|
||||
down_revision = '053'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.add_column(
|
||||
'worklist_items', sa.Column('archived', sa.Boolean(), nullable=True))
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2016-03-05 23:35:40.379333
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '055'
|
||||
down_revision = '054'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '055'
|
||||
down_revision = '054'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.add_column(
|
||||
'comments', sa.Column('in_reply_to', sa.Integer(), nullable=True))
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2016-03-04 13:31:01.600372
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '056'
|
||||
down_revision = '055'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@ -31,6 +27,11 @@ from sqlalchemy.dialects import mysql
|
||||
import storyboard
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '056'
|
||||
down_revision = '055'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table(
|
||||
'worklist_filters',
|
||||
|
@ -28,16 +28,17 @@ Create Date: 2016-04-27 15:45:51.646556
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '057'
|
||||
down_revision = '056'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import mysql
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '057'
|
||||
down_revision = '056'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table(
|
||||
'story_permissions',
|
||||
|
@ -19,14 +19,15 @@ Create Date: 2016-06-01 13:28:19.033906
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '058'
|
||||
down_revision = '057'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '058'
|
||||
down_revision = '057'
|
||||
|
||||
old_type_enum = sa.Enum('task', 'story', 'project', 'project_group')
|
||||
new_type_enum = sa.Enum(
|
||||
'task', 'story', 'project', 'project_group', 'worklist')
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2016-06-21 14:00:20.515139
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '059'
|
||||
down_revision = '058'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
@ -31,6 +27,11 @@ from storyboard.db.decorators import UTCDateTime
|
||||
from storyboard.db.models import MYSQL_MEDIUM_TEXT
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '059'
|
||||
down_revision = '058'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table(
|
||||
'comments_history',
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2016-07-14 15:05:12.369072
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '060'
|
||||
down_revision = '059'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '060'
|
||||
down_revision = '059'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.add_column(
|
||||
'events', sa.Column('board_id', sa.Integer(), nullable=True))
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2017-03-17 10:28:24.567704
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '061'
|
||||
down_revision = '060'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '061'
|
||||
down_revision = '060'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
dialect = op.get_bind().engine.dialect
|
||||
if dialect.supports_alter:
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2018-03-23 14:34:55.656531
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '062'
|
||||
down_revision = '061'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '062'
|
||||
down_revision = '061'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
dialect = op.get_bind().engine.dialect
|
||||
if dialect.supports_alter:
|
||||
|
@ -19,14 +19,15 @@ Create Date: 2018-06-25 17:13:43.992561
|
||||
|
||||
"""
|
||||
|
||||
|
||||
from alembic import op
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '063'
|
||||
down_revision = '062'
|
||||
|
||||
|
||||
from alembic import op
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_index('story_storytags_idx',
|
||||
'story_storytags', ['story_id'])
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2019-03-04 16:24:44.264120
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '064'
|
||||
down_revision = '063'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '064'
|
||||
down_revision = '063'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.add_column('teams', sa.Column('security', sa.Boolean(), nullable=True))
|
||||
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2019-03-07 11:25:31.308033
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '065'
|
||||
down_revision = '064'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '065'
|
||||
down_revision = '064'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.create_table('project_teams',
|
||||
sa.Column('project_id', sa.Integer(), nullable=False),
|
||||
|
@ -19,15 +19,16 @@ Create Date: 2019-03-08 08:57:44.497977
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '066'
|
||||
down_revision = '065'
|
||||
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '066'
|
||||
down_revision = '065'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.add_column('stories', sa.Column('security', sa.Boolean()))
|
||||
|
||||
|
@ -19,10 +19,6 @@ Create Date: 2019-01-27 16:07:04.427155
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '067'
|
||||
down_revision = '066'
|
||||
|
||||
|
||||
from alembic import op
|
||||
from oslo_log import log
|
||||
@ -30,6 +26,11 @@ import sqlalchemy as sa
|
||||
|
||||
import storyboard
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '067'
|
||||
down_revision = '066'
|
||||
|
||||
LOG = log.getLogger(__name__)
|
||||
|
||||
|
||||
|
@ -58,6 +58,7 @@ def table_args():
|
||||
'mysql_charset': "utf8mb4"}
|
||||
return None
|
||||
|
||||
|
||||
# # CUSTOM TYPES
|
||||
|
||||
# A mysql medium text type.
|
||||
@ -664,6 +665,7 @@ class Board(FullText, ModelBuilder, Base):
|
||||
_public_fields = ["id", "title", "description", "creator_id",
|
||||
"project_id", "permission_id", "private", "archived"]
|
||||
|
||||
|
||||
board_permissions = Table(
|
||||
'board_permissions', Base.metadata,
|
||||
Column('board_id', Integer, ForeignKey('boards.id')),
|
||||
@ -701,6 +703,7 @@ class DueDate(FullText, ModelBuilder, Base):
|
||||
secondary='worklist_due_dates',
|
||||
backref='due_dates')
|
||||
|
||||
|
||||
due_date_permissions = Table(
|
||||
'due_date_permissions', Base.metadata,
|
||||
Column('due_date_id', Integer, ForeignKey('due_dates.id')),
|
||||
|
@ -72,7 +72,7 @@ def main():
|
||||
session.execute('ALTER TABLE stories AUTO_INCREMENT = %d;'
|
||||
% (auto_increment,))
|
||||
|
||||
if CONF.origin is 'launchpad':
|
||||
if CONF.origin == 'launchpad':
|
||||
loader = LaunchpadLoader(CONF.from_project, CONF.to_project,
|
||||
set(CONF.only_tags), set(CONF.exclude_tags))
|
||||
loader.run()
|
||||
|
@ -79,8 +79,8 @@ class LaunchpadLoader(object):
|
||||
branch_name = url_parts[-1].lower()
|
||||
project_name = url_parts[-2]
|
||||
|
||||
if (branch_name in releases and
|
||||
project_name == self.reader.project_name):
|
||||
if (branch_name in releases
|
||||
and project_name == self.reader.project_name):
|
||||
branches.append(branch_name)
|
||||
elif branch_name == self.reader.project_name:
|
||||
branches.append('master')
|
||||
|
@ -140,8 +140,8 @@ class NotificationHook(hooks.PecanHook):
|
||||
return None
|
||||
|
||||
def parse(self, s):
|
||||
url_pattern = re.match("^(\/api)?\/v1\/([a-z_]+)\/?([0-9]+)?"
|
||||
"\/?([a-z]+)?\/?([0-9]+)?$", s)
|
||||
url_pattern = re.match(r"^(/api)?/v1/([a-z_]+)/?([0-9]+)?"
|
||||
r"/?([a-z]+)?/?([0-9]+)?$", s)
|
||||
if not url_pattern or url_pattern.groups()[1] == "openid":
|
||||
return None, None, None, None
|
||||
|
||||
|
@ -400,7 +400,7 @@ class SubscriptionEmailWorker(EmailWorkerBase):
|
||||
/{{resource_name}}/{{subresource_name}}/{{method}}.txt
|
||||
/{{resource_name}}/{{subresource_name}}/{{method}}.html (optional)
|
||||
"""
|
||||
## TODO(krotscheck): Templates can also resolve by user language.
|
||||
# TODO(krotscheck): Templates can also resolve by user language.
|
||||
|
||||
if sub_resource_name:
|
||||
base_template = os.path.join(resource_name, sub_resource_name)
|
||||
|
@ -107,8 +107,8 @@ class Subscription(WorkerTaskBase):
|
||||
user = db_api.entity_get(models.User, user_id, session=session)
|
||||
send_notification = get_preference(
|
||||
'receive_notifications_worklists', user)
|
||||
if (send_notification != 'true' and
|
||||
resource.get('worklist_id') is not None):
|
||||
if (send_notification != 'true'
|
||||
and resource.get('worklist_id') is not None):
|
||||
continue
|
||||
|
||||
if resource['event_type'] == 'user_comment':
|
||||
|
@ -146,8 +146,8 @@ class TestStories(base.FunctionalTest):
|
||||
story_types = [2, 1]
|
||||
|
||||
for story_type_id in story_types:
|
||||
response = self.put_json(self.resource +
|
||||
('/%s' % created_story["id"]),
|
||||
response = self.put_json(self.resource
|
||||
+ ('/%s' % created_story["id"]),
|
||||
{'story_type_id': story_type_id})
|
||||
self.assertEqual(story_type_id, response.json['story_type_id'])
|
||||
|
||||
@ -164,8 +164,8 @@ class TestStories(base.FunctionalTest):
|
||||
self.assertEqual(story['private'],
|
||||
created_story['private'])
|
||||
|
||||
response = self.put_json(self.resource +
|
||||
('/%s' % created_story['id']),
|
||||
response = self.put_json(self.resource
|
||||
+ ('/%s' % created_story['id']),
|
||||
{'private': False})
|
||||
updated_story = response.json
|
||||
self.assertFalse(updated_story['private'])
|
||||
|
@ -74,8 +74,9 @@ class TestSubscriptionsAsUser(base.FunctionalTest):
|
||||
search_response_1 = self.get_json(self.resource)
|
||||
self.assertEqual(1, len(search_response_1))
|
||||
|
||||
response2 = self.delete(self.resource + '/' +
|
||||
six.text_type(subscription['id']),
|
||||
response2 = self.delete(self.resource
|
||||
+ '/'
|
||||
+ six.text_type(subscription['id']),
|
||||
expect_errors=True)
|
||||
self.assertEqual(204, response2.status_code)
|
||||
|
||||
@ -106,16 +107,16 @@ class TestSubscriptionsAsUser(base.FunctionalTest):
|
||||
response = self.get_json(self.resource)
|
||||
self.assertEqual(1, len(response))
|
||||
|
||||
response = self.get_json(self.resource +
|
||||
'?target_type=project')
|
||||
response = self.get_json(self.resource
|
||||
+ '?target_type=project')
|
||||
self.assertEqual(1, len(response))
|
||||
|
||||
response = self.get_json(self.resource +
|
||||
'?target_type=project&target_id=1')
|
||||
response = self.get_json(self.resource
|
||||
+ '?target_type=project&target_id=1')
|
||||
self.assertEqual(1, len(response))
|
||||
|
||||
response = self.get_json(self.resource +
|
||||
'?target_type=story&target_id=1')
|
||||
response = self.get_json(self.resource
|
||||
+ '?target_type=story&target_id=1')
|
||||
self.assertEqual(0, len(response))
|
||||
|
||||
def test_create_subscription_for_invalid_resource(self):
|
||||
@ -216,8 +217,9 @@ class TestSubscriptionsAsSuperuser(base.FunctionalTest):
|
||||
search_response_1 = self.get_json(self.resource + '?user_id=3')
|
||||
self.assertEqual(2, len(search_response_1))
|
||||
|
||||
response2 = self.delete(self.resource + '/' +
|
||||
six.text_type(subscription['id']),
|
||||
response2 = self.delete(self.resource
|
||||
+ '/'
|
||||
+ six.text_type(subscription['id']),
|
||||
expect_errors=True)
|
||||
self.assertEqual(204, response2.status_code)
|
||||
|
||||
|
@ -56,8 +56,9 @@ class TestUserTokensAsUser(base.FunctionalTest):
|
||||
self.assertEqual(response.json['access_token'], 'test_token')
|
||||
self.assertIsNotNone(response.json['id'])
|
||||
|
||||
read_response = self.get_json(self.resource + '/' +
|
||||
six.text_type(response.json['id']))
|
||||
read_response = self.get_json(self.resource
|
||||
+ '/'
|
||||
+ six.text_type(response.json['id']))
|
||||
|
||||
self.assertEqual(response.json['user_id'],
|
||||
read_response['user_id'])
|
||||
@ -124,8 +125,9 @@ class TestUserTokensAsUser(base.FunctionalTest):
|
||||
|
||||
new_record['expires_in'] = 3601
|
||||
|
||||
updated = self.put_json(self.resource + '/' +
|
||||
six.text_type(response.json['id']),
|
||||
updated = self.put_json(self.resource
|
||||
+ '/'
|
||||
+ six.text_type(response.json['id']),
|
||||
new_record, expect_errors=True)
|
||||
|
||||
self.assertEqual(updated.json['expires_in'], 3601)
|
||||
@ -142,8 +144,9 @@ class TestUserTokensAsUser(base.FunctionalTest):
|
||||
self.assertIsNotNone(response.json['access_token'])
|
||||
self.assertIsNotNone(response.json['id'])
|
||||
|
||||
response = self.delete(self.resource + '/' +
|
||||
six.text_type(response.json['id']),
|
||||
response = self.delete(self.resource
|
||||
+ '/'
|
||||
+ six.text_type(response.json['id']),
|
||||
expect_errors=True)
|
||||
self.assertEqual(204, response.status_code)
|
||||
|
||||
|
@ -214,6 +214,7 @@ class DbTestCase(WorkingDirTestCase):
|
||||
cls.db_name, err)
|
||||
db_api_base.cleanup()
|
||||
|
||||
|
||||
PATH_PREFIX = '/v1'
|
||||
|
||||
|
||||
|
@ -70,6 +70,7 @@ class DummySMTP_SSL(DummySMTP):
|
||||
def _get_socket(self, host, port, timeout):
|
||||
return None
|
||||
|
||||
|
||||
# Monkeypatch our SMTP Instances.
|
||||
smtplib.SMTP = DummySMTP
|
||||
smtplib.SMTP_SSL = DummySMTP_SSL
|
||||
|
@ -1,4 +1,4 @@
|
||||
hacking>=1.0.0,<1.1.0
|
||||
hacking>=1.0.0
|
||||
|
||||
coverage!=4.4,>=4.0 # Apache-2.0
|
||||
fixtures>=3.0.0 # Apache-2.0/BSD
|
||||
|
@ -93,5 +93,6 @@ def start():
|
||||
srv = simple_server.make_server('0.0.0.0', 8088, api_root)
|
||||
srv.serve_forever()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
start()
|
||||
|
@ -26,8 +26,8 @@ DB_PW=openstack_citest
|
||||
sudo -H mysql -u root -p$DB_ROOT_PW -h localhost -e "
|
||||
DELETE FROM mysql.user WHERE User='';
|
||||
FLUSH PRIVILEGES;
|
||||
GRANT ALL PRIVILEGES ON *.*
|
||||
TO '$DB_USER'@'%' identified by '$DB_PW' WITH GRANT OPTION;"
|
||||
CREATE USER '$DB_USER'@'%' IDENTIFIED BY '$DB_PW';
|
||||
GRANT ALL PRIVILEGES ON *.* TO '$DB_USER'@'%' WITH GRANT OPTION;"
|
||||
|
||||
# Now create our database.
|
||||
mysql -u $DB_USER -p$DB_PW -h 127.0.0.1 -e "
|
||||
|
3
tox.ini
3
tox.ini
@ -50,11 +50,12 @@ commands =
|
||||
|
||||
[flake8]
|
||||
# E125 and E128 are ignored on purpose, they are invalid pep8
|
||||
# W503 is ignored on purpose, it is no longer valid pep8
|
||||
# The following rules should either be addressed or determined to be
|
||||
# skippable long term.
|
||||
# E265 is ignored to make switch to newer hacking easier
|
||||
# H405 is ignored to make switch to newer hacking easier
|
||||
ignore = E125,E128,E265,H405
|
||||
ignore = E125,E128,E265,H405,W503
|
||||
builtins = _
|
||||
show-source = True
|
||||
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|
||||
|
Loading…
Reference in New Issue
Block a user