Exemple #1
0
    def testCommDialog_07(self):
        from livejournal.comboboxdialog import ComboBoxDialog
        from livejournal.dialogcontroller import CommunityDialogController

        dlg = ComboBoxDialog(self.application.mainWindow,
                             "",
                             "",
                             wx.CB_DROPDOWN | wx.CB_SORT)

        # dlg.SetModalResult (wx.ID_OK)
        Tester.dialogTester.appendOk()
        controller = CommunityDialogController(dlg, self.application, "jenyay")
        controller.showDialog()

        Tester.dialogTester.appendOk()
        controller2 = CommunityDialogController(
            dlg, self.application, "jenyay_test")
        controller2.showDialog()

        dlg2 = ComboBoxDialog(self.application.mainWindow,
                              "",
                              "",
                              wx.CB_DROPDOWN | wx.CB_SORT)

        # dlg2.SetModalResult (wx.ID_OK)
        Tester.dialogTester.appendOk()
        controller3 = CommunityDialogController(dlg2, self.application, "jenyay")
        controller3.showDialog()

        self.assertEqual(dlg2.GetStrings(), ["jenyay", "jenyay_test"])
    def testUserDialog_06(self):
        from livejournal.ljconfig import LJConfig
        from livejournal.comboboxdialog import ComboBoxDialog
        from livejournal.dialogcontroller import UserDialogController

        dlg = ComboBoxDialog(Application.mainWindow, u"", u"",
                             wx.CB_DROPDOWN | wx.CB_SORT)

        dlg.SetModalResult(wx.ID_OK)

        LJConfig(Application.config).users.value = [u"jenyay", u"jenyay_test"]

        controller = UserDialogController(dlg, Application, u"")
        controller.showDialog()

        valid_result = u"(:ljuser :)"

        self.assertEqual(controller.result, valid_result)
        self.assertEqual(dlg.GetStrings(), [u"jenyay", u"jenyay_test"])
    def testCommDialog_06(self):
        from livejournal.ljconfig import LJConfig
        from livejournal.comboboxdialog import ComboBoxDialog
        from livejournal.dialogcontroller import CommunityDialogController

        dlg = ComboBoxDialog(self.application.mainWindow, "", "",
                             wx.CB_DROPDOWN | wx.CB_SORT)

        # dlg.SetModalResult (wx.ID_OK)
        Tester.dialogTester.appendOk()

        LJConfig(self.application.config).communities.value = [
            "jenyay", "jenyay_test"
        ]

        controller = CommunityDialogController(dlg, self.application, "")
        controller.showDialog()

        valid_result = "(:ljcomm :)"

        self.assertEqual(controller.result, valid_result)
        self.assertEqual(dlg.GetStrings(), ["jenyay", "jenyay_test"])
    def testUserDialog_07(self):
        from livejournal.comboboxdialog import ComboBoxDialog
        from livejournal.dialogcontroller import UserDialogController

        dlg = ComboBoxDialog(Application.mainWindow, u"", u"",
                             wx.CB_DROPDOWN | wx.CB_SORT)

        dlg.SetModalResult(wx.ID_OK)

        controller = UserDialogController(dlg, Application, u"jenyay")
        controller.showDialog()

        controller2 = UserDialogController(dlg, Application, u"jenyay_test")
        controller2.showDialog()

        dlg2 = ComboBoxDialog(Application.mainWindow, u"", u"",
                              wx.CB_DROPDOWN | wx.CB_SORT)

        dlg2.SetModalResult(wx.ID_OK)

        controller3 = UserDialogController(dlg2, Application, u"jenyay")
        controller3.showDialog()

        self.assertEqual(dlg2.GetStrings(), [u"jenyay", u"jenyay_test"])