sapling/eden/hg-server/tests/test-fb-hgext-smartlog-smartdate.t
Durham Goode 98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00

93 lines
2.6 KiB
Perl

#chg-compatible
#chg-compatible
#testcases withpytz withoutpytz
#if withpytz
$ hg debugshell -c "import pytz; pytz.__name__" || exit 80
#endif
$ enable smartlog
$ TZ=UTC
$ export TZ
Create a repo with some commits at interesting dates.
$ hg init repo
$ cd repo
$ for d in 1970-01-01T00:00 1996-02-29T15:00 1996-03-01T19:20 1996-03-06T08:00 1996-03-07T12:02 1996-03-07T13:56 1996-03-07T14:00 1996-03-07T23:59
> do
> echo "$d" > stamp
> hg commit -Aqm "$d" -d "$d"
> done
Test smartlog with smartdate.
$ hg smartlog -r 'all()' -T '{smartdate(date, 5400, age(date), simpledate(date))} "{desc}"' --config extensions.fakedate=$TESTDIR/fakedate.py
@ 1996-03-07 23:59 "1996-03-07T23:59"
o 1 second ago "1996-03-07T14:00"
o 4 minutes ago "1996-03-07T13:56"
o Today at 12:02 "1996-03-07T12:02"
o Yesterday at 08:00 "1996-03-06T08:00"
o Friday at 19:20 "1996-03-01T19:20"
o Feb 29 at 15:00 "1996-02-29T15:00"
o 1970-01-01 00:00 "1970-01-01T00:00"
$ hg smartlog -r 'all()' -T '{smartdate(date, 18000, age(date), simpledate(date))} "{desc}"' --config extensions.fakedate=$TESTDIR/fakedate.py
@ 1996-03-07 23:59 "1996-03-07T23:59"
o 1 second ago "1996-03-07T14:00"
o 4 minutes ago "1996-03-07T13:56"
o 118 minutes ago "1996-03-07T12:02"
o Yesterday at 08:00 "1996-03-06T08:00"
o Friday at 19:20 "1996-03-01T19:20"
o Feb 29 at 15:00 "1996-02-29T15:00"
o 1970-01-01 00:00 "1970-01-01T00:00"
$ TZ=America/Los_Angeles hg smartlog -r 'all()' -T '{smartdate(date, 5400, age(date), simpledate(date))} "{desc}"' --config extensions.fakedate=$TESTDIR/fakedate.py
@ 1996-03-07 15:59 "1996-03-07T23:59"
o 1 second ago "1996-03-07T14:00"
o 4 minutes ago "1996-03-07T13:56"
o Today at 04:02 "1996-03-07T12:02"
o Yesterday at 00:00 "1996-03-06T08:00"
o Friday at 11:20 "1996-03-01T19:20"
o Feb 29 at 07:00 "1996-02-29T15:00"
o 1969-12-31 16:00 "1970-01-01T00:00"
#if withpytz
$ hg smartlog -r 'all()' -T '{smartdate(date, 5400, age(date), simpledate(date, "Australia/Sydney"))} "{desc}"' --config extensions.fakedate=$TESTDIR/fakedate.py
@ 1996-03-08 10:59 "1996-03-07T23:59"
o 1 second ago "1996-03-07T14:00"
o 4 minutes ago "1996-03-07T13:56"
o Yesterday at 23:02 "1996-03-07T12:02"
o Wednesday at 19:00 "1996-03-06T08:00"
o Saturday at 06:20 "1996-03-01T19:20"
o Mar 01 at 02:00 "1996-02-29T15:00"
o 1970-01-01 10:00 "1970-01-01T00:00"
#endif