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_01(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"") controller.showDialog() valid_result = u"(:ljuser :)" self.assertEqual(controller.result, valid_result)
def testCommDialog_05(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() controller = CommunityDialogController(dlg, self.application, "jenyay") controller.showDialog() Tester.dialogTester.appendOk() controller2 = CommunityDialogController( dlg, self.application, "jenyay_test") controller2.showDialog() Tester.dialogTester.appendOk() controller3 = CommunityDialogController(dlg, self.application, "jenyay") controller3.showDialog() self.assertEqual(LJConfig(self.application.config).communities.value, [ "jenyay", "jenyay_test"]) self.assertEqual(LJConfig(self.application.config).users.value, [""])
def testUserDialog_03(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) controller = UserDialogController(dlg, Application, u"jenyay") controller.showDialog() controller2 = UserDialogController(dlg, Application, u"jenyay") controller2.showDialog() self.assertEqual(LJConfig(Application.config).users.value, [u"jenyay"])
def testCommDialog_02(self): from livejournal.ljconfig import LJConfig from livejournal.comboboxdialog import ComboBoxDialog from livejournal.dialogcontroller import CommunityDialogController dlg = ComboBoxDialog(Application.mainWindow, u"", u"", wx.CB_DROPDOWN | wx.CB_SORT) dlg.SetModalResult(wx.ID_OK) controller = CommunityDialogController(dlg, Application, u"jenyay") controller.showDialog() valid_result = u"(:ljcomm jenyay:)" self.assertEqual(controller.result, valid_result) self.assertEqual( LJConfig(Application.config).communities.value, [u"jenyay"]) self.assertEqual(LJConfig(Application.config).users.value, [u""])
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 testCommDialog_01(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, "") controller.showDialog() valid_result = "(:ljcomm :)" self.assertEqual(controller.result, valid_result)
def testUserDialog_02(self): from livejournal.ljconfig import LJConfig from livejournal.comboboxdialog import ComboBoxDialog from livejournal.dialogcontroller import UserDialogController dlg = ComboBoxDialog(self.application.mainWindow, "", "", wx.CB_DROPDOWN | wx.CB_SORT) # dlg.SetModalResult (wx.ID_OK) Tester.dialogTester.appendOk() controller = UserDialogController(dlg, self.application, "jenyay") controller.showDialog() valid_result = "(:ljuser jenyay:)" self.assertEqual(controller.result, valid_result) self.assertEqual( LJConfig(self.application.config).users.value, ["jenyay"])
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"])