Example #1
0
 def test_argument_count(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid number of arguments "):
         coc.check_line("server 10.0.0.0/8",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid number of arguments "):
         coc.check_line("keepalive 10", ConfigTestKeywords.config_keywords)
Example #2
0
 def test_argument_type_int(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid integer value "):
         coc.check_line("keepalive 1O 20",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid integer value "):
         coc.check_line("keepalive 10 -20",
                        ConfigTestKeywords.config_keywords)
Example #3
0
 def test_argument_type_enum(self):
     coc.check_line("resolv-retry 0", ConfigTestKeywords.config_keywords)
     coc.check_line("resolv-retry 10", ConfigTestKeywords.config_keywords)
     coc.check_line("resolv-retry infinite",
                    ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid number of arguments "):
         coc.check_line("resolv-retry   ",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid enumeration value "):
         coc.check_line("proto ucp", ConfigTestKeywords.config_keywords)
Example #4
0
 def test_argument_type_string(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid string format "):
         coc.check_line("push route 10.10.0.0 255.0.0.0",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid string format "):
         coc.check_line("push \"route 10.10.0.0 255.0.0.0",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid string format "):
         coc.check_line("push route \"10.10.0.0 255.0.0.0\"",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid string format "):
         coc.check_line("push \"route \"10.10.0.0 255.0.0.0\"",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid number of arguments "):
         coc.check_line("push", ConfigTestKeywords.config_keywords)
Example #5
0
 def test_optional_argument(self):
     coc.check_line("server 10.0.0.0 255.0.0.0",
                    ConfigTestKeywords.config_keywords)
     coc.check_line("server 10.0.0.0 255.0.0.0 nopool",
                    ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid enumeration value "):
         coc.check_line("server 10.0.0.0 255.0.0.0 nopoll",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid optional argument "):
         coc.check_line("server 10.0.0.0 255.0.0.0 nopool invalid",
                        ConfigTestKeywords.config_keywords)
Example #6
0
 def test_argument_type_ipv4net(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid IP network address "):
         coc.check_line("server 10.10.0.0 255.0.0.0",
                        ConfigTestKeywords.config_keywords)
Example #7
0
 def test_argument_type_ipv4(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid IP address "):
         coc.check_line("local 10.0.0.O",
                        ConfigTestKeywords.config_keywords)
Example #8
0
 def test_argument_type_ascii(self):
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid ascii value "):
         coc.check_line("key server.keĆ¼",
                        ConfigTestKeywords.config_keywords)
Example #9
0
 def test_missing_keyword(self):
     with self.assertRaisesRegex(BaseException, "ERROR: Unknown keyword "):
         coc.check_line("servers 10.0.0.0 255.0.0.0",
                        ConfigTestKeywords.config_keywords)
Example #10
0
 def test_noarguments(self):
     coc.check_line("client", ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(
             BaseException, "ERROR: Keyword 'client' takes no arguments"):
         coc.check_line("client 10.0.0.0",
                        ConfigTestKeywords.config_keywords)
Example #11
0
 def test_multiple_optional_arguments(self):
     coc.check_line("remote 10.10.10.1", ConfigTestKeywords.config_keywords)
     coc.check_line("remote 10.10.10.1 1194",
                    ConfigTestKeywords.config_keywords)
     coc.check_line("remote 10.10.10.1 1194 udp",
                    ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid integer value "):
         coc.check_line("remote 10.10.10.1 udp 1194",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid enumeration value "):
         coc.check_line("remote 10.10.10.1 1194 ucp",
                        ConfigTestKeywords.config_keywords)
     with self.assertRaisesRegex(BaseException,
                                 "ERROR: Invalid optional argument "):
         coc.check_line("remote 10.10.10.1 1194 udp invalid",
                        ConfigTestKeywords.config_keywords)