Skip to content
Snippets Groups Projects
Commit 286ee097 authored by Anders H. Rebner's avatar Anders H. Rebner
Browse files

#57 Samme database-instans brukes overalt

parent 37101eaf
No related branches found
No related tags found
2 merge requests!44#57 Database: testmodus og bruk samme instans overalt,!42WIP: #57 Én databaseinstans og testmodus for database
Pipeline #76780 failed
"""Codebook. """GUI-interface towards database-table 'CodeBook'.
Contains functionality for viewing, editing and inserting new rows Contains functionality for viewing, editing and inserting new rows
in the database-table 'CodeBook'. in the database-table 'CodeBook'.
...@@ -6,7 +6,6 @@ in the database-table 'CodeBook'. ...@@ -6,7 +6,6 @@ in the database-table 'CodeBook'.
from PySide2.QtWidgets import QTableView from PySide2.QtWidgets import QTableView
from PySide2.QtSql import QSqlDatabase, QSqlTableModel from PySide2.QtSql import QSqlDatabase, QSqlTableModel
from PySide2.QtCore import Qt from PySide2.QtCore import Qt
from soitool.database import DBPATH # , Database
from soitool.style import CODEBOOK_HEADER_FONT, CODEBOOK_HEADER_BACKGROUND_CSS from soitool.style import CODEBOOK_HEADER_FONT, CODEBOOK_HEADER_BACKGROUND_CSS
# Name and type of database # Name and type of database
...@@ -17,17 +16,19 @@ DBTYPE = "QSQLITE" ...@@ -17,17 +16,19 @@ DBTYPE = "QSQLITE"
class CodeBookTableView(QTableView): class CodeBookTableView(QTableView):
"""TableView with a model of the 'codebook'-table from database. """TableView with a model of the 'codebook'-table from database.
This modified QTableView creates a CodeBookTableModel, This modified QTableView creates a CodeBookTableModel, which reads the
which reads the codebook-table. codebook-table. User can add, edit, delete and insert entries through this
User can add, edit and insert entries to the database through this View. view.
Parameter 'database' should be an instance of soitool.database.Database,
and is used to create a QSqlDatabase from the database-file.
Raises RuntimeError if database does not open. Raises RuntimeError if database does not open.
""" """
def __init__(self): def __init__(self, database):
super().__init__() super().__init__()
db = QSqlDatabase.addDatabase(DBTYPE, CONNAME) db = QSqlDatabase.addDatabase(DBTYPE, CONNAME)
db.setDatabaseName(DBPATH) db.setDatabaseName(database.db_path)
if not db.open(): if not db.open():
raise RuntimeError("Could not open database.") raise RuntimeError("Could not open database.")
......
...@@ -14,7 +14,6 @@ from reportlab.lib.styles import ParagraphStyle ...@@ -14,7 +14,6 @@ from reportlab.lib.styles import ParagraphStyle
from reportlab.lib import colors from reportlab.lib import colors
from reportlab.lib.pagesizes import A4, portrait from reportlab.lib.pagesizes import A4, portrait
from reportlab.lib.units import cm from reportlab.lib.units import cm
from soitool.database import Database
from soitool.enumerates import CodebookSort from soitool.enumerates import CodebookSort
A4_WIDTH, A4_HEIGHT = A4 A4_WIDTH, A4_HEIGHT = A4
...@@ -53,11 +52,15 @@ TABLE_STYLE = TableStyle( ...@@ -53,11 +52,15 @@ TABLE_STYLE = TableStyle(
) )
def generate_codebook_pdf(small=False, page_size=A4, orientation=portrait): def generate_codebook_pdf(
database, small=False, page_size=A4, orientation=portrait
):
"""Generate PDF with data from database-table 'CodeBook'. """Generate PDF with data from database-table 'CodeBook'.
Parameters Parameters
---------- ----------
database : soitool.database.Database
Reference to database-instance
small : bool, optional small : bool, optional
Data is from full codebook if False (default), Data is from full codebook if False (default),
from small codebook if True. from small codebook if True.
...@@ -75,7 +78,7 @@ def generate_codebook_pdf(small=False, page_size=A4, orientation=portrait): ...@@ -75,7 +78,7 @@ def generate_codebook_pdf(small=False, page_size=A4, orientation=portrait):
title_decode = Paragraph(TITLE_FULL_DECODE, TITLE_STYLE) title_decode = Paragraph(TITLE_FULL_DECODE, TITLE_STYLE)
# Get data from database # Get data from database
data_code, data_decode = get_codebook_data(small) data_code, data_decode = get_codebook_data(database, small)
# Create Tables with data sorted by Word/Code and set predefined style # Create Tables with data sorted by Word/Code and set predefined style
table_code = Table(data_code, repeatRows=1) table_code = Table(data_code, repeatRows=1)
...@@ -130,11 +133,13 @@ def generate_filename(small=False): ...@@ -130,11 +133,13 @@ def generate_filename(small=False):
return f"Kodebok_{today}.pdf" return f"Kodebok_{today}.pdf"
def get_codebook_data(small=False): def get_codebook_data(database, small=False):
"""Read and format codebook-data from database sorted by Word and Code. """Read and format codebook-data from database sorted by Word and Code.
Parameters Parameters
---------- ----------
database : soitool.database.Database
Reference to database-instance
small : bool small : bool
Retrieves full codebook if False (default), small codebook if True. Retrieves full codebook if False (default), small codebook if True.
...@@ -145,9 +150,8 @@ def get_codebook_data(small=False): ...@@ -145,9 +150,8 @@ def get_codebook_data(small=False):
the second list is a decodebook (sorted by Code). the second list is a decodebook (sorted by Code).
""" """
# Get data from CodeBook-table # Get data from CodeBook-table
db = Database() db_data_code = database.get_codebook(small, sort=CodebookSort.WORD)
db_data_code = db.get_codebook(small, sort=CodebookSort.WORD) db_data_decode = database.get_codebook(small, sort=CodebookSort.CODE)
db_data_decode = db.get_codebook(small, sort=CodebookSort.CODE)
# Lists to append column-headers and formatted data # Lists to append column-headers and formatted data
data_code = [] data_code = []
......
...@@ -6,7 +6,7 @@ from datetime import datetime ...@@ -6,7 +6,7 @@ from datetime import datetime
import soitool.coder import soitool.coder
from soitool.enumerates import CodebookSort from soitool.enumerates import CodebookSort
# Set name and path to (future) database # Set name and path to default (, future) database
DBNAME = "database" DBNAME = "database"
CURDIR = os.path.dirname(__file__) CURDIR = os.path.dirname(__file__)
DBPATH = os.path.join(CURDIR, DBNAME) DBPATH = os.path.join(CURDIR, DBNAME)
...@@ -31,18 +31,20 @@ LASTUPDATED = "CREATE TABLE LastUpdated(Timestamp DATETIME PRIMARY KEY)" ...@@ -31,18 +31,20 @@ LASTUPDATED = "CREATE TABLE LastUpdated(Timestamp DATETIME PRIMARY KEY)"
class Database: class Database:
""" """Holds database-connection and related functions.
Holds database-connection and related functions.
Connects to existing db if found, creates new db if not. Connects to existing db if found, creates new db if not.
If db is created, tables are created and filled. If db is created, tables are created and filled.
Uses default database unless parameter 'db_path' is given.
Holds a QTimer that requests an update of CodeBook on every timeout. Holds a QTimer that requests an update of CodeBook on every timeout.
""" """
def __init__(self, db_path=DBPATH): def __init__(self, db_path=DBPATH):
db_exists = os.path.exists(db_path) self.db_path = db_path
db_exists = os.path.exists(self.db_path)
if db_exists: if db_exists:
print("Connecting to existing DB.") print("Connecting to existing DB.")
......
...@@ -42,15 +42,15 @@ class MainWindow(QMainWindow): ...@@ -42,15 +42,15 @@ class MainWindow(QMainWindow):
self.statusBar() self.statusBar()
# Database instance # Database instance
database = Database() self.database = Database()
# Timer for automatic update of codes in CodeBook # Timer for automatic update of codes in CodeBook
self.timer = QTimer() self.timer = QTimer()
# Interval i set to msec since last 24h update # Interval i set to msec since last 24h update
self.timer.setInterval( self.timer.setInterval(
database.seconds_to_next_update(60 * 60 * 24) * 1000 self.database.seconds_to_next_update(60 * 60 * 24) * 1000
) )
self.timer.timeout.connect( self.timer.timeout.connect(
lambda: database.update_codebook_auto(self.timer) lambda: self.database.update_codebook_auto(self.timer)
) )
self.timer.start() self.timer.start()
...@@ -114,14 +114,16 @@ class MainWindow(QMainWindow): ...@@ -114,14 +114,16 @@ class MainWindow(QMainWindow):
# Export full codebook # Export full codebook
export_codebook_full = QAction("Stor kodebok", self) export_codebook_full = QAction("Stor kodebok", self)
export_codebook_full.setStatusTip("Eksporter stor kodebok som PDF") export_codebook_full.setStatusTip("Eksporter stor kodebok som PDF")
export_codebook_full.triggered.connect(generate_codebook_pdf) export_codebook_full.triggered.connect(
partial(generate_codebook_pdf, database=self.database)
)
export_codebook.addAction(export_codebook_full) export_codebook.addAction(export_codebook_full)
# Export small codebook # Export small codebook
export_codebook_small = QAction("Liten kodebok", self) export_codebook_small = QAction("Liten kodebok", self)
export_codebook_small.setStatusTip("Eksporter liten kodebok som PDF") export_codebook_small.setStatusTip("Eksporter liten kodebok som PDF")
export_codebook_small.triggered.connect( export_codebook_small.triggered.connect(
partial(generate_codebook_pdf, small=True) partial(generate_codebook_pdf, database=self.database, small=True)
) )
export_codebook.addAction(export_codebook_small) export_codebook.addAction(export_codebook_small)
...@@ -164,7 +166,7 @@ class MainWindow(QMainWindow): ...@@ -164,7 +166,7 @@ class MainWindow(QMainWindow):
else: else:
# Create widgets # Create widgets
tab = QWidget() tab = QWidget()
view = CodeBookTableView() view = CodeBookTableView(self.database)
row_adder = CodebookRowAdder(view) row_adder = CodebookRowAdder(view)
# Add widgets to layouts # Add widgets to layouts
......
...@@ -5,6 +5,8 @@ from functools import partial ...@@ -5,6 +5,8 @@ from functools import partial
from pathlib import Path from pathlib import Path
from datetime import datetime from datetime import datetime
from soitool import codebook_to_pdf from soitool import codebook_to_pdf
from soitool.database import Database
from test.test_database import TESTDBPATH
SOITOOL_ROOT_PATH = Path(__file__).parent.parent SOITOOL_ROOT_PATH = Path(__file__).parent.parent
...@@ -29,15 +31,20 @@ class ExportTest(unittest.TestCase): ...@@ -29,15 +31,20 @@ class ExportTest(unittest.TestCase):
def test_generate_codebook_pdf(self): def test_generate_codebook_pdf(self):
"""Test generated PDF-file exist.""" """Test generated PDF-file exist."""
self.database = Database(TESTDBPATH)
# Test full codebook (default) # Test full codebook (default)
codebook_to_pdf.generate_codebook_pdf() codebook_to_pdf.generate_codebook_pdf(database=self.database)
file_name = codebook_to_pdf.generate_filename(small=False) file_name = codebook_to_pdf.generate_filename(small=False)
file_path_full = os.path.join(SOITOOL_ROOT_PATH, file_name) file_path_full = os.path.join(SOITOOL_ROOT_PATH, file_name)
# Assert file exists # Assert file exists
self.assertTrue(os.path.exists(file_path_full)) self.assertTrue(os.path.exists(file_path_full))
# Test small codebook # Test small codebook
codebook_to_pdf.generate_codebook_pdf(small=True) codebook_to_pdf.generate_codebook_pdf(
database=self.database, small=True
)
file_name = codebook_to_pdf.generate_filename(small=True) file_name = codebook_to_pdf.generate_filename(small=True)
file_path_small = os.path.join(SOITOOL_ROOT_PATH, file_name) file_path_small = os.path.join(SOITOOL_ROOT_PATH, file_name)
# Assert file exists # Assert file exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment