Example #1
0
  def testFileSystemAction(self):
    CASES = [
        # Dirs and files
        ('c', ['configure', 'core', 'cpp']),
        ('opy/doc', ['opy/doc']),
    ]

    a = completion.FileSystemAction()
    for prefix, expected in CASES:
      log('')
      log('-- PREFIX %r', prefix)
      comp = self._CompApi([], 0, prefix)
      self.assertEqual(expected, sorted(a.Matches(comp)))

    os.system('mkdir -p /tmp/oil_comp_test')
    os.system('bash -c "touch /tmp/oil_comp_test/{one,two,three}"')

    # This test depends on actual file system content.  But we choose things
    # that shouldn't go away.
    ADD_SLASH_CASES = [
        # Dirs and files
        ('c', ['configure', 'core/', 'cpp/']),
        ('nonexistent/', []),
        ('README.', ['README.md']),
        # Directory should be completed to core/ ?
        ('core', ['core/']),
        ('asdl/R', ['asdl/README.md']),
        ('opy/doc', ['opy/doc/']),
        ('opy/doc/', ['opy/doc/opcodes.md']),
        ('/bi', ['/bin/']),
        ('/tmp/oil_comp_test/', [
          '/tmp/oil_comp_test/one',
          '/tmp/oil_comp_test/three',
          '/tmp/oil_comp_test/two',
          ]),
        ('./b', ['./benchmarks/', './bin/', './build/']),
    ]

    a = completion.FileSystemAction(add_slash=True)
    for prefix, expected in ADD_SLASH_CASES:
      log('')
      log('-- PREFIX %s', prefix)
      comp = self._CompApi([], 0, prefix)
      self.assertEqual(expected, sorted(a.Matches(comp)))

    # A bunch of repos in oilshell
    comp = completion.Api()
    comp.Update(partial_argv=[], index=0, to_complete='../o')
    print(list(a.Matches(comp)))

    EXEC_ONLY_CASES = [
        ('i', ['install'])
    ]

    a = completion.FileSystemAction(exec_only=True)
    for prefix, expected in EXEC_ONLY_CASES:
      log('')
      log('-- PREFIX %s', prefix)
      comp = self._CompApi([], 0, prefix)
      self.assertEqual(expected, sorted(a.Matches(comp)))
Example #2
0
    def testFileSystemAction(self):
        a = completion.FileSystemAction()
        # Current dir -- all files and dirs
        comp = self._MakeComp([], 0, '')
        print(list(a.Matches(comp)))

        os.system('mkdir -p /tmp/oil_comp_test')
        os.system('bash -c "touch /tmp/oil_comp_test/{one,two,three}"')

        # TODO:
        # - This no longer filters by prefix!
        # - Should test that the executable bit works!

        return

        # This test depends on actual file system content.  But we choose things
        # that shouldn't go away.
        CASES = [
            # Dirs and files
            ('c', ['core/', 'configure']),
            ('nonexistent/', []),
            ('README', ['README.md']),
            # Directory should be completed to core/ ?
            ('core', ['core/']),
            ('asdl/R', ['asdl/README.md']),
            ('opy/doc', ['opy/doc/']),
            ('opy/doc/', ['opy/doc/opcodes.md']),
            ('/bi', ['/bin/']),
            ('/tmp/oil_comp_test/', [
                '/tmp/oil_comp_test/one',
                '/tmp/oil_comp_test/three',
                '/tmp/oil_comp_test/two',
            ])
        ]

        for prefix, expected in CASES:
            log('')
            log('-- PREFIX %s', prefix)
            log('-- expected %s', expected)
            comp = self._MakeComp([], 0, prefix)
            self.assertEqual(expected, list(a.Matches(comp)))

        comp = self._MakeComp([], 0, './o')
        print(list(a.Matches(comp)))

        # A bunch of repos in oilshell
        comp = self._MakeComp([], 0, '../o')
        print(list(a.Matches(comp)))
    def Build(self, argv, arg, base_opts):
        """Given flags to complete/compgen, return a UserSpec."""
        cmd_ev = self.cmd_ev

        actions = []

        # NOTE: bash doesn't actually check the name until completion time, but
        # obviously it's better to check here.
        if arg.F:
            func_name = arg.F
            func = cmd_ev.procs.get(func_name)
            if func is None:
                raise error.Usage('Function %r not found' % func_name)
            actions.append(
                completion.ShellFuncAction(cmd_ev, func, self.comp_lookup))

        # NOTE: We need completion for -A action itself!!!  bash seems to have it.
        for name in arg.actions:
            if name == 'alias':
                a = _FixedWordsAction(self.parse_ctx.aliases)

            elif name == 'binding':
                # TODO: Where do we get this from?
                a = _FixedWordsAction(['vi-delete'])

            elif name == 'command':
                # compgen -A command in bash is SIX things: aliases, builtins,
                # functions, keywords, external commands relative to the current
                # directory, and external commands in $PATH.

                actions.append(_FixedWordsAction(consts.BUILTIN_NAMES))
                actions.append(_FixedWordsAction(self.parse_ctx.aliases))
                actions.append(_FixedWordsAction(cmd_ev.procs))
                actions.append(_FixedWordsAction(lexer_def.OSH_KEYWORD_NAMES))
                actions.append(completion.FileSystemAction(exec_only=True))

                # Look on the file system.
                a = completion.ExternalCommandAction(cmd_ev.mem)

            elif name == 'directory':
                a = completion.FileSystemAction(dirs_only=True)

            elif name == 'file':
                a = completion.FileSystemAction()

            elif name == 'function':
                a = _FixedWordsAction(cmd_ev.procs)

            elif name == 'job':
                a = _FixedWordsAction(['jobs-not-implemented'])

            elif name == 'user':
                a = completion.UsersAction()

            elif name == 'variable':
                a = completion.VariablesAction(cmd_ev.mem)

            elif name == 'helptopic':
                # Note: it would be nice to have 'helpgroup' for help -i too
                a = _FixedWordsAction(help_.TOPICS)

            elif name == 'setopt':
                names = [
                    opt.name for opt in option_def.All()
                    if opt.builtin == 'set'
                ]
                a = _FixedWordsAction(names)

            elif name == 'shopt':
                names = [
                    opt.name for opt in option_def.All()
                    if opt.builtin == 'shopt'
                ]
                a = _FixedWordsAction(names)

            elif name == 'signal':
                a = _FixedWordsAction(['TODO:signals'])

            elif name == 'stopped':
                a = _FixedWordsAction(['jobs-not-implemented'])

            else:
                raise NotImplementedError(name)

            actions.append(a)

        # e.g. -W comes after -A directory
        if arg.W is not None:  # could be ''
            # NOTES:
            # - Parsing is done at REGISTRATION time, but execution and splitting is
            #   done at COMPLETION time (when the user hits tab).  So parse errors
            #   happen early.
            w_parser = self.parse_ctx.MakeWordParserForPlugin(arg.W)

            arena = self.parse_ctx.arena
            try:
                arg_word = w_parser.ReadForPlugin()
            except error.Parse as e:
                ui.PrettyPrintError(e, arena)
                raise  # Let 'complete' or 'compgen' return 2

            a = completion.DynamicWordsAction(self.word_ev, self.splitter,
                                              arg_word, arena)
            actions.append(a)

        extra_actions = []
        if base_opts.get('plusdirs'):
            extra_actions.append(completion.FileSystemAction(dirs_only=True))

        # These only happen if there were zero shown.
        else_actions = []
        if base_opts.get('default'):
            else_actions.append(completion.FileSystemAction())
        if base_opts.get('dirnames'):
            else_actions.append(completion.FileSystemAction(dirs_only=True))

        if not actions and not else_actions:
            raise error.Usage('No actions defined in completion: %s' % argv)

        p = completion.DefaultPredicate
        if arg.X:
            filter_pat = arg.X
            if filter_pat.startswith('!'):
                p = completion.GlobPredicate(False, filter_pat[1:])
            else:
                p = completion.GlobPredicate(True, filter_pat)
        return completion.UserSpec(actions,
                                   extra_actions,
                                   else_actions,
                                   p,
                                   prefix=arg.P or '',
                                   suffix=arg.S or '')
Example #4
0
    def Build(self, argv, arg, base_opts):
        """Given flags to complete/compgen, return a UserSpec."""
        ex = self.ex

        actions = []

        # NOTE: bash doesn't actually check the name until completion time, but
        # obviously it's better to check here.
        if arg.F:
            func_name = arg.F
            func = ex.funcs.get(func_name)
            if func is None:
                raise args.UsageError('Function %r not found' % func_name)
            actions.append(
                completion.ShellFuncAction(ex, func, self.comp_lookup))

        # NOTE: We need completion for -A action itself!!!  bash seems to have it.
        for name in arg.actions:
            if name == 'alias':
                a = _FixedWordsAction(ex.aliases)

            elif name == 'binding':
                # TODO: Where do we get this from?
                a = _FixedWordsAction(['vi-delete'])

            elif name == 'command':
                # compgen -A command in bash is SIX things: aliases, builtins,
                # functions, keywords, external commands relative to the current
                # directory, and external commands in $PATH.

                actions.append(_FixedWordsAction(builtin.BUILTIN_NAMES))
                actions.append(_FixedWordsAction(ex.aliases))
                actions.append(_FixedWordsAction(ex.funcs))
                actions.append(_FixedWordsAction(lex.OSH_KEYWORD_NAMES))
                actions.append(completion.FileSystemAction(exec_only=True))

                # Look on the file system.
                a = completion.ExternalCommandAction(ex.mem)

            elif name == 'directory':
                a = completion.FileSystemAction(dirs_only=True)

            elif name == 'file':
                a = completion.FileSystemAction()

            elif name == 'function':
                a = _FixedWordsAction(ex.funcs)

            elif name == 'job':
                a = _FixedWordsAction(['jobs-not-implemented'])

            elif name == 'user':
                a = completion.UsersAction()

            elif name == 'variable':
                a = completion.VariablesAction(ex.mem)

            elif name == 'helptopic':
                a = _FixedWordsAction(osh_help.TOPIC_LOOKUP)

            elif name == 'setopt':
                a = _FixedWordsAction(state.SET_OPTION_NAMES)

            elif name == 'shopt':
                a = _FixedWordsAction(state.SHOPT_OPTION_NAMES)

            elif name == 'signal':
                a = _FixedWordsAction(['TODO:signals'])

            elif name == 'stopped':
                a = _FixedWordsAction(['jobs-not-implemented'])

            else:
                raise NotImplementedError(name)

            actions.append(a)

        # e.g. -W comes after -A directory
        if arg.W is not None:  # could be ''
            # NOTES:
            # - Parsing is done at REGISTRATION time, but execution and splitting is
            #   done at COMPLETION time (when the user hits tab).  So parse errors
            #   happen early.
            # - It's OK to reuse the same arena because this doesn't happen during
            #   translation.  TODO: But we need PushSource().  We should
            #   create SideArena instances that track back to the current location of
            #   the 'complete' builtin.
            arena = self.parse_ctx.arena
            w_parser = self.parse_ctx.MakeWordParserForPlugin(arg.W, arena)

            try:
                arg_word = w_parser.ReadForPlugin()
            except util.ParseError as e:
                ui.PrettyPrintError(e, self.parse_ctx.arena)
                raise  # Let 'complete' or 'compgen' return 2

            a = completion.DynamicWordsAction(self.word_ev, self.splitter,
                                              arg_word, arena)
            actions.append(a)

        extra_actions = []
        if base_opts.get('plusdirs'):
            extra_actions.append(completion.FileSystemAction(dirs_only=True))

        # These only happen if there were zero shown.
        else_actions = []
        if base_opts.get('default'):
            else_actions.append(completion.FileSystemAction())
        if base_opts.get('dirnames'):
            else_actions.append(completion.FileSystemAction(dirs_only=True))

        if not actions and not else_actions:
            raise args.UsageError('No actions defined in completion: %s' %
                                  argv)

        p = completion.DefaultPredicate
        if arg.X:
            filter_pat = arg.X
            if filter_pat.startswith('!'):
                p = completion.GlobPredicate(False, filter_pat[1:])
            else:
                p = completion.GlobPredicate(True, filter_pat)
        return completion.UserSpec(actions,
                                   extra_actions,
                                   else_actions,
                                   p,
                                   prefix=arg.P or '',
                                   suffix=arg.S or '')
Example #5
0
def _BuildUserSpec(argv, arg, comp_opts, ex, respect_x=True):
    """Given flags to complete/compgen, built a UserSpec.

  Args:
    respect_x: Stupid special case because bash doesn't respect -X in compgen.
  """
    actions = []

    # NOTE: bash doesn't actually check the name until completion time, but
    # obviously it's better to check here.
    if arg.F:
        func_name = arg.F
        func = ex.funcs.get(func_name)
        if func is None:
            raise args.UsageError('Function %r not found' % func_name)
        actions.append(completion.ShellFuncAction(ex, func))

    # NOTE: We need completion for -A action itself!!!  bash seems to have it.
    for name in arg.actions:
        if name == 'alias':
            a = _SortedWordsAction(ex.aliases)

        elif name == 'binding':
            # TODO: Where do we get this from?
            a = _SortedWordsAction(['vi-delete'])

        elif name == 'command':
            # compgen -A command in bash is SIX things: aliases, builtins,
            # functions, keywords, external commands relative to the current
            # directory, and external commands in $PATH.

            actions.append(_SortedWordsAction(builtin.BUILTIN_NAMES))
            actions.append(_SortedWordsAction(ex.aliases))
            actions.append(_SortedWordsAction(ex.funcs))
            actions.append(_SortedWordsAction(lex.OSH_KEYWORD_NAMES))
            actions.append(completion.FileSystemAction(exec_only=True))

            # Look on the file system.
            a = completion.ExternalCommandAction(ex.mem)

        elif name == 'directory':
            a = completion.FileSystemAction(dirs_only=True)

        elif name == 'file':
            a = completion.FileSystemAction()

        elif name == 'function':
            a = _SortedWordsAction(ex.funcs)

        elif name == 'job':
            a = _SortedWordsAction(['jobs-not-implemented'])

        elif name == 'user':
            a = _UsersAction()

        elif name == 'variable':
            a = completion.VariablesAction(ex.mem)

        elif name == 'helptopic':
            a = _SortedWordsAction(osh_help.TOPIC_LOOKUP)

        elif name == 'setopt':
            a = _SortedWordsAction(state.SET_OPTION_NAMES)

        elif name == 'shopt':
            a = _SortedWordsAction(state.SHOPT_OPTION_NAMES)

        elif name == 'signal':
            a = _SortedWordsAction(['TODO:signals'])

        elif name == 'stopped':
            a = _SortedWordsAction(['jobs-not-implemented'])

        else:
            raise NotImplementedError(name)

        actions.append(a)

    # e.g. -W comes after -A directory
    if arg.W:
        # TODO: Split with IFS.  Is that done at registration time or completion
        # time?
        actions.append(completion.WordsAction(arg.W.split()))

    extra_actions = []
    if comp_opts.Get('plusdirs'):
        extra_actions.append(completion.FileSystemAction(dirs_only=True))

    # These only happen if there were zero shown.
    else_actions = []
    if comp_opts.Get('default'):
        else_actions.append(completion.FileSystemAction())
    if comp_opts.Get('dirnames'):
        else_actions.append(completion.FileSystemAction(dirs_only=True))

    if not actions and not else_actions:
        raise args.UsageError('No actions defined in completion: %s' % argv)

    p = lambda candidate: True  # include all
    if respect_x and arg.X:
        filter_pat = arg.X
        if filter_pat.startswith('!'):
            p = completion.GlobPredicate(False, filter_pat[1:])
        else:
            p = completion.GlobPredicate(True, filter_pat)
    return completion.UserSpec(actions,
                               extra_actions,
                               else_actions,
                               p,
                               prefix=arg.P or '',
                               suffix=arg.S or '')
Example #6
0
def _BuildCompletionChain(argv, arg, ex):
  """Given flags to complete/compgen, built a ChainedCompleter."""
  actions = []

  # NOTE: bash doesn't actually check the name until completion time, but
  # obviously it's better to check here.
  if arg.F:
    func_name = arg.F
    func = ex.funcs.get(func_name)
    if func is None:
      raise args.UsageError('Function %r not found' % func_name)
    actions.append(completion.ShellFuncAction(ex, func))

  # NOTE: We need completion for -A action itself!!!  bash seems to have it.
  for name in arg.actions:
    if name == 'alias':
      a = _SortedWordsAction(ex.aliases)

    elif name == 'binding':
      # TODO: Where do we get this from?
      a = _SortedWordsAction(['vi-delete'])

    elif name == 'command':
      # TODO: This needs keywords too
      actions.append(_SortedWordsAction(builtin.BUILTIN_NAMES))

      a = completion.ExternalCommandAction(ex.mem)

    elif name == 'directory':
      a = completion.FileSystemAction(dirs_only=True)

    elif name == 'file':
      a = completion.FileSystemAction()

    elif name == 'function':
      a = _SortedWordsAction(ex.funcs)

    elif name == 'job':
      a = _SortedWordsAction(['jobs-not-implemented'])

    elif name == 'user':
      a = _UsersAction()

    elif name == 'variable':
      a = completion.VariablesAction(ex.mem)

    elif name == 'helptopic':
      a = _SortedWordsAction(osh_help.TOPIC_LOOKUP)

    elif name == 'setopt':
      a = _SortedWordsAction(state.SET_OPTION_NAMES)

    elif name == 'shopt':
      a = _SortedWordsAction(state.SHOPT_OPTION_NAMES)

    elif name == 'signal':
      a = _SortedWordsAction(['TODO:signals'])

    elif name == 'stopped':
      a = _SortedWordsAction(['jobs-not-implemented'])

    else:
      raise NotImplementedError(name)

    actions.append(a)

  # e.g. -W comes after -A directory
  if arg.W:
    # TODO: Split with IFS.  Is that done at registration time or completion
    # time?
    actions.append(completion.WordsAction(arg.W.split()))

  if not actions:
    raise args.UsageError('No actions defined in completion: %s' % argv)

  chain = completion.ChainedCompleter(
      actions,
      prefix=arg.P or '',
      suffix=arg.S or '')

  return chain