Exemple #1
0
 def test_conf_relative(self):
     with tempfile.NamedTemporaryFile(dir='.') as cf:
         with self.mock_option('conf', cf.name), self.mock_option('debug', False):
             cf.write('debug=True\n'.encode('utf-8'))
             cf.flush()
             command = FlowerCommand()
             command.apply_options('flower', argv=['--conf=%s' % os.path.basename(cf.name)])
             self.assertTrue(options.debug)
Exemple #2
0
 def test_conf_relative(self):
     with tempfile.NamedTemporaryFile(dir='.') as cf:
         with self.mock_option('conf', cf.name), self.mock_option('debug', False):
             cf.write('debug=True\n'.encode('utf-8'))
             cf.flush()
             command = FlowerCommand()
             command.apply_options('flower', argv=['--conf=%s' % os.path.basename(cf.name)])
             self.assertTrue(options.debug)
Exemple #3
0
 def test_conf_abs(self):
     with tempfile.NamedTemporaryFile() as cf:
         with self.mock_option('conf', cf.name), self.mock_option('debug', False):
             cf.write('debug=True\n'.encode('utf-8'))
             cf.flush()
             command = FlowerCommand()
             command.apply_options('flower', argv=['--conf=%s' % cf.name])
             self.assertEqual(cf.name, options.conf)
             self.assertTrue(options.debug)
Exemple #4
0
 def test_conf_abs(self):
     with tempfile.NamedTemporaryFile() as cf:
         with self.mock_option('conf', cf.name), self.mock_option('debug', False):
             cf.write('debug=True\n'.encode('utf-8'))
             cf.flush()
             command = FlowerCommand()
             command.apply_options('flower', argv=['--conf=%s' % cf.name])
             self.assertEqual(cf.name, options.conf)
             self.assertTrue(options.debug)
 def test_empty_conf(self):
     with self.mock_option('conf', None):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--conf=/dev/null'])
         self.assertEqual('/dev/null', options.conf)
 def test_default_option(self):
     command = FlowerCommand()
     command.apply_options('flower', argv=[])
     self.assertEqual('flowerconfig.py', options.conf)
 def test_address(self):
     with self.mock_option('address', '127.0.0.1'):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--address=foo'])
         self.assertEqual('foo', options.address)
 def test_port(self):
     with self.mock_option('port', 5555):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--port=123'])
         self.assertEqual(123, options.port)
Exemple #9
0
 def test_address(self):
     with self.mock_option('address', '127.0.0.1'):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--address=foo'])
         self.assertEqual('foo', options.address)
Exemple #10
0
 def test_port(self):
     with self.mock_option('port', 5555):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--port=123'])
         self.assertEqual(123, options.port)
Exemple #11
0
 def test_empty_conf(self):
     with self.mock_option('conf', None):
         command = FlowerCommand()
         command.apply_options('flower', argv=['--conf=/dev/null'])
         self.assertEqual('/dev/null', options.conf)
Exemple #12
0
 def test_default_option(self):
     command = FlowerCommand()
     command.apply_options('flower', argv=[])
     self.assertEqual('flowerconfig.py', options.conf)