Levi Blackstone 3b7e69c972 Add PEP8 check and fix related issues
- Add PEP8 section to tox.ini
- Add hacking to requirements to enforce OpenStack style requirements
- Fix formatting issues flagged by flake8 check
- Add copyright notices to all remaining files
- Update .gitignore file

Change-Id: I7e9a0203ddf2002c08ac96800fe30c1c46ebba88
2015-05-05 07:43:17 -05:00

117 lines
3.8 KiB
Python

# Copyright (c) 2014 Dark Secret Software Inc.
#
# 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 datetime
import json
import os
import shutil
import unittest
import notification_utils
import notigen
from shoebox import roll_checker
from shoebox import roll_manager
TEMPDIR = "test_temp"
class ArchiveCallback(object):
def __init__(self):
self.active_files = {}
self.ordered_files = []
def on_open(self, filename):
self.active_files[filename] = True
self.ordered_files.append(filename)
def on_close(self, filename):
self.active_files[filename] = False
class VerifyArchiveCallback(object):
def __init__(self, original_files):
self.original_files = original_files
def on_open(self, filename):
o = self.original_files.pop(0)
if filename != o:
raise Exception("Wrong order: Got %s, Expected %s" %
(filename, o))
def on_close(self, filename):
pass
class TestSizeRolling(unittest.TestCase):
def setUp(self):
shutil.rmtree(TEMPDIR, ignore_errors=True)
os.mkdir(TEMPDIR)
def test_size_rolling(self):
callback = ArchiveCallback()
checker = roll_checker.SizeRollChecker(roll_size_mb=1)
manager = roll_manager.WritingRollManager("test_%Y_%m_%d_%X_%f.events",
checker,
TEMPDIR,
archive_callback=callback)
g = notigen.EventGenerator("test/integration/templates")
entries = []
now = datetime.datetime.utcnow()
while len(entries) < 10000:
events = g.generate(now)
if events:
for event in events:
metadata = {
'event': event['event_type'],
'request_id': event['_context_request_id'],
'generated': str(event['timestamp']),
'uuid': event.get('payload', {}).get(
"instance_id", ""),
}
json_event = json.dumps(
event,
cls=notification_utils.DateTimeEncoder)
manager.write(metadata, json_event)
entries.append((metadata, json_event))
now = g.move_to_next_tick(now)
manager.close()
for filename, is_open in callback.active_files.items():
self.assertFalse(is_open)
vcallback = VerifyArchiveCallback(callback.ordered_files)
manager = roll_manager.ReadingRollManager("test_*.events",
TEMPDIR,
archive_callback=vcallback)
while True:
try:
# By comparing the json'ed version of
# the payloads we avoid all the issues
# with unicode and datetime->decimal conversions.
metadata, jpayload = manager.read()
orig_metadata, orig_jpayload = entries.pop(0)
self.assertEqual(orig_metadata, metadata)
self.assertEqual(orig_jpayload, jpayload)
except roll_manager.NoMoreFiles:
break
self.assertEqual(0, len(vcallback.original_files))