tests/test-admin-commands.t
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Fri, 26 Apr 2024 19:10:35 +0100
changeset 51626 865efc020c33
parent 50989 752c5a5b73c6
permissions -rw-r--r--
dirstate: remove the python-side whitelist of allowed matchers This whitelist is too permissive because it allows matchers that contain disallowed ones deep inside, for example through `intersectionmatcher`. It is also too restrictive because it doesn't pass through some of the matchers we support, such as `patternmatcher`. It's also unnecessary because unsupported matchers raise `FallbackError` and we fall back anyway. Making this change makes more of the tests use rust code path, and therefore subtly change behavior. For example, rust status in largefiles repos seems to have strange behavior.

Test admin::verify

  $ hg init admin-verify
  $ cd admin-verify

Test normal output

  $ hg admin::verify -c dirstate
  running 1 checks
  running working-copy.dirstate
  checking dirstate

Quiet works

  $ hg admin::verify -c dirstate --quiet

Test no check no options

  $ hg admin::verify
  abort: `checks` required
  [255]

Test single check without options

  $ hg admin::verify -c working-copy.dirstate
  running 1 checks
  running working-copy.dirstate
  checking dirstate

Test single check (alias) without options

  $ hg admin::verify -c dirstate
  running 1 checks
  running working-copy.dirstate
  checking dirstate

Test wrong check name without options

  $ hg admin::verify -c working-copy.dir
  abort: unknown check working-copy.dir
  (did you mean working-copy.dirstate?)
  [10]

Test wrong alias without options

  $ hg admin::verify -c dir
  abort: unknown check dir
  [10]