sapling/tests/test-smartlog-remotenames.t
Jun Wu 4a936cee21 codemod: remove extpath in tests
Summary:
Previously, the following pattern is common in our tests:

```
   $ extpath=`dirname $TESTDIR`
   $ cp $extpath/hgext3rd/name.py $TESTTMP # use $TESTTMP substitution in message
   $ cat >> $HGRCPATH<<EOF
   > [extensions]
   > name=$TESTTMP/name.py
   > EOF
```

Now, it gets simplified to:

```
   $ cat >> $HGRCPATH<<EOF
   > [extensions]
   > name=$TESTDIR/../hgext3rd/name.py
   > EOF
```

This removes unnecessary `dirname` and `cp`.

Also fixed a regex that does not match `bytes`:

```
-  transferred 268 bytes in [\d.]+ seconds \([\d.]+ KB/sec\) (re)
+  transferred 268 bytes in 0.3 seconds (939 bytes/sec)
```

Test Plan: arc unit

Reviewers: #mercurial, phillco

Reviewed By: phillco

Subscribers: medson, mjpieters

Differential Revision: https://phabricator.intern.facebook.com/D5270897

Signature: t1:5270897:1497663052:bf860a0b480c751b1e4b53cebf6526193f0f6652
2017-06-16 18:31:25 -07:00

107 lines
2.4 KiB
Perl

$ . $TESTDIR/require-ext.sh remotenames
$ cat >> $HGRCPATH << EOF
> [extensions]
> smartlog=$TESTDIR/../hgext3rd/smartlog.py
> remotenames=
> EOF
$ hg init repo
$ cd repo
$ echo x > x
$ hg commit -qAm x
$ hg book master
$ echo x >> x
$ hg commit -qAm x2
Non-bookmarked public heads should not be visible in smartlog
$ cd ..
$ hg clone repo client
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd client
$ hg book mybook -r 0
$ hg up 0
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
o 1 default/master
|
@ 0 mybook
Old head (rev 1) should no longer be visible
$ echo z >> x
$ hg commit -qAm x3
$ hg push --non-forward-move -q --to master
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
@ 2 default/master
|
o 0 mybook
Test configuration of "interesting" bookmarks
$ hg up -q ".^"
$ echo x >> x
$ hg commit -qAm x4
$ hg push -q --to project/bookmark --create
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
o 2 default/master
|
| @ 3 default/project/bookmark
|/
o 0 mybook
$ hg up ".^"
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
o 2 default/master
|
@ 0 mybook
$ cat >> $HGRCPATH << EOF
> [smartlog]
> repos=default/
> names=project/bookmark
> EOF
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
o 3 default/project/bookmark
|
@ 0 mybook
$ cat >> $HGRCPATH << EOF
> [smartlog]
> names=master project/bookmark
> EOF
$ hg smartlog -T '{rev} {bookmarks} {remotebookmarks}'
o 2 default/master
|
| o 3 default/project/bookmark
|/
@ 0 mybook
Change remote master to a non-existing locally commit and check that warning
is shown to the user
$ cat > .hg/remotenames << EOF
> 6dd477f76ca35ae46e82972648735867cf335d3e bookmarks remote/master
> EOF
$ hg sl
o changeset: 3:8e2253d950ae
| tag: tip
| parent: 0:b292c1e3311f
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: x4
|
@ changeset: 0:b292c1e3311f
bookmark: mybook
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: x
note: hiding 3 old heads without bookmarks
(use --all to see them)