Ejemplo n.º 1
0
 def test_with_plugin_section(self):
     bot = MockBot(StringIO(base_config + plugin_config))
     self.assertTrue('mockplugin' in bot.plugins)
     plugin = bot.plugins['mockplugin']
     # Check that values override defaults
     self.assertEqual(plugin.config_get('default'), 'config1')
     # Check that values override environment variables
     self.assertEqual(plugin.config_get('env_only'), 'config3')
     with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
         self.assertEqual(plugin.config_get('env_only'), 'config3')
Ejemplo n.º 2
0
def test_with_plugin_section(bot_helper):
    bot = bot_helper.bot
    assert 'mockplugin' in bot.plugins
    plugin = bot.plugins['mockplugin']
    # Check that values override defaults
    assert plugin.config_get('default') == 'config1'
    # Check that values override environment variables
    assert plugin.config_get('env_only') == 'config3'
    with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
        assert plugin.config_get('env_only') == 'config3'
Ejemplo n.º 3
0
def test_with_plugin_section(bot_helper):
    bot = bot_helper.bot
    assert 'mockplugin' in bot.plugins
    plugin = bot.plugins['mockplugin']
    # Check that values override defaults
    assert plugin.config_get('default') == 'config1'
    # Check that values override environment variables
    assert plugin.config_get('env_only') == 'config3'
    with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
        assert plugin.config_get('env_only') == 'config3'
Ejemplo n.º 4
0
 def test_without_plugin_section(self):
     bot = MockBot(StringIO(base_config))
     # Check the test plugin was loaded
     self.assertTrue('mockplugin' in bot.plugins)
     plugin = bot.plugins['mockplugin']
     # Check than absent config options are properly absent
     self.assertRaises(KeyError, plugin.config_get, 'absent')
     # Check that default values work
     self.assertEqual(plugin.config_get('default'), 'a default value')
     # Check that environment variables work, if present
     self.assertRaises(KeyError, plugin.config_get, 'env_only')
     with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
         self.assertEqual(plugin.config_get('env_only'), 'env value')
     # Check that environment variables override defaults
     self.assertEqual(plugin.config_get('env_and_default'),
                      'default, not env')
     with TempEnvVars({'CSBOTTEST_ENV_AND_DEFAULT': 'env, not default'}):
         self.assertEqual(plugin.config_get('env_and_default'),
                          'env, not default')
     # Check that environment variable order is obeyed
     self.assertRaises(KeyError, plugin.config_get, 'multiple_env')
     with TempEnvVars({'CSBOTTEST_ENV_MULTI_2': 'lowest priority'}):
         self.assertEqual(plugin.config_get('multiple_env'),
                          'lowest priority')
         with TempEnvVars({'CSBOTTEST_ENV_MULTI_1': 'highest priority'}):
             self.assertEqual(plugin.config_get('multiple_env'),
                              'highest priority')
Ejemplo n.º 5
0
def test_without_plugin_section(bot_helper):
    bot = bot_helper.bot
    # Check the test plugin was loaded
    assert 'mockplugin' in bot.plugins
    plugin = bot.plugins['mockplugin']
    # Check than absent config options are properly absent
    with pytest.raises(KeyError):
        plugin.config_get('absent')
    # Check that default values work
    assert plugin.config_get('default') == 'a default value'
    # Check that environment variables work, if present
    with pytest.raises(KeyError):
        plugin.config_get('env_only')
    with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
        assert plugin.config_get('env_only') == 'env value'
    # Check that environment variables override defaults
    assert plugin.config_get('env_and_default') == 'default, not env'
    with TempEnvVars({'CSBOTTEST_ENV_AND_DEFAULT': 'env, not default'}):
        assert plugin.config_get('env_and_default') == 'env, not default'
    # Check that environment variable order is obeyed
    with pytest.raises(KeyError):
        plugin.config_get('multiple_env')
    with TempEnvVars({'CSBOTTEST_ENV_MULTI_2': 'lowest priority'}):
        assert plugin.config_get('multiple_env') == 'lowest priority'
        with TempEnvVars({'CSBOTTEST_ENV_MULTI_1': 'highest priority'}):
            assert plugin.config_get('multiple_env') == 'highest priority'
Ejemplo n.º 6
0
def test_without_plugin_section(bot_helper):
    bot = bot_helper.bot
    # Check the test plugin was loaded
    assert 'mockplugin' in bot.plugins
    plugin = bot.plugins['mockplugin']
    # Check than absent config options are properly absent
    with pytest.raises(KeyError):
        plugin.config_get('absent')
    # Check that default values work
    assert plugin.config_get('default') == 'a default value'
    # Check that environment variables work, if present
    with pytest.raises(KeyError):
        plugin.config_get('env_only')
    with TempEnvVars({'CSBOTTEST_ENV_ONLY': 'env value'}):
        assert plugin.config_get('env_only') == 'env value'
    # Check that environment variables override defaults
    assert plugin.config_get('env_and_default') == 'default, not env'
    with TempEnvVars({'CSBOTTEST_ENV_AND_DEFAULT': 'env, not default'}):
        assert plugin.config_get('env_and_default') == 'env, not default'
    # Check that environment variable order is obeyed
    with pytest.raises(KeyError):
        plugin.config_get('multiple_env')
    with TempEnvVars({'CSBOTTEST_ENV_MULTI_2': 'lowest priority'}):
        assert plugin.config_get('multiple_env') == 'lowest priority'
        with TempEnvVars({'CSBOTTEST_ENV_MULTI_1': 'highest priority'}):
            assert plugin.config_get('multiple_env') == 'highest priority'