示例#1
0
 def testValidate_011(self):
     """
     Test validate on a non-empty mysql section, with user=None and password=None.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig(None, None, "gzip", True, None)
     config.validate()
示例#2
0
 def testAddConfig_003(self):
     """
     Test with no databases, all other values filled in, all=True.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "none", True, None)
     self.validateAddConfig(config)
示例#3
0
 def testValidate_007(self):
     """
     Test validate on a non-empty mysql section, all=False, empty databases.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "bzip2", False, [])
     self.assertRaises(ValueError, config.validate)
示例#4
0
 def testValidate_004(self):
     """
     Test validate on a non-empty mysql section, all=True, empty databases.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "none", True, [])
     config.validate()
示例#5
0
 def testValidate_006(self):
     """
     Test validate on a non-empty mysql section, all=False, databases=None.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "gzip", False, None)
     self.assertRaises(ValueError, config.validate)
示例#6
0
 def testValidate_002(self):
     """
     Test validate on an empty mysql section.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig()
     self.assertRaises(ValueError, config.validate)
示例#7
0
 def testValidate_003(self):
     """
     Test validate on a non-empty mysql section, all=True, databases=None.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "gzip", True, None)
     config.validate()
示例#8
0
 def testAddConfig_004(self):
     """
     Test with no databases, all other values filled in, all=False.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "gzip", False, None)
     self.validateAddConfig(config)
示例#9
0
 def testValidate_001(self):
     """
     Test validate on a None mysql section.
     """
     config = LocalConfig()
     config.mysql = None
     self.assertRaises(ValueError, config.validate)
示例#10
0
 def testConstructor_005(self):
     """
     Test assignment of mysql attribute, valid value.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig()
     self.assertEqual(MysqlConfig(), config.mysql)
示例#11
0
 def testConstructor_004(self):
     """
     Test assignment of mysql attribute, None value.
     """
     config = LocalConfig()
     config.mysql = None
     self.assertEqual(None, config.mysql)
示例#12
0
    def testComparison_004(self):
        """
        Test comparison of two differing objects, mysql differs.
        """
        config1 = LocalConfig()
        config1.mysql = MysqlConfig(user="******")

        config2 = LocalConfig()
        config2.mysql = MysqlConfig(user="******")

        self.assertNotEqual(config1, config2)
        self.assertTrue(not config1 == config2)
        self.assertTrue(config1 < config2)
        self.assertTrue(config1 <= config2)
        self.assertTrue(not config1 > config2)
        self.assertTrue(not config1 >= config2)
        self.assertTrue(config1 != config2)
示例#13
0
 def testValidate_008(self):
     """
     Test validate on a non-empty mysql section, all=False, non-empty databases.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "gzip", False,
                                ["whatever"])
     config.validate()
示例#14
0
    def testComparison_002(self):
        """
        Test comparison of two identical objects, all attributes non-None.
        """
        config1 = LocalConfig()
        config1.mysql = MysqlConfig()

        config2 = LocalConfig()
        config2.mysql = MysqlConfig()

        self.assertEqual(config1, config2)
        self.assertTrue(config1 == config2)
        self.assertTrue(not config1 < config2)
        self.assertTrue(config1 <= config2)
        self.assertTrue(not config1 > config2)
        self.assertTrue(config1 >= config2)
        self.assertTrue(not config1 != config2)
示例#15
0
 def testAddConfig_011(self):
     """
     Test with multiple databases, user=None and password=None but all other values filled in, all=False.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig(None, None, "gzip", True,
                                ["database1", "database2"])
     self.validateAddConfig(config)
示例#16
0
 def testAddConfig_008(self):
     """
     Test with multiple databases, all other values filled in, all=False.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "gzip", True,
                                ["database1", "database2"])
     self.validateAddConfig(config)
示例#17
0
 def testAddConfig_006(self):
     """
     Test with single database, all other values filled in, all=False.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "none", False,
                                ["database"])
     self.validateAddConfig(config)
示例#18
0
 def testAddConfig_005(self):
     """
     Test with single database, all other values filled in, all=True.
     """
     config = LocalConfig()
     config.mysql = MysqlConfig("user", "password", "bzip2", True,
                                ["database"])
     self.validateAddConfig(config)