forked from Freeseer/freeseer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add database.py tests and refactoring
- Remove test methods that only check function return types - Create resources folder for common test data like test rss feeds - Fix database.py query bugs - Add database folder for database related tests - Refactor common database fixtures into the database conftest file - Refactor comments in database.py - Refactor queries in database.py to have better style and sanitization - Add comments and examples of the presentation time stamps - Remove unused functions from database.py - Add httpretty mock tests for database.py - Add a database schema upgrade test - Add tests that check multiple scenarios of each method in database.py - Replace string % operators with calls to format for nonlog string formatting - Remove several try/finally statements and replaced them with 'with's - Fix an exception logging statement which referred to an out of scope value - Add failure and presentation equality and inequality comparison functions - Add example of parameterized test with fixtures - Fix relative path bug from linux convention to multi-platform in test_rss_feedparser.py - Add fixtures based on summer camp 2010 and 2011 stored data - Add rough copy of new schema Related Freeseer#484 Related Freeseer#667 Related Freeseer#670
- Loading branch information
Stephen Romansky
committed
Dec 18, 2014
1 parent
872c68c
commit 3ba8809
Showing
20 changed files
with
1,994 additions
and
324 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,6 @@ httpretty | |
mock | ||
pep8==1.4.6 | ||
pytest-cov==1.6 | ||
pytest-httpretty==0.2.0 | ||
pytest==2.5.2 | ||
Sphinx<=1.2.3 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
# freeseer - vga/presentation capture software | ||
# | ||
# Copyright (C) 2014 Free and Open Source Software Learning Centre | ||
# http://fosslc.org | ||
# | ||
# 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 3 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, see <http://www.gnu.org/licenses/>. | ||
|
||
# For support, questions, suggestions or any other inquiries, visit: | ||
# http://wiki.github.com/Freeseer/freeseer/ | ||
|
||
import pytest | ||
from PyQt4 import QtCore | ||
|
||
from freeseer.framework.config.profile import Profile | ||
from freeseer.framework.presentation import Presentation | ||
|
||
|
||
@pytest.fixture | ||
def db(tmpdir): | ||
"""Return a new empty QtDBConnector""" | ||
profile = Profile(str(tmpdir), 'testing') | ||
return profile.get_database() | ||
|
||
|
||
@pytest.fixture | ||
def fake_presentation(): | ||
"""Returns a presentation object with fake data. Also demonstrates how to construct time values for presentations""" | ||
today = QtCore.QDate().currentDate() # today | ||
# TODO: The currentDateTime object sets milliseconds. Convert it back to a string then to a QDateTime object again | ||
# to get rid of milliseconds. There has got to be a better solution... | ||
current_time = QtCore.QDateTime.fromString(QtCore.QDateTime().currentDateTime().toString()) # yyyy-mm-ddThh:mm:ss | ||
return Presentation( | ||
title='MITM presentation attacks', | ||
speaker='Alice and Eve', | ||
description='Field survey of current MITM presentation attacks.', | ||
category='Security category', | ||
event='testing event', | ||
room='1300', | ||
date=today, | ||
startTime=current_time.addSecs(60 * 5), | ||
endTime=current_time.addSecs(60 * 10) | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def presentation_sc2010(): | ||
"""Presentation object from the Summercamp2010 rss feed.""" | ||
return Presentation( | ||
title='Managing map data in a database', | ||
speaker='Andrew Ross', | ||
description='''This talk will provide a brief introduction to geospatial technologies. It will focus on ''' | ||
'''managing map data with a relational database. Managing map data with a database provides the atomicity, ''' | ||
'''security, access that is difficult to achieve otherwise. It also provides powerful techniques for querying''' | ||
''' spatial aware data which can enable new insights.''', | ||
category='Intermediate', | ||
event='Summercamp2010', | ||
room='Rom AB113', | ||
date=QtCore.QDate.fromString('2010-05-14T10:45', QtCore.Qt.ISODate), | ||
startTime=QtCore.QDateTime.fromString('2010-05-14T10:45', 'yyyy-MM-ddThh:mm') | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def presentation_sc2011_maxwell_rss(): | ||
"""Creates a presentation from the summercamp2011 csv file""" | ||
return Presentation( | ||
title='Building NetBSD', | ||
speaker='David Maxwell', | ||
description='''People who are interested in learning about operating systems have a lot of topics to absorb,''' | ||
''' but the very first barrier that gets in people's way is that you need to be able to build the software. ''' | ||
'''If you can't build it, you can't make changes. If building it is painful, you'll find other things to do ''' | ||
'''with your time.\n''' | ||
'''\tThe NetBSD Project has a build system that goes far beyond what many other projects implement. Come to ''' | ||
'''this talk about learn about\n''' | ||
'''\tbuild.sh and the features available that make multi-architecture and embedded development environments ''' | ||
'''a breeze with NetBSD.\n''' | ||
'''\tNetBSD website: http://www.NetBSD.org/''', | ||
event='SC2011', | ||
category='Beginner', | ||
room='', | ||
date=QtCore.QDate.fromString('2011-08-17T20:29', QtCore.Qt.ISODate), | ||
startTime=QtCore.QDateTime.fromString('2011-08-17T20:29', 'yyyy-MM-ddThh:mm') | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def presentation_sc2011_maxwell_csv(): | ||
"""Creates a presentation from the summercamp2011 csv file""" | ||
return Presentation( | ||
title='Building NetBSD', | ||
speaker='David Maxwell', | ||
description='''People who are interested in learning about operating systems have a lot of topics to absorb,''' | ||
''' but the very first barrier that gets in people's way is that you need to be able to build the software. ''' | ||
'''If you can't build it, you can't make changes. If building it is painful, you'll find other things to do ''' | ||
'''with your time.\n''' | ||
'''\tThe NetBSD Project has a build system that goes far beyond what many other projects implement. Come to ''' | ||
'''this talk about learn about\n''' | ||
'''\tbuild.sh and the features available that make multi-architecture and embedded development environments ''' | ||
'''a breeze with NetBSD.\n''' | ||
'''\tNetBSD website: http://www.NetBSD.org/''', | ||
event='SC2011', | ||
category='Beginner', | ||
room='None', | ||
date=QtCore.QDate.fromString('2011-08-17T20:29', QtCore.Qt.ISODate), | ||
startTime=QtCore.QDateTime.fromString('2011-08-17T20:29', 'yyyy-MM-ddThh:mm').time().toString('hh:mm ap') | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def presentation_sc2011_dixon(): | ||
"""Presentation from the Summercamp2011 csv file""" | ||
return Presentation( | ||
title='Lecture Broadcast and Capture using BigBlueButton', | ||
speaker='Fred Dixon', | ||
description='''BigBlueButton is an open source web conferencing system for distance education. It's goal is ''' | ||
'''to enable remote students to have a high-quality learning experience. The #1 requested feature we've had ''' | ||
'''over the last year is to integrate record and playback of a session.\n''' | ||
'''\n''' | ||
'''\t\n''' | ||
'''\tFred Dixon and Richard Alam, two of the BigBlueButton committers, will describe the architecture and ''' | ||
'''implementation of record and playback as well as demonstrate the integration with Moodle to show how an ''' | ||
'''educational institution can use BigBlueButton to setup virtual classrooms, record lectures, and provide ''' | ||
'''students access to the recorded content from within the Moodle interface.\n''' | ||
'''\n''' | ||
'''\tWe will also demonstrate an prototype integration with popcorn.js (Mozilla project) using it as a ''' | ||
'''playback client for the recorded content.''', | ||
event='SC2011', | ||
category='Intermediate', | ||
room='', | ||
date='', | ||
startTime='' | ||
) |
Oops, something went wrong.