comparison tests/test-filecache.py @ 49988:09367b3d23d8

test: explicitly "add" file before some commit in test-filecache.py `hg commit -A` will revert the `hg addremove` step if the commit fails. However `hg rollback` currently does not. We are about to improve internal consistency around transaction and dirstate and the behavior of `hg rollback` will align on the other behavior in the process. Before doing so, we make sure the test is using a separate call to `hg add` to avoid the test scenario to be affected by that future change. note: the behavior change for `hg rollback` seems fine as it affect a niche usecase and `hg rollback` usage have been strongly discouraged for a while.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 13 Feb 2023 19:46:39 +0100
parents 56f98406831b
children 720d9849dcf9
comparison
equal deleted inserted replaced
49987:1e6015ddf698 49988:09367b3d23d8
163 util.cachestat.__init__ = originit 163 util.cachestat.__init__ = originit
164 164
165 165
166 def test_filecache_synced(): 166 def test_filecache_synced():
167 # test old behavior that caused filecached properties to go out of sync 167 # test old behavior that caused filecached properties to go out of sync
168 os.system('hg init && echo a >> a && hg ci -qAm.') 168 os.system('hg init && echo a >> a && hg add a && hg ci -qm.')
169 repo = hg.repository(uimod.ui.load()) 169 repo = hg.repository(uimod.ui.load())
170 # first rollback clears the filecache, but changelog to stays in __dict__ 170 # first rollback clears the filecache, but changelog to stays in __dict__
171 repo.rollback() 171 repo.rollback()
172 repo.commit(b'.') 172 repo.commit(b'.')
173 # second rollback comes along and touches the changelog externally 173 # second rollback comes along and touches the changelog externally