1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
#
# test_controller.py <Peter.Bienstman@UGent.be>
#
import os
import sys
import shutil
from pytest import raises
from mnemosyne_test import MnemosyneTest
from mnemosyne.libmnemosyne import Mnemosyne
from mnemosyne.libmnemosyne.ui_components.dialogs import *
from mnemosyne.libmnemosyne.ui_components.main_widget import MainWidget
from mnemosyne.libmnemosyne.ui_components.dialogs import ExportDialog
from mnemosyne.libmnemosyne.ui_components.dialogs import ExportMetadataDialog
save_file = ""
answer = None
class Widget(MainWidget):
def get_filename_to_save(self, path, filter, caption=""):
return save_file
def get_filename_to_open(self, path, filter, caption=""):
return os.path.join(os.getcwd(), "dot_test", "default.db")
def show_question(self, question, option0, option1, option2):
return answer
class DataWidget(ExportMetadataDialog):
def values(self):
return {}
class ExportWidget(ExportDialog):
pass
class TestController(MnemosyneTest):
def setup_method(self):
self.initialise_data_dir()
path = os.path.join(os.getcwd(), "..", "mnemosyne", "libmnemosyne",
"renderers")
if path not in sys.path:
sys.path.append(path)
self.mnemosyne = Mnemosyne(upload_science_logs=False, interested_in_old_reps=True,
asynchronous_database=True)
self.mnemosyne.components.insert(0,
("mnemosyne.libmnemosyne.gui_translators.gettext_gui_translator", "GetTextGuiTranslator"))
self.mnemosyne.components.append(\
("test_controller", "Widget"))
self.mnemosyne.components.append(\
("test_controller", "ExportWidget"))
self.mnemosyne.components.append(\
("test_controller", "DataWidget"))
self.mnemosyne.gui_for_component["ScheduledForgottenNew"] = \
[("mnemosyne_test", "TestReviewWidget")]
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "AddCardsDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "EditCardDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "BrowseCardsDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "SyncDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "ManagePluginsDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "ManageCardTypesDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "StatisticsDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "ConfigurationDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "ActivateCardsDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "ImportDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "TipDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "GettingStartedDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "AboutDialog"))
self.mnemosyne.components.append(\
("mnemosyne.libmnemosyne.ui_components.dialogs", "CompactDatabaseDialog"))
self.mnemosyne.initialise(os.path.abspath("dot_test"), automatic_upgrades=False)
self.review_controller().reset()
def test_coverage(self):
global save_file
os.path.join(os.getcwd(), "dot_test", "copy.db")
self.controller().heartbeat()
self.controller().show_add_cards_dialog()
card_type = self.card_type_with_id("2")
fact_data = {"f": "f", "b": "b"}
card_1, card_2 = self.controller().create_new_cards(fact_data,
card_type, grade=-1, tag_names=["default"])
self.review_controller().show_new_question()
self.controller().show_edit_card_dialog()
self.controller().show_new_file_dialog()
self.controller().show_open_file_dialog()
self.controller().show_save_file_as_dialog()
self.controller().show_compact_database_dialog()
self.controller().show_manage_plugins_dialog()
self.controller().show_manage_card_types_dialog()
self.controller().show_browse_cards_dialog()
self.controller().show_configuration_dialog()
self.controller().show_statistics_dialog()
self.controller().show_activate_cards_dialog()
self.controller().show_tip_dialog()
self.controller().show_getting_started_dialog()
self.controller().show_about_dialog()
self.controller().show_download_source_dialog()
self.controller().show_sync_dialog()
def test_star(self):
card_type = self.card_type_with_id("1")
fact_data = {"f": "f", "b": "b"}
card = self.controller().create_new_cards(fact_data,
card_type, grade=-1, tag_names=["default"])[0]
self.review_controller().show_new_question()
self.controller().star_current_card()
card = self.database().card(card._id, is_id_internal=True)
assert "Starred" in card.tag_string()
def test_2(self):
self.controller().show_save_file_as_dialog()
self.controller().show_open_file_dialog()
def test_overwrite(self):
global save_file
os.path.join(os.getcwd(), "dot_test", "default.db")
card_type = self.card_type_with_id("2")
fact_data = {"f": "f", "b": "b"}
card_1, card_2 = self.controller().create_new_cards(fact_data,
card_type, grade=-1, tag_names=["default"])
self.controller().save_file()
self.controller().show_new_file_dialog()
def test_coverage_2(self):
from mnemosyne.libmnemosyne.ui_components.main_widget import MainWidget
w = MainWidget(self.mnemosyne.component_manager)
w.show_information("")
w.show_error("")
w.set_status_bar_message("")
self.controller().show_add_cards_dialog()
self.controller().show_edit_card_dialog()
self.controller().show_insert_sound_dialog("")
self.controller().show_insert_video_dialog("")
self.controller().show_insert_flash_dialog("")
self.controller().show_download_source_dialog()
self.controller().show_sync_dialog()
self.controller().show_manage_plugins_dialog()
self.controller().show_manage_card_types_dialog()
self.controller().show_statistics_dialog()
self.controller().show_configuration_dialog()
self.controller().show_browse_cards_dialog()
self.controller().show_activate_cards_dialog()
self.controller().show_import_file_dialog()
self.controller().show_export_file_dialog()
self.controller().next_rollover = 0
self.controller().heartbeat()
def test_delete_current(self):
card_type = self.card_type_with_id("1")
fact_data = {"f": "1", "b": "1"}
self.controller().create_new_cards(fact_data, card_type, grade=-1, tag_names=[])
fact_data = {"f": "2", "b": "2"}
self.controller().create_new_cards(fact_data, card_type, grade=-1, tag_names=[])
self.review_controller().show_new_question()
self.review_controller().grade_answer(0)
self.review_controller().grade_answer(0)
self.review_controller().grade_answer(2)
global answer
answer = 0
self.controller().delete_current_card()
def test_delete_current_2(self):
card_type = self.card_type_with_id("1")
fact_data = {"f": "1", "b": "1"}
self.controller().create_new_cards(fact_data, card_type, grade=-1, tag_names=[])
fact_data = {"f": "2", "b": "2"}
self.controller().create_new_cards(fact_data, card_type, grade=-1, tag_names=[])
self.review_controller().show_new_question()
self.review_controller().grade_answer(0)
self.review_controller().grade_answer(0)
self.review_controller().grade_answer(0)
self.review_controller().grade_answer(2)
global answer
answer = 0
self.controller().delete_current_card()
def test_retain_only_child_tags(self):
c = self.controller()
assert c._retain_only_child_tags(["a"]) == ["a"]
assert sorted(c._retain_only_child_tags(["a", "b"])) == sorted(["a", "b"])
assert c._retain_only_child_tags(["a", "a::b"]) == ["a::b"]
assert c._retain_only_child_tags(["a", "a::b", "a::b::c"]) == ["a::b::c"]
assert c._retain_only_child_tags(["a", "a::b::c"]) == ["a::b::c"]
assert c._retain_only_child_tags(["a::b", "a::b::c"]) == ["a::b::c"]
assert c._retain_only_child_tags(["a::b::c"]) == ["a::b::c"]
|