@@ -1,8 +1,10 @@
from __future__ import absolute_import, print_function
import os
+from mercurial.node import hex
from mercurial import (
context,
encoding,
hg,
+ scmutil,
ui as uimod,
)
@@ -147,2 +149,33 @@ print(actx2.status(other=wcctx,
listclean=True))
print('wcctx._status=%s' % (str(wcctx._status)))
+
+os.chdir('..')
+
+# test manifestlog being changed
+print('== commit with manifestlog invalidated')
+
+repo = hg.repository(u, 'test2', create=1)
+os.chdir('test2')
+
+# make some commits
+for i in [b'1', b'2', b'3']:
+ with open(i, 'wb') as f:
+ f.write(i)
+ status = scmutil.status([], [i], [], [], [], [], [])
+ ctx = context.workingcommitctx(repo, status, text=i, user=b'test@test.com',
+ date=(0, 0))
+ ctx.p1().manifest() # side effect: cache manifestctx
+ n = repo.commitctx(ctx)
+ print('commit %s: %s' % (i, hex(n)))
+
+ # touch 00manifest.i mtime so storecache could expire.
+ # repo.__dict__['manifestlog'] is deleted by transaction releasefn.
+ st = repo.svfs.stat('00manifest.i')
+ repo.svfs.utime('00manifest.i', (st.st_mtime + 1, st.st_mtime + 1))
+
+ # read the file just committed
+ try:
+ if repo[n][i].data() != i:
+ print('data mismatch')
+ except Exception as ex:
+ print('cannot read data: %r' % ex)
@@ -45,2 +45,8 @@ wcctx._status=<status modified=['bar-m']
<status modified=[], added=['bar-r'], removed=[], deleted=[], unknown=[], ignored=[], clean=['foo']>
wcctx._status=<status modified=['bar-m'], added=['bar-a'], removed=[], deleted=[], unknown=[], ignored=[], clean=[]>
+== commit with manifestlog invalidated
+commit 1: 2efe531a913fa648867ab8824360371679d05a65
+commit 2: 2caca91f6362020334384ebe27bae67315298abf
+cannot read data: LookupError('Q\xa3L\xa5Ou\x8f\xce8\xda<Q\x7f\x9f(\xc9;Li/', '00manifest.i', 'no node')
+commit 3: abd6b0f49f338be22b094ef2b7425e8048f8337b
+cannot read data: LookupError("\x82\x15\xb8\xd3\x85\xf6H'\x9cP'D\x97\x1e\xab\x98O\xbb\x05\x9d", '00manifest.i', 'no node')