sapling/eden/scm/tests/test-template-filestat.t
Durham Goode 14ec2d4b34 py3: enable more tests
Summary: These now pass

Reviewed By: farnz

Differential Revision: D19678869

fbshipit-source-id: 68601ff6a6d33b13947210eecfecd999aa2ddb1a
2020-02-01 10:39:39 -08:00

67 lines
1.7 KiB
Perl

#chg-compatible
$ 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