-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
verifying by tests that operation dir gets removed on delete (#1449)
* skyfield_data updated * tests for handle_db_seed * improved UI delete operation test
- Loading branch information
1 parent
f54cfcc
commit 690fe58
Showing
2 changed files
with
96 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
mslib.mscolab._tests.test_mscolab | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
tests for mscolab functionalities | ||
This file is part of mss. | ||
:copyright: Copyright 2019 Shivashis Padhi | ||
:copyright: Copyright 2019-2022 by the mss team, see AUTHORS. | ||
:license: APACHE-2.0, see LICENSE for details. | ||
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 os | ||
from flask_testing import TestCase | ||
|
||
from mslib.mscolab.conf import mscolab_settings | ||
from mslib.mscolab.models import db, Operation, User, Permission | ||
from mslib.mscolab.mscolab import handle_db_init, handle_db_reset, handle_db_seed | ||
from mslib.mscolab.server import APP | ||
from mslib.mscolab.seed import add_operation | ||
|
||
|
||
class Test_Mscolab(TestCase): | ||
def create_app(self): | ||
app = APP | ||
app.config['SQLALCHEMY_DATABASE_URI'] = mscolab_settings.SQLALCHEMY_DB_URI | ||
app.config['MSCOLAB_DATA_DIR'] = mscolab_settings.MSCOLAB_DATA_DIR | ||
app.config['UPLOAD_FOLDER'] = mscolab_settings.UPLOAD_FOLDER | ||
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False | ||
app.config["TESTING"] = True | ||
app.config['LIVESERVER_TIMEOUT'] = 10 | ||
app.config['LIVESERVER_PORT'] = 0 | ||
return app | ||
|
||
def setUp(self): | ||
db.init_app(self.app) | ||
handle_db_init() | ||
assert Operation.query.all() == [] | ||
assert User.query.all() == [] | ||
assert Permission.query.all() == [] | ||
|
||
def test_handle_db_reset(self): | ||
assert os.path.isdir(mscolab_settings.UPLOAD_FOLDER) | ||
assert os.path.isdir(mscolab_settings.MSCOLAB_DATA_DIR) | ||
all_operations = Operation.query.all() | ||
assert all_operations == [] | ||
operation_name = "Example" | ||
assert add_operation(operation_name, "Test Example") | ||
assert os.path.isdir(os.path.join(mscolab_settings.MSCOLAB_DATA_DIR, operation_name)) | ||
operation = Operation.query.filter_by(path=operation_name).first() | ||
assert operation.description == "Test Example" | ||
all_operations = Operation.query.all() | ||
assert len(all_operations) == 1 | ||
handle_db_reset() | ||
# check operation dir name removed | ||
assert os.path.isdir(os.path.join(mscolab_settings.MSCOLAB_DATA_DIR, operation_name)) is False | ||
assert os.path.isdir(mscolab_settings.MSCOLAB_DATA_DIR) | ||
assert os.path.isdir(mscolab_settings.UPLOAD_FOLDER) | ||
# query db for operation_name | ||
operation = Operation.query.filter_by(path=operation_name).first() | ||
assert operation is None | ||
all_operations = Operation.query.all() | ||
assert all_operations == [] | ||
|
||
def test_handle_db_seed(self): | ||
handle_db_reset() | ||
all_operations = Operation.query.all() | ||
assert all_operations == [] | ||
handle_db_seed() | ||
all_operations = Operation.query.all() | ||
assert len(all_operations) == 6 | ||
assert all_operations[0].path == "one" | ||
all_users = User.query.all() | ||
assert len(all_users) == 10 | ||
all_permissions = Permission.query.all() | ||
assert len(all_permissions) == 17 |
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