Exemplo n.º 1
0
    def test_on_dialog_response_ok_creates_picture_folders_half_exist(self):
        # make sure pictures and thumbs folders respectively do and do not
        # already exist as folders.
        import tempfile
        path = tempfile.mktemp()
        os.mkdir(path)
        view = MockView(combos={'name_combo': [],
                                'type_combo': []})
        prefs.prefs[bauble.conn_list_pref] = {
            'nugkui': {'default': False,
                       'pictures': path,
                       'type': 'SQLite',
                       'file': path + '.db'}}
        (prefs.prefs[prefs.picture_root_pref],
         prefs.prefs[bauble.conn_default_pref],
         ) = os.path.split(path)
        view.reply_file_chooser_dialog = []
        presenter = ConnMgrPresenter(view)
        dialog = MockDialog()
        view.invoked = []
        # invoke action
        presenter.on_dialog_response(dialog, RESPONSE_OK)

        # superfluous action is not performed, view is closed
        # check existence of pictures folder
        self.assertTrue(os.path.isdir(path))
        # check existence of thumbnails folder
        self.assertTrue(os.path.isdir(os.path.join(path, 'thumbs')))
Exemplo n.º 2
0
    def test_on_dialog_response_ok_creates_picture_folders_no_exist(self):
        # make sure thumbnails and pictures folder do not exist.
        import tempfile
        path = tempfile.mktemp()
        # create view and presenter.
        view = MockView(combos={'name_combo': [],
                                'type_combo': []})
        prefs.prefs[bauble.conn_list_pref] = {
            'nugkui': {'default': False,
                       'pictures': path,
                       'type': 'SQLite',
                       'file': path + '.db'}}
        (prefs.prefs[prefs.picture_root_pref],
         prefs.prefs[bauble.conn_default_pref],
         ) = os.path.split(path)
        view.reply_file_chooser_dialog = []
        presenter = ConnMgrPresenter(view)
        dialog = MockDialog()
        view.invoked = []
        # invoke action
        presenter.on_dialog_response(dialog, RESPONSE_OK)

        # check existence of pictures folder
        self.assertTrue(os.path.isdir(path))
        # check existence of thumbnails folder
        self.assertTrue(os.path.isdir(os.path.join(path, 'thumbs')))
Exemplo n.º 3
0
 def test_on_dialog_response_cancel_params_changed(self):
     view = MockView(combos={'name_combo': [], 'type_combo': []})
     prefs.prefs[bauble.conn_list_pref] = {
         'nugkui': {
             'default': False,
             'pictures': '/tmp/nugkui',
             'type': 'SQLite',
             'file': '/tmp/nugkui.db'
         }
     }
     prefs.prefs[bauble.conn_default_pref] = 'nugkui'
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     ## change something
     view.widget_set_value('usedefaults_chkbx', True)
     presenter.on_usedefaults_chkbx_toggled('usedefaults_chkbx')
     ## press escape
     dialog = MockDialog()
     view.reply_yes_no_dialog = [True]
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_CANCEL)
     ## question was asked whether to save
     self.assertFalse('run_message_dialog' in view.invoked)
     self.assertTrue('run_yes_no_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)
Exemplo n.º 4
0
    def test_on_dialog_response_ok_creates_picture_folders_half_exist(self):
        # make sure pictures and thumbs folders respectively do and do not
        # already exist as folders.
        import tempfile
        path = tempfile.mktemp()
        os.mkdir(path)
        view = MockView(combos={'name_combo': [],
                                'type_combo': []})
        prefs.prefs[bauble.conn_list_pref] = {
            'nugkui': {'default': False,
                       'pictures': path,
                       'type': 'SQLite',
                       'file': path + '.db'}}
        (prefs.prefs[prefs.picture_root_pref],
         prefs.prefs[bauble.conn_default_pref],
         ) = os.path.split(path)
        view.reply_file_chooser_dialog = []
        presenter = ConnMgrPresenter(view)
        dialog = MockDialog()
        view.invoked = []
        # invoke action
        presenter.on_dialog_response(dialog, RESPONSE_OK)

        # superfluous action is not performed, view is closed
        # check existence of pictures folder
        self.assertTrue(os.path.isdir(path))
        # check existence of thumbnails folder
        self.assertTrue(os.path.isdir(os.path.join(path, 'thumbs')))
Exemplo n.º 5
0
    def test_on_dialog_response_ok_creates_picture_folders_no_exist(self):
        # make sure thumbnails and pictures folder do not exist.
        import tempfile
        path = tempfile.mktemp()
        # create view and presenter.
        view = MockView(combos={'name_combo': [],
                                'type_combo': []})
        prefs.prefs[bauble.conn_list_pref] = {
            'nugkui': {'default': False,
                       'pictures': path,
                       'type': 'SQLite',
                       'file': path + '.db'}}
        (prefs.prefs[prefs.picture_root_pref],
         prefs.prefs[bauble.conn_default_pref],
         ) = os.path.split(path)
        view.reply_file_chooser_dialog = []
        presenter = ConnMgrPresenter(view)
        dialog = MockDialog()
        view.invoked = []
        # invoke action
        presenter.on_dialog_response(dialog, RESPONSE_OK)

        # check existence of pictures folder
        self.assertTrue(os.path.isdir(path))
        # check existence of thumbnails folder
        self.assertTrue(os.path.isdir(os.path.join(path, 'thumbs')))
Exemplo n.º 6
0
 def test_on_dialog_response_cancel(self):
     view = MockView(combos={'name_combo': [], 'type_combo': []})
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     view.reply_yes_no_dialog = [False]
     presenter.on_dialog_response(dialog, RESPONSE_CANCEL)
     self.assertFalse('run_message_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)
Exemplo n.º 7
0
 def test_on_dialog_response_ok_invalid_params(self):
     view = MockView(combos={'name_combo': [], 'type_combo': []})
     prefs.prefs[bauble.conn_list_pref] = {}
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     presenter.on_dialog_response(dialog, RESPONSE_OK)
     self.assertTrue('run_message_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)
 def test_on_dialog_response_cancel(self):
     view = MockView(combos={"name_combo": [], "type_combo": []})
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     view.reply_yes_no_dialog = [False]
     presenter.on_dialog_response(dialog, RESPONSE_CANCEL)
     self.assertFalse("run_message_dialog" in view.invoked)
     self.assertTrue(dialog.hidden)
 def test_on_dialog_response_ok_invalid_params(self):
     view = MockView(combos={"name_combo": [], "type_combo": []})
     prefs.prefs[bauble.conn_list_pref] = {}
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     presenter.on_dialog_response(dialog, RESPONSE_OK)
     self.assertTrue("run_message_dialog" in view.invoked)
     self.assertTrue(dialog.hidden)
 def test_on_dialog_response_ok_valid_params(self):
     view = MockView(combos={"name_combo": [], "type_combo": []})
     prefs.prefs[bauble.conn_list_pref] = {
         "nugkui": {"default": False, "pictures": "/tmp/nugkui", "type": "SQLite", "file": "/tmp/nugkui.db"}
     }
     prefs.prefs[bauble.conn_default_pref] = "nugkui"
     prefs.prefs[prefs.picture_root_pref] = "/tmp"
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_OK)
     self.assertFalse("run_message_dialog" in view.invoked)
     self.assertTrue(dialog.hidden)
     self.assertEquals(prefs.prefs[prefs.picture_root_pref], "/tmp/nugkui")
Exemplo n.º 11
0
 def test_on_dialog_response_ok_valid_params(self):
     view = MockView(combos={'name_combo': [],
                             'type_combo': []})
     prefs.prefs[bauble.conn_list_pref] = {
         'nugkui': {'default': False,
                    'pictures': '/tmp/nugkui',
                    'type': 'SQLite',
                    'file': '/tmp/nugkui.db'}}
     prefs.prefs[bauble.conn_default_pref] = 'nugkui'
     prefs.prefs[prefs.picture_root_pref] = '/tmp'
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_OK)
     self.assertFalse('run_message_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)
     self.assertEquals(prefs.prefs[prefs.picture_root_pref], '/tmp/nugkui')
Exemplo n.º 12
0
 def test_on_dialog_response_ok_valid_params(self):
     view = MockView(combos={'name_combo': [],
                             'type_combo': []})
     prefs.prefs[bauble.conn_list_pref] = {
         'nugkui': {'default': False,
                    'pictures': '/tmp/nugkui',
                    'type': 'SQLite',
                    'file': '/tmp/nugkui.db'}}
     prefs.prefs[bauble.conn_default_pref] = 'nugkui'
     prefs.prefs[prefs.picture_root_pref] = '/tmp'
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     dialog = MockDialog()
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_OK)
     self.assertFalse('run_message_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)
     self.assertEquals(prefs.prefs[prefs.picture_root_pref], '/tmp/nugkui')
 def test_on_dialog_response_cancel_params_changed(self):
     view = MockView(combos={"name_combo": [], "type_combo": []})
     prefs.prefs[bauble.conn_list_pref] = {
         "nugkui": {"default": False, "pictures": "/tmp/nugkui", "type": "SQLite", "file": "/tmp/nugkui.db"}
     }
     prefs.prefs[bauble.conn_default_pref] = "nugkui"
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     ## change something
     view.widget_set_value("usedefaults_chkbx", True)
     presenter.on_usedefaults_chkbx_toggled("usedefaults_chkbx")
     ## press escape
     dialog = MockDialog()
     view.reply_yes_no_dialog = [True]
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_CANCEL)
     ## question was asked whether to save
     self.assertFalse("run_message_dialog" in view.invoked)
     self.assertTrue("run_yes_no_dialog" in view.invoked)
     self.assertTrue(dialog.hidden)
    def test_on_dialog_response_ok_creates_picture_folders_no_exist(self):
        # make sure thumbnails and pictures folder do not exist.
        import tempfile

        path = tempfile.mktemp()
        # create view and presenter.
        view = MockView(combos={"name_combo": [], "type_combo": []})
        prefs.prefs[bauble.conn_list_pref] = {
            "nugkui": {"default": False, "pictures": path, "type": "SQLite", "file": path + ".db"}
        }
        (prefs.prefs[prefs.picture_root_pref], prefs.prefs[bauble.conn_default_pref]) = os.path.split(path)
        view.reply_file_chooser_dialog = []
        presenter = ConnMgrPresenter(view)
        dialog = MockDialog()
        view.invoked = []
        # invoke action
        presenter.on_dialog_response(dialog, RESPONSE_OK)

        # check existence of pictures folder
        self.assertTrue(os.path.isdir(path))
        # check existence of thumbnails folder
        self.assertTrue(os.path.isdir(os.path.join(path, "thumbs")))
Exemplo n.º 15
0
 def test_on_dialog_response_cancel_params_changed(self):
     view = MockView(combos={'name_combo': [],
                             'type_combo': []})
     prefs.prefs[bauble.conn_list_pref] = {
         'nugkui': {'default': False,
                    'pictures': '/tmp/nugkui',
                    'type': 'SQLite',
                    'file': '/tmp/nugkui.db'}}
     prefs.prefs[bauble.conn_default_pref] = 'nugkui'
     view.reply_file_chooser_dialog = []
     presenter = ConnMgrPresenter(view)
     ## change something
     view.widget_set_value('usedefaults_chkbx', True)
     presenter.on_usedefaults_chkbx_toggled('usedefaults_chkbx')
     ## press escape
     dialog = MockDialog()
     view.reply_yes_no_dialog = [True]
     view.invoked = []
     presenter.on_dialog_response(dialog, RESPONSE_CANCEL)
     ## question was asked whether to save
     self.assertFalse('run_message_dialog' in view.invoked)
     self.assertTrue('run_yes_no_dialog' in view.invoked)
     self.assertTrue(dialog.hidden)