tests/test-remotefilelog-hgweb.t
author Arun Kulshreshtha <akulshreshtha@janestreet.com>
Tue, 30 Aug 2022 15:29:55 -0400
changeset 49491 c6a1beba27e9
parent 44570 9e63108123a4
permissions -rw-r--r--
bisect: avoid copying ancestor list for non-merge commits During a bisection, hg needs to compute a list of all ancestors for every candidate commit. This is accomplished via a bottom-up traversal of the set of candidates, during which each revision's ancestor list is populated using the ancestor list of its parent(s). Previously, this involved copying the entire list, which could be very long in if the bisection range was large. To help improve this, we can observe that each candidate commit is visited exactly once, at which point its ancestor list is copied into its children's lists and then dropped. In the case of non-merge commits, a commit's ancestor list consists exactly of its parent's list plus itself. This means that we can trivially reuse the parent's existing list for one of its non-merge children, which avoids copying entirely if that commit is the parent's only child. This makes bisections over linear ranges of commits much faster. During some informal testing in the large publicly-available `mozilla-central` repository, this noticeably sped up bisections over large ranges of history: Setup: $ cd mozilla-central $ hg bisect --reset $ hg bisect --good 0 $ hg log -r tip -T '{rev}\n' 628417 Test: $ time hg bisect --bad tip --noupdate Before: real 3m35.927s user 3m35.553s sys 0m0.319s After: real 1m41.142s user 1m40.810s sys 0m0.285s
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44569
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     1
#require no-windows serve
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     2
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     3
  $ . "$TESTDIR/remotefilelog-library.sh"
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     4
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     5
  $ cat >> $HGRCPATH <<EOF
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     6
  > [extensions]
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     7
  > remotefilelog=
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     8
  > share=
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
     9
  > EOF
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    10
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    11
  $ hg init master
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    12
  $ cd master
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    13
  $ cat >> .hg/hgrc <<EOF
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    14
  > [remotefilelog]
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    15
  > server=True
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    16
  > EOF
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    17
  $ echo x > x
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    18
  $ hg commit -qAm x
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    19
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    20
  $ cd ..
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    21
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    22
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    23
  $ hgcloneshallow ssh://user@dummy/master wdir --noupdate -q
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    24
  $ cd wdir
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    25
  $ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    26
  $ cat hg.pid >> $DAEMON_PIDS
44570
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    27
  $ get-with-headers.py localhost:$HGPORT 'file/tip/x' | head -n 10
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    28
  200 Script output follows
44569
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    29
  
44570
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    30
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    31
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    32
  <head>
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    33
  <link rel="icon" href="/static/hgicon.png" type="image/png" />
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    34
  <meta name="robots" content="index, nofollow" />
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    35
  <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    36
  <script type="text/javascript" src="/static/mercurial.js"></script>
9e63108123a4 remotefilelog: add fake heads() method that allows viewing a file in hgweb
Augie Fackler <augie@google.com>
parents: 44569
diff changeset
    37
  
44569
5483e9c759e4 tests: add test for remotefilelog interactions with hgweb
Augie Fackler <augie@google.com>
parents:
diff changeset
    38