Browse Source

Fix issues with calculating abbreviations (closes #15)

pull/27/head
Andrei 8 years ago
parent
commit
db54d2a392
  1. 39
      disco/bot/bot.py
  2. 26
      tests/test_bot.py

39
disco/bot/bot.py

@ -65,6 +65,7 @@ class BotConfig(Config):
The directory plugin configuration is located within. The directory plugin configuration is located within.
""" """
levels = {} levels = {}
plugins = []
plugin_config = {} plugin_config = {}
commands_enabled = True commands_enabled = True
@ -196,28 +197,40 @@ class Bot(LoggingClass):
Called when a plugin is loaded/unloaded to recompute internal state. Called when a plugin is loaded/unloaded to recompute internal state.
""" """
if self.config.commands_group_abbrev: if self.config.commands_group_abbrev:
self.compute_group_abbrev() groups = set(command.group for command in self.commands if command.group)
self.group_abbrev = self.compute_group_abbrev(groups)
self.compute_command_matches_re() self.compute_command_matches_re()
def compute_group_abbrev(self): def compute_group_abbrev(self, groups):
""" """
Computes all possible abbreviations for a command grouping. Computes all possible abbreviations for a command grouping.
""" """
self.group_abbrev = {} # For the first pass, we just want to compute each groups possible
groups = set(command.group for command in self.commands if command.group) # abbreviations that don't conflict with eachother.
possible = {}
for group in groups: for group in groups:
grp = group for index in range(len(group)):
while grp: current = group[:index]
# If the group already exists, means someone else thought they if current in possible:
# could use it so we need yank it from them (and not use it) possible[current] = None
if grp in list(six.itervalues(self.group_abbrev)):
self.group_abbrev = {k: v for k, v in six.iteritems(self.group_abbrev) if v != grp}
else: else:
self.group_abbrev[group] = grp possible[current] = group
grp = grp[:-1] # Now, we want to compute the actual shortest abbreivation out of the
# possible ones
result = {}
for abbrev, group in six.iteritems(possible):
if not group:
continue
if group in result:
if len(abbrev) < len(result[group]):
result[group] = abbrev
else:
result[group] = abbrev
return result
def compute_command_matches_re(self): def compute_command_matches_re(self):
""" """

26
tests/test_bot.py

@ -0,0 +1,26 @@
from unittest import TestCase
from disco.client import ClientConfig, Client
from disco.bot.bot import Bot
class TestBot(TestCase):
def setUp(self):
self.client = Client(ClientConfig(
{'config': 'TEST_TOKEN'}
))
self.bot = Bot(self.client)
def test_command_abbreviation(self):
groups = ['config', 'copy', 'copez', 'copypasta']
result = self.bot.compute_group_abbrev(groups)
self.assertDictEqual(result, {
'config': 'con',
'copypasta': 'copy',
'copez': 'cope',
})
def test_command_abbreivation_conflicting(self):
groups = ['cat', 'cap', 'caz', 'cas']
result = self.bot.compute_group_abbrev(groups)
self.assertDictEqual(result, {})
Loading…
Cancel
Save