sapling/eden/scm/tests/test-template-filestat.t
Adam Simpkins ab3a7cb21f Move fb-mercurial sources into an eden/scm subdirectory.
Summary:
In preparation for merging fb-mercurial sources to the Eden repository,
move everything from the top-level directory into an `eden/scm`
subdirectory.
2019-11-13 16:04:48 -08:00

65 lines
1.7 KiB
Perl

$ newrepo
$ touch base
$ hg commit -Am A
adding base
$ echo somedata > base
$ touch other
$ hg commit -Am B
adding other
$ hg rm base
$ echo somemoredata > other
$ hg commit -m C
$ hg log --graph -T '{filestat}'
@ 2 filestats
|
o 2 filestats
|
o 1 filestat
$ hg log --graph -T '{filestat|json}'
@ [{"name": "other", "op": "M", "size": 13, "type": "n"}, {"name": "base", "op": "R", "size": 0, "type": "r"}]
|
o [{"name": "base", "op": "M", "size": 9, "type": "n"}, {"name": "other", "op": "A", "size": 0, "type": "n"}]
|
o [{"name": "base", "op": "A", "size": 0, "type": "n"}]
$ hg log -T '{filestat % "{node|short} {op} {type} {size} {name}\n"}'
bdfc298dced0 M n 13 other
bdfc298dced0 R r 0 base
7f32e4a2ca03 M n 9 base
7f32e4a2ca03 A n 0 other
ca66854ba526 A n 0 base
#if no-windows
$ chmod +x other
$ ln -s other link
$ hg commit -Am "D"
adding link
$ hg log --graph -T '{filestat}'
@ 2 filestats
|
o 2 filestats
|
o 2 filestats
|
o 1 filestat
$ hg log --graph -T '{filestat|json}'
@ [{"name": "other", "op": "M", "size": 13, "type": "x"}, {"name": "link", "op": "A", "size": 5, "type": "l"}]
|
o [{"name": "other", "op": "M", "size": 13, "type": "n"}, {"name": "base", "op": "R", "size": 0, "type": "r"}]
|
o [{"name": "base", "op": "M", "size": 9, "type": "n"}, {"name": "other", "op": "A", "size": 0, "type": "n"}]
|
o [{"name": "base", "op": "A", "size": 0, "type": "n"}]
$ hg log -T '{filestat % "{node|short} {op} {type} {size} {name}\n"}'
8c2b56d0093b M x 13 other
8c2b56d0093b A l 5 link
bdfc298dced0 M n 13 other
bdfc298dced0 R r 0 base
7f32e4a2ca03 M n 9 base
7f32e4a2ca03 A n 0 other
ca66854ba526 A n 0 base
#endif