Starting python tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2024-09-18 00:30:58 +02:00
parent b50d56d511
commit 9072e94d14
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
8 changed files with 66 additions and 28 deletions

7
.gitignore vendored
View file

@ -22,15 +22,14 @@ linux/flatpak/.flatpak-builder
**/__pycache__/ **/__pycache__/
.ropeproject .ropeproject
.vscode .vscode
*.kdev4
.kdev4
.coverage
build build
docs/html docs/html
.directory .directory
*.kdev4
*.lpf *.lpf
*.lgg *.lgg
*.spec *.spec
.kdev4
AccountFree.pro
AccountFree.pro.user
*.egg-info/ *.egg-info/
*.tar.gz *.tar.gz

View file

@ -21,7 +21,6 @@ from platform import system
from json import load, dumps from json import load, dumps
from PySide6.QtCore import QLocale, QTranslator from PySide6.QtCore import QLocale, QTranslator
DEFAULT_SETTINGS = { DEFAULT_SETTINGS = {
"check_for_updates": True, "check_for_updates": True,
"reset_redo_stack": True, "reset_redo_stack": True,
@ -63,14 +62,18 @@ CONFIG_PATH = {
CONFIG_FILE = path.join(CONFIG_PATH, "config.json") CONFIG_FILE = path.join(CONFIG_PATH, "config.json")
initialized = False
current_config = DEFAULT_SETTINGS current_config = DEFAULT_SETTINGS
class UnknownNamespaceError(Exception): pass
def init(): def init():
""" """
Initializes the config and loads all possible settings from the file if needs be. Initializes the config and loads all possible settings from the file if needs be.
""" """
global current_config
current_config = DEFAULT_SETTINGS
makedirs(CONFIG_PATH, exist_ok=True) makedirs(CONFIG_PATH, exist_ok=True)
if path.exists(CONFIG_FILE): if path.exists(CONFIG_FILE):
@ -82,14 +85,16 @@ def init():
else: else:
setSetting(setting_name, cfg_data[setting_name]) setSetting(setting_name, cfg_data[setting_name])
def save():
def save(file=CONFIG_FILE):
""" """
Saves the config to the path. Saves the config to the path.
""" """
write_file = open(CONFIG_FILE, 'w', -1, 'utf8') write_file = open(file, 'w', -1, 'utf8')
write_file.write(dumps(current_config)) write_file.write(dumps(current_config))
write_file.close() write_file.close()
def getSetting(namespace): def getSetting(namespace):
""" """
Returns a setting from a namespace. Returns a setting from a namespace.
@ -103,9 +108,10 @@ def getSetting(namespace):
setting = setting[name] setting = setting[name]
else: else:
# return namespace # Return original name # return namespace # Return original name
raise ValueError('Setting ' + namespace + ' doesn\'t exist. Debug: ', setting, name) raise UnknownNamespaceError(f"Setting {namespace} doesn't exist. Debug: {setting}, {name}")
return setting return setting
def setSetting(namespace, data): def setSetting(namespace, data):
""" """
Sets a setting at a namespace with data. Sets a setting at a namespace with data.
@ -119,6 +125,6 @@ def setSetting(namespace, data):
if name in setting: if name in setting:
setting = setting[name] setting = setting[name]
else: else:
raise ValueError('Setting {} doesn\'t exist. Debug: {}, {}'.format(namespace, setting, name)) raise UnknownNamespaceError(f"Setting {namespace} doesn't exist. Debug: {setting}, {name}")
else: else:
setting[name] = data setting[name] = data

View file

@ -32,6 +32,9 @@ from LogarithmPlotter import __VERSION__
from LogarithmPlotter.util import config from LogarithmPlotter.util import config
class InvalidFileException(Exception): pass
class ChangelogFetcher(QRunnable): class ChangelogFetcher(QRunnable):
def __init__(self, helper): def __init__(self, helper):
QRunnable.__init__(self) QRunnable.__init__(self)
@ -94,8 +97,8 @@ class Helper(QObject):
pass pass
elif data[:3] == "LPF": elif data[:3] == "LPF":
# More recent version of LogarithmPlotter file, but incompatible with the current format # More recent version of LogarithmPlotter file, but incompatible with the current format
msg = QCoreApplication.translate("This file was created by a more recent version of LogarithmPlotter and cannot be backloaded in LogarithmPlotter v{}.\nPlease update LogarithmPlotter to open this file.".format(__VERSION__)) msg = QCoreApplication.translate("This file was created by a more recent version of LogarithmPlotter and cannot be backloaded in LogarithmPlotter v{}.\nPlease update LogarithmPlotter to open this file.")
raise Exception(msg) raise InvalidFileException(msg.format(__VERSION__))
else: else:
raise Exception("Invalid LogarithmPlotter file.") raise Exception("Invalid LogarithmPlotter file.")
except Exception as e: # If file can't be loaded except Exception as e: # If file can't be loaded
@ -131,7 +134,6 @@ class Helper(QObject):
@Slot(str, result=float) @Slot(str, result=float)
def getSettingInt(self, namespace): def getSettingInt(self, namespace):
print('Getting', namespace, config.getSetting(namespace))
return config.getSetting(namespace) return config.getSetting(namespace)
@Slot(str, result=bool) @Slot(str, result=bool)

View file

@ -18,6 +18,7 @@
from PySide6.QtQml import QJSValue from PySide6.QtQml import QJSValue
class InvalidAttributeValueException(Exception): pass
class PyJSValue: class PyJSValue:
""" """
@ -38,15 +39,32 @@ class PyJSValue:
elif isinstance(value, PyJSValue): elif isinstance(value, PyJSValue):
# Set property # Set property
self.qjs_value.setProperty(key, value.qjs_value) self.qjs_value.setProperty(key, value.qjs_value)
else: elif isinstance(value, QJSValue):
print('Setting', key, value)
self.qjs_value.setProperty(key, value) self.qjs_value.setProperty(key, value)
elif type(value) in (int, float, str, bool):
self.qjs_value.setProperty(key, QJSValue(value))
else:
raise InvalidAttributeValueException(f"Invalid value {value} of type {type(value)} being set to {key}.")
def __eq__(self, other):
if isinstance(other, PyJSValue):
return self.qjs_value.equals(other.qjs_value)
elif isinstance(other, QJSValue):
return self.qjs_value.equals(other)
elif type(other) in (int, float, str, bool):
return self.qjs_value.equals(QJSValue(other))
else:
return False
def __call__(self, *args, **kwargs): def __call__(self, *args, **kwargs):
value = None
if self.qjs_value.isCallable(): if self.qjs_value.isCallable():
if self._parent is None: if self._parent is None:
return self.qjs_value.call(args) value = self.qjs_value.call(args)
else: else:
return self.qjs_value.callWithInstance(self._parent, args) value = self.qjs_value.callWithInstance(self._parent, args)
else: else:
raise ValueError('Cannot call non-function JS value.') raise InvalidAttributeValueException('Cannot call non-function JS value.')
if isinstance(value, QJSValue):
value = PyJSValue(value)
return value

View file

@ -41,11 +41,6 @@ For all builds, you need [Python 3](https://python.org) with [PySide6](https://p
- To build the snap, you need [snapcraft](https://snapcraft.io) installed. - To build the snap, you need [snapcraft](https://snapcraft.io) installed.
- Run `package-linux.sh`. - Run `package-linux.sh`.
### Linux
Run `bash linux/install_local.sh`
## Contribute ## Contribute
There are several ways to contribute to LogarithmPlotter. There are several ways to contribute to LogarithmPlotter.
@ -54,6 +49,14 @@ There are several ways to contribute to LogarithmPlotter.
- You can help the development of LogarithmPlotter. In order to get started, take a look at the [wiki](https://git.ad5001.eu/Ad5001/LogarithmPlotter/wiki/_pages). - You can help the development of LogarithmPlotter. In order to get started, take a look at the [wiki](https://git.ad5001.eu/Ad5001/LogarithmPlotter/wiki/_pages).
## Tests
To run LogarithmPlotter's test, use the following:
- Python
- Install `pytest` and `pytest-cov`
- Run `pytest --cov`
## Legal notice ## Legal notice
LogarithmPlotter - 2D plotter software to make BODE plots, sequences and repartition functions. LogarithmPlotter - 2D plotter software to make BODE plots, sequences and repartition functions.
Copyright (C) 2021-2024 Ad5001 <mail@ad5001.eu> Copyright (C) 2021-2024 Ad5001 <mail@ad5001.eu>

View file

@ -0,0 +1,10 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()

View file

View file