1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
"""Test CLI functionality"""
# pylint: disable=C0115, C0116, invalid-name
import os
from curator.exceptions import ConfigurationError
from curator.helpers.getters import get_indices
from . import CuratorTestCase
from . import testvars
HOST = os.environ.get('TEST_ES_SERVER', 'http://127.0.0.1:9200')
class TestCLIMethods(CuratorTestCase):
def test_bad_client_config(self):
self.create_indices(10)
self.write_config(
self.args['configfile'], testvars.bad_client_config.format(HOST)
)
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner()
assert 1 == self.result.exit_code
def test_cli_client_config(self):
self.create_indices(10)
self.write_config(
self.args['configfile'], testvars.bad_client_config.format(HOST)
)
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner_alt(
hosts='http://127.0.0.1:9200', loglevel='DEBUG', logformat='ecs'
)
assert 0 == self.result.exit_code
def test_cli_unreachable_cloud_id(self):
self.create_indices(10)
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner_alt(cloud_id='abc:def', username='user', password='pass')
assert 1 == self.result.exit_code
def test_no_config(self):
# This test checks whether localhost:9200 is provided if no hosts or
# port are in the configuration. But in testing, sometimes
# TEST_ES_SERVER is set to something other than localhost:9200. In this
# case, the test here would fail. The if statement at the end now
# compensates. See https://github.com/elastic/curator/issues/843
localtest = False
if HOST == 'http://127.0.0.1:9200':
localtest = True
self.create_indices(10)
self.write_config(self.args['configfile'], '---\n') # Empty YAML file.
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner()
if localtest:
assert 0 == self.result.exit_code
else:
assert -1 == self.result.exit_code
def test_no_logging_config(self):
self.create_indices(10)
self.write_config(
self.args['configfile'], testvars.no_logging_config.format(HOST)
)
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner()
assert 0 == self.result.exit_code
def test_logging_none(self):
self.create_indices(10)
self.write_config(
self.args['configfile'], testvars.none_logging_config.format(HOST)
)
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner()
assert 0 == self.result.exit_code
def test_invalid_action(self):
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'], testvars.optionless_proto.format('invalid_action')
)
self.invoke_runner()
assert 1 == self.result.exit_code
def test_action_is_none(self):
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'], testvars.optionless_proto.format(' ')
)
self.invoke_runner()
assert isinstance(self.result.exception, ConfigurationError)
def test_no_action(self):
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(self.args['actionfile'], testvars.actionless_proto)
self.invoke_runner()
assert isinstance(self.result.exception, ConfigurationError)
def test_dry_run(self):
self.create_indices(10)
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'],
testvars.delete_proto.format(
'age', 'name', 'older', '\'%Y.%m.%d\'', 'days', 5, ' ', ' ', ' '
),
)
self.invoke_runner(dry_run=True)
assert 10 == len(get_indices(self.client))
def test_action_disabled(self):
self.create_indices(10)
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'],
testvars.disabled_proto.format('close', 'delete_indices'),
)
self.invoke_runner()
assert 0 == len(get_indices(self.client))
assert 0 == self.result.exit_code
# I'll have to think up another way to create an exception.
# The exception that using "alias" created, a missing argument,
# is caught too early for this to actually run the test now :/
def test_continue_if_exception(self):
name = 'log1'
self.create_index(name)
self.create_index('log2')
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'],
testvars.continue_proto.format(name, True, 'delete_indices', False),
)
self.invoke_runner()
assert 0 == len(get_indices(self.client))
assert 0 == self.result.exit_code
def test_continue_if_exception_false(self):
name = 'log1'
self.create_index(name)
self.create_index('log2')
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'],
testvars.continue_proto.format(name, False, 'delete_indices', False),
)
self.invoke_runner()
assert 2 == len(get_indices(self.client))
assert 1 == self.result.exit_code
def test_no_options_in_action(self):
self.create_indices(10)
self.create_index('my_index') # Added for the ILM filter's sake
self.write_config(self.args['configfile'], testvars.client_config.format(HOST))
self.write_config(
self.args['actionfile'], testvars.no_options_proto.format('delete_indices')
)
self.invoke_runner(dry_run=True)
assert 0 == self.result.exit_code
|