sapling/eden/scm/tests/test-fb-hgext-grepdiff.t
Jun Wu 026bd9f950 tests: avoid some rev numbers in revsets
Summary: Done by the fix-revnum.py script.

Reviewed By: singhsrb

Differential Revision: D24173575

fbshipit-source-id: e4cf417be759f9898adfd4102984098474ab38a2
2020-10-08 11:08:37 -07:00

129 lines
3.3 KiB
Perl

#require py2
#chg-compatible
$ enable grepdiff
Setup repo
$ hg init repo
$ cd repo
Commit some things
$ echo "string one" > root
$ hg ci -Am "string one in root"
adding root
$ echo "string one" > a
$ hg ci -Am "string one in a"
adding a
$ echo "string two" > root
$ hg ci -m "string two in root"
$ echo "string three" >> a
$ hg ci -m "string three in a"
$ echo "int" >> root
$ hg ci -m "int in root"
$ echo "string" >> a
$ hg ci -m "string in a"
Perform a grepdiff without a modifier over the whole repo
$ hg log --rev "grepdiff('string \wne')" -p
commit: 66a661e5ba18
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string one in root
diff -r 000000000000 -r 66a661e5ba18 root
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/root Thu Jan 01 00:00:00 1970 +0000
@@ -0,0 +1,1 @@
+string one
commit: e4e29c42d1c9
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string one in a
diff -r 66a661e5ba18 -r e4e29c42d1c9 a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/a Thu Jan 01 00:00:00 1970 +0000
@@ -0,0 +1,1 @@
+string one
commit: f90b5c1dcd6f
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string two in root
diff -r e4e29c42d1c9 -r f90b5c1dcd6f root
--- a/root Thu Jan 01 00:00:00 1970 +0000
+++ b/root Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,1 @@
-string one
+string two
Perform a "remove" grepdiff over a limited set of files
$ hg log --rev "grepdiff('remove:string', root)" -p
commit: f90b5c1dcd6f
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string two in root
diff -r e4e29c42d1c9 -r f90b5c1dcd6f root
--- a/root Thu Jan 01 00:00:00 1970 +0000
+++ b/root Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,1 @@
-string one
+string two
Perform an "add" grepdiff over the whole repo
$ hg log --rev "grepdiff('add:two')" -p
commit: f90b5c1dcd6f
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string two in root
diff -r e4e29c42d1c9 -r f90b5c1dcd6f root
--- a/root Thu Jan 01 00:00:00 1970 +0000
+++ b/root Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,1 @@
-string one
+string two
Perform a "delta" grepdiff over the whole repo with another revset used
$ hg log --rev "(desc(int):66a661e5ba18d30421a634ea43371c34ee8a8677) and grepdiff('delta:string')" -p
commit: 0173332b5f0e
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string three in a
diff -r f90b5c1dcd6f -r 0173332b5f0e a
--- a/a Thu Jan 01 00:00:00 1970 +0000
+++ b/a Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,2 @@
string one
+string three
commit: e4e29c42d1c9
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string one in a
diff -r 66a661e5ba18 -r e4e29c42d1c9 a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/a Thu Jan 01 00:00:00 1970 +0000
@@ -0,0 +1,1 @@
+string one
commit: 66a661e5ba18
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: string one in root
diff -r 000000000000 -r 66a661e5ba18 root
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/root Thu Jan 01 00:00:00 1970 +0000
@@ -0,0 +1,1 @@
+string one