barbican/barbican/tests/fixture.py
Douglas Mendizábal 55912386d5 Implement Date Filters for Secrets
This CR implements the spec for date filters.  The only difference
between the spec and this CR is the use of the alternative ISO format
(without the "Z") for specifying the dates.  This change was made to
have a more consistent API since the Zulu designation is not used
anywhere in the API where dates are shown to the user.  Additionaly the
libraries used for date-time parsing do not make use of the Zulu
designation either.

Implements: blueprint date-filters
DocImpact
APIImpact

Change-Id: Ic8fbe3d0e8b309bb192aaddf30291d1333756064
2016-07-19 09:27:49 -05:00

74 lines
2.5 KiB
Python

# 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.
import fixtures
from oslo_utils import timeutils
import sqlalchemy as sa
from barbican.model import models
class SessionQueryFixture(fixtures.Fixture):
"""Fixture for testing queries on a session
This fixture creates a SQLAlchemy sessionmaker for an in-memory
sqlite database with sample data.
"""
def _setUp(self):
self._engine = sa.create_engine('sqlite:///:memory:')
self.Session = sa.orm.sessionmaker(bind=self._engine)
self.external_id = 'EXTERNAL_ID'
models.BASE.metadata.create_all(self._engine)
self._load_sample_data()
def _load_sample_data(self):
sess = self.Session()
proj = models.Project()
proj.external_id = self.external_id
sess.add(proj)
sess.commit() # commit to add proj.id
self._add_secret(sess, proj, 'A',
'2016-01-01T00:00:00',
'2016-01-01T00:00:00')
self._add_secret(sess, proj, 'B',
'2016-02-01T00:00:00',
'2016-02-01T00:00:00')
self._add_secret(sess, proj, 'C',
'2016-03-01T00:00:00',
'2016-03-01T00:00:00')
self._add_secret(sess, proj, 'D',
'2016-04-01T00:00:00',
'2016-04-01T00:00:00')
self._add_secret(sess, proj, 'E',
'2016-05-01T00:00:00',
'2016-05-01T00:00:00')
self._add_secret(sess, proj, 'F',
'2016-06-01T00:00:00',
'2016-06-01T00:00:00')
sess.commit() # commit all secrets
def _add_secret(self, session, project, name, created_at, updated_at):
s = models.Secret()
s.name = name
s.created_at = timeutils.parse_isotime(created_at)
s.updated_at = timeutils.parse_isotime(updated_at)
s.project_id = project.id
session.add(s)