test_index.py 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. # test_index.py -- Tests for the git index
  2. # encoding: utf-8
  3. # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@jelmer.uk>
  4. #
  5. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  6. # General Public License as public by the Free Software Foundation; version 2.0
  7. # or (at your option) any later version. You can redistribute it and/or
  8. # modify it under the terms of either of these two licenses.
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # You should have received a copy of the licenses; if not, see
  17. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  18. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  19. # License, Version 2.0.
  20. #
  21. """Tests for the index."""
  22. import os
  23. import shutil
  24. import stat
  25. import struct
  26. import sys
  27. import tempfile
  28. from io import BytesIO
  29. from dulwich.tests import TestCase, skipIf
  30. from ..index import (Index, IndexEntry, _fs_to_tree_path, _tree_to_fs_path,
  31. build_index_from_tree, cleanup_mode, commit_tree,
  32. get_unstaged_changes, index_entry_from_stat, read_index,
  33. read_index_dict, validate_path_element_default,
  34. validate_path_element_ntfs, write_cache_time, write_index,
  35. write_index_dict)
  36. from ..object_store import MemoryObjectStore
  37. from ..objects import S_IFGITLINK, Blob, Commit, Tree
  38. from ..repo import Repo
  39. def can_symlink():
  40. """Return whether running process can create symlinks."""
  41. if sys.platform != "win32":
  42. # Platforms other than Windows should allow symlinks without issues.
  43. return True
  44. test_source = tempfile.mkdtemp()
  45. test_target = test_source + "can_symlink"
  46. try:
  47. os.symlink(test_source, test_target)
  48. except (NotImplementedError, OSError):
  49. return False
  50. return True
  51. class IndexTestCase(TestCase):
  52. datadir = os.path.join(os.path.dirname(__file__), "../../testdata/indexes")
  53. def get_simple_index(self, name):
  54. return Index(os.path.join(self.datadir, name))
  55. class SimpleIndexTestCase(IndexTestCase):
  56. def test_len(self):
  57. self.assertEqual(1, len(self.get_simple_index("index")))
  58. def test_iter(self):
  59. self.assertEqual([b"bla"], list(self.get_simple_index("index")))
  60. def test_iterobjects(self):
  61. self.assertEqual(
  62. [(b"bla", b"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", 33188)],
  63. list(self.get_simple_index("index").iterobjects()),
  64. )
  65. def test_getitem(self):
  66. self.assertEqual(
  67. (
  68. (1230680220, 0),
  69. (1230680220, 0),
  70. 2050,
  71. 3761020,
  72. 33188,
  73. 1000,
  74. 1000,
  75. 0,
  76. b"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
  77. 0,
  78. 0,
  79. ),
  80. self.get_simple_index("index")[b"bla"],
  81. )
  82. def test_empty(self):
  83. i = self.get_simple_index("notanindex")
  84. self.assertEqual(0, len(i))
  85. self.assertFalse(os.path.exists(i._filename))
  86. def test_against_empty_tree(self):
  87. i = self.get_simple_index("index")
  88. changes = list(i.changes_from_tree(MemoryObjectStore(), None))
  89. self.assertEqual(1, len(changes))
  90. (oldname, newname), (oldmode, newmode), (oldsha, newsha) = changes[0]
  91. self.assertEqual(b"bla", newname)
  92. self.assertEqual(b"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", newsha)
  93. class SimpleIndexWriterTestCase(IndexTestCase):
  94. def setUp(self):
  95. IndexTestCase.setUp(self)
  96. self.tempdir = tempfile.mkdtemp()
  97. def tearDown(self):
  98. IndexTestCase.tearDown(self)
  99. shutil.rmtree(self.tempdir)
  100. def test_simple_write(self):
  101. entries = [
  102. (
  103. b"barbla",
  104. IndexEntry(
  105. (1230680220, 0),
  106. (1230680220, 0),
  107. 2050,
  108. 3761020,
  109. 33188,
  110. 1000,
  111. 1000,
  112. 0,
  113. b"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
  114. 0,
  115. 0)
  116. )
  117. ]
  118. filename = os.path.join(self.tempdir, "test-simple-write-index")
  119. with open(filename, "wb+") as x:
  120. write_index(x, entries)
  121. with open(filename, "rb") as x:
  122. self.assertEqual(entries, list(read_index(x)))
  123. class ReadIndexDictTests(IndexTestCase):
  124. def setUp(self):
  125. IndexTestCase.setUp(self)
  126. self.tempdir = tempfile.mkdtemp()
  127. def tearDown(self):
  128. IndexTestCase.tearDown(self)
  129. shutil.rmtree(self.tempdir)
  130. def test_simple_write(self):
  131. entries = {
  132. b"barbla": IndexEntry(
  133. (1230680220, 0),
  134. (1230680220, 0),
  135. 2050,
  136. 3761020,
  137. 33188,
  138. 1000,
  139. 1000,
  140. 0,
  141. b"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
  142. 0,
  143. 0,
  144. )
  145. }
  146. filename = os.path.join(self.tempdir, "test-simple-write-index")
  147. with open(filename, "wb+") as x:
  148. write_index_dict(x, entries)
  149. with open(filename, "rb") as x:
  150. self.assertEqual(entries, read_index_dict(x))
  151. class CommitTreeTests(TestCase):
  152. def setUp(self):
  153. super().setUp()
  154. self.store = MemoryObjectStore()
  155. def test_single_blob(self):
  156. blob = Blob()
  157. blob.data = b"foo"
  158. self.store.add_object(blob)
  159. blobs = [(b"bla", blob.id, stat.S_IFREG)]
  160. rootid = commit_tree(self.store, blobs)
  161. self.assertEqual(rootid, b"1a1e80437220f9312e855c37ac4398b68e5c1d50")
  162. self.assertEqual((stat.S_IFREG, blob.id), self.store[rootid][b"bla"])
  163. self.assertEqual({rootid, blob.id}, set(self.store._data.keys()))
  164. def test_nested(self):
  165. blob = Blob()
  166. blob.data = b"foo"
  167. self.store.add_object(blob)
  168. blobs = [(b"bla/bar", blob.id, stat.S_IFREG)]
  169. rootid = commit_tree(self.store, blobs)
  170. self.assertEqual(rootid, b"d92b959b216ad0d044671981196781b3258fa537")
  171. dirid = self.store[rootid][b"bla"][1]
  172. self.assertEqual(dirid, b"c1a1deb9788150829579a8b4efa6311e7b638650")
  173. self.assertEqual((stat.S_IFDIR, dirid), self.store[rootid][b"bla"])
  174. self.assertEqual((stat.S_IFREG, blob.id), self.store[dirid][b"bar"])
  175. self.assertEqual({rootid, dirid, blob.id}, set(self.store._data.keys()))
  176. class CleanupModeTests(TestCase):
  177. def assertModeEqual(self, expected, got):
  178. self.assertEqual(expected, got, "{:o} != {:o}".format(expected, got))
  179. def test_file(self):
  180. self.assertModeEqual(0o100644, cleanup_mode(0o100000))
  181. def test_executable(self):
  182. self.assertModeEqual(0o100755, cleanup_mode(0o100711))
  183. self.assertModeEqual(0o100755, cleanup_mode(0o100700))
  184. def test_symlink(self):
  185. self.assertModeEqual(0o120000, cleanup_mode(0o120711))
  186. def test_dir(self):
  187. self.assertModeEqual(0o040000, cleanup_mode(0o40531))
  188. def test_submodule(self):
  189. self.assertModeEqual(0o160000, cleanup_mode(0o160744))
  190. class WriteCacheTimeTests(TestCase):
  191. def test_write_string(self):
  192. f = BytesIO()
  193. self.assertRaises(TypeError, write_cache_time, f, "foo")
  194. def test_write_int(self):
  195. f = BytesIO()
  196. write_cache_time(f, 434343)
  197. self.assertEqual(struct.pack(">LL", 434343, 0), f.getvalue())
  198. def test_write_tuple(self):
  199. f = BytesIO()
  200. write_cache_time(f, (434343, 21))
  201. self.assertEqual(struct.pack(">LL", 434343, 21), f.getvalue())
  202. def test_write_float(self):
  203. f = BytesIO()
  204. write_cache_time(f, 434343.000000021)
  205. self.assertEqual(struct.pack(">LL", 434343, 21), f.getvalue())
  206. class IndexEntryFromStatTests(TestCase):
  207. def test_simple(self):
  208. st = os.stat_result(
  209. (
  210. 16877,
  211. 131078,
  212. 64769,
  213. 154,
  214. 1000,
  215. 1000,
  216. 12288,
  217. 1323629595,
  218. 1324180496,
  219. 1324180496,
  220. )
  221. )
  222. entry = index_entry_from_stat(st, "22" * 20, 0)
  223. self.assertEqual(
  224. entry,
  225. IndexEntry(
  226. 1324180496,
  227. 1324180496,
  228. 64769,
  229. 131078,
  230. 16384,
  231. 1000,
  232. 1000,
  233. 12288,
  234. "2222222222222222222222222222222222222222",
  235. 0,
  236. None,
  237. ),
  238. )
  239. def test_override_mode(self):
  240. st = os.stat_result(
  241. (
  242. stat.S_IFREG + 0o644,
  243. 131078,
  244. 64769,
  245. 154,
  246. 1000,
  247. 1000,
  248. 12288,
  249. 1323629595,
  250. 1324180496,
  251. 1324180496,
  252. )
  253. )
  254. entry = index_entry_from_stat(st, "22" * 20, 0, mode=stat.S_IFREG + 0o755)
  255. self.assertEqual(
  256. entry,
  257. IndexEntry(
  258. 1324180496,
  259. 1324180496,
  260. 64769,
  261. 131078,
  262. 33261,
  263. 1000,
  264. 1000,
  265. 12288,
  266. "2222222222222222222222222222222222222222",
  267. 0,
  268. None,
  269. ),
  270. )
  271. class BuildIndexTests(TestCase):
  272. def assertReasonableIndexEntry(self, index_entry, mode, filesize, sha):
  273. self.assertEqual(index_entry[4], mode) # mode
  274. self.assertEqual(index_entry[7], filesize) # filesize
  275. self.assertEqual(index_entry[8], sha) # sha
  276. def assertFileContents(self, path, contents, symlink=False):
  277. if symlink:
  278. self.assertEqual(os.readlink(path), contents)
  279. else:
  280. with open(path, "rb") as f:
  281. self.assertEqual(f.read(), contents)
  282. def test_empty(self):
  283. repo_dir = tempfile.mkdtemp()
  284. self.addCleanup(shutil.rmtree, repo_dir)
  285. with Repo.init(repo_dir) as repo:
  286. tree = Tree()
  287. repo.object_store.add_object(tree)
  288. build_index_from_tree(
  289. repo.path, repo.index_path(), repo.object_store, tree.id
  290. )
  291. # Verify index entries
  292. index = repo.open_index()
  293. self.assertEqual(len(index), 0)
  294. # Verify no files
  295. self.assertEqual([".git"], os.listdir(repo.path))
  296. def test_git_dir(self):
  297. repo_dir = tempfile.mkdtemp()
  298. self.addCleanup(shutil.rmtree, repo_dir)
  299. with Repo.init(repo_dir) as repo:
  300. # Populate repo
  301. filea = Blob.from_string(b"file a")
  302. filee = Blob.from_string(b"d")
  303. tree = Tree()
  304. tree[b".git/a"] = (stat.S_IFREG | 0o644, filea.id)
  305. tree[b"c/e"] = (stat.S_IFREG | 0o644, filee.id)
  306. repo.object_store.add_objects([(o, None) for o in [filea, filee, tree]])
  307. build_index_from_tree(
  308. repo.path, repo.index_path(), repo.object_store, tree.id
  309. )
  310. # Verify index entries
  311. index = repo.open_index()
  312. self.assertEqual(len(index), 1)
  313. # filea
  314. apath = os.path.join(repo.path, ".git", "a")
  315. self.assertFalse(os.path.exists(apath))
  316. # filee
  317. epath = os.path.join(repo.path, "c", "e")
  318. self.assertTrue(os.path.exists(epath))
  319. self.assertReasonableIndexEntry(
  320. index[b"c/e"], stat.S_IFREG | 0o644, 1, filee.id
  321. )
  322. self.assertFileContents(epath, b"d")
  323. def test_nonempty(self):
  324. repo_dir = tempfile.mkdtemp()
  325. self.addCleanup(shutil.rmtree, repo_dir)
  326. with Repo.init(repo_dir) as repo:
  327. # Populate repo
  328. filea = Blob.from_string(b"file a")
  329. fileb = Blob.from_string(b"file b")
  330. filed = Blob.from_string(b"file d")
  331. tree = Tree()
  332. tree[b"a"] = (stat.S_IFREG | 0o644, filea.id)
  333. tree[b"b"] = (stat.S_IFREG | 0o644, fileb.id)
  334. tree[b"c/d"] = (stat.S_IFREG | 0o644, filed.id)
  335. repo.object_store.add_objects(
  336. [(o, None) for o in [filea, fileb, filed, tree]]
  337. )
  338. build_index_from_tree(
  339. repo.path, repo.index_path(), repo.object_store, tree.id
  340. )
  341. # Verify index entries
  342. index = repo.open_index()
  343. self.assertEqual(len(index), 3)
  344. # filea
  345. apath = os.path.join(repo.path, "a")
  346. self.assertTrue(os.path.exists(apath))
  347. self.assertReasonableIndexEntry(
  348. index[b"a"], stat.S_IFREG | 0o644, 6, filea.id
  349. )
  350. self.assertFileContents(apath, b"file a")
  351. # fileb
  352. bpath = os.path.join(repo.path, "b")
  353. self.assertTrue(os.path.exists(bpath))
  354. self.assertReasonableIndexEntry(
  355. index[b"b"], stat.S_IFREG | 0o644, 6, fileb.id
  356. )
  357. self.assertFileContents(bpath, b"file b")
  358. # filed
  359. dpath = os.path.join(repo.path, "c", "d")
  360. self.assertTrue(os.path.exists(dpath))
  361. self.assertReasonableIndexEntry(
  362. index[b"c/d"], stat.S_IFREG | 0o644, 6, filed.id
  363. )
  364. self.assertFileContents(dpath, b"file d")
  365. # Verify no extra files
  366. self.assertEqual([".git", "a", "b", "c"], sorted(os.listdir(repo.path)))
  367. self.assertEqual(["d"], sorted(os.listdir(os.path.join(repo.path, "c"))))
  368. @skipIf(not getattr(os, "sync", None), "Requires sync support")
  369. def test_norewrite(self):
  370. repo_dir = tempfile.mkdtemp()
  371. self.addCleanup(shutil.rmtree, repo_dir)
  372. with Repo.init(repo_dir) as repo:
  373. # Populate repo
  374. filea = Blob.from_string(b"file a")
  375. filea_path = os.path.join(repo_dir, "a")
  376. tree = Tree()
  377. tree[b"a"] = (stat.S_IFREG | 0o644, filea.id)
  378. repo.object_store.add_objects([(o, None) for o in [filea, tree]])
  379. # First Write
  380. build_index_from_tree(
  381. repo.path, repo.index_path(), repo.object_store, tree.id
  382. )
  383. # Use sync as metadata can be cached on some FS
  384. os.sync()
  385. mtime = os.stat(filea_path).st_mtime
  386. # Test Rewrite
  387. build_index_from_tree(
  388. repo.path, repo.index_path(), repo.object_store, tree.id
  389. )
  390. os.sync()
  391. self.assertEqual(mtime, os.stat(filea_path).st_mtime)
  392. # Modify content
  393. with open(filea_path, "wb") as fh:
  394. fh.write(b"test a")
  395. os.sync()
  396. mtime = os.stat(filea_path).st_mtime
  397. # Test rewrite
  398. build_index_from_tree(
  399. repo.path, repo.index_path(), repo.object_store, tree.id
  400. )
  401. os.sync()
  402. with open(filea_path, "rb") as fh:
  403. self.assertEqual(b"file a", fh.read())
  404. @skipIf(not can_symlink(), "Requires symlink support")
  405. def test_symlink(self):
  406. repo_dir = tempfile.mkdtemp()
  407. self.addCleanup(shutil.rmtree, repo_dir)
  408. with Repo.init(repo_dir) as repo:
  409. # Populate repo
  410. filed = Blob.from_string(b"file d")
  411. filee = Blob.from_string(b"d")
  412. tree = Tree()
  413. tree[b"c/d"] = (stat.S_IFREG | 0o644, filed.id)
  414. tree[b"c/e"] = (stat.S_IFLNK, filee.id) # symlink
  415. repo.object_store.add_objects([(o, None) for o in [filed, filee, tree]])
  416. build_index_from_tree(
  417. repo.path, repo.index_path(), repo.object_store, tree.id
  418. )
  419. # Verify index entries
  420. index = repo.open_index()
  421. # symlink to d
  422. epath = os.path.join(repo.path, "c", "e")
  423. self.assertTrue(os.path.exists(epath))
  424. self.assertReasonableIndexEntry(
  425. index[b"c/e"],
  426. stat.S_IFLNK,
  427. 0 if sys.platform == "win32" else 1,
  428. filee.id,
  429. )
  430. self.assertFileContents(epath, "d", symlink=True)
  431. def test_no_decode_encode(self):
  432. repo_dir = tempfile.mkdtemp()
  433. repo_dir_bytes = os.fsencode(repo_dir)
  434. self.addCleanup(shutil.rmtree, repo_dir)
  435. with Repo.init(repo_dir) as repo:
  436. # Populate repo
  437. file = Blob.from_string(b"foo")
  438. tree = Tree()
  439. latin1_name = "À".encode("latin1")
  440. latin1_path = os.path.join(repo_dir_bytes, latin1_name)
  441. utf8_name = "À".encode()
  442. utf8_path = os.path.join(repo_dir_bytes, utf8_name)
  443. tree[latin1_name] = (stat.S_IFREG | 0o644, file.id)
  444. tree[utf8_name] = (stat.S_IFREG | 0o644, file.id)
  445. repo.object_store.add_objects([(o, None) for o in [file, tree]])
  446. try:
  447. build_index_from_tree(
  448. repo.path, repo.index_path(), repo.object_store, tree.id
  449. )
  450. except OSError as e:
  451. if e.errno == 92 and sys.platform == "darwin":
  452. # Our filename isn't supported by the platform :(
  453. self.skipTest("can not write filename %r" % e.filename)
  454. else:
  455. raise
  456. except UnicodeDecodeError:
  457. # This happens e.g. with python3.6 on Windows.
  458. # It implicitly decodes using utf8, which doesn't work.
  459. self.skipTest("can not implicitly convert as utf8")
  460. # Verify index entries
  461. index = repo.open_index()
  462. self.assertIn(latin1_name, index)
  463. self.assertIn(utf8_name, index)
  464. self.assertTrue(os.path.exists(latin1_path))
  465. self.assertTrue(os.path.exists(utf8_path))
  466. def test_git_submodule(self):
  467. repo_dir = tempfile.mkdtemp()
  468. self.addCleanup(shutil.rmtree, repo_dir)
  469. with Repo.init(repo_dir) as repo:
  470. filea = Blob.from_string(b"file alalala")
  471. subtree = Tree()
  472. subtree[b"a"] = (stat.S_IFREG | 0o644, filea.id)
  473. c = Commit()
  474. c.tree = subtree.id
  475. c.committer = c.author = b"Somebody <somebody@example.com>"
  476. c.commit_time = c.author_time = 42342
  477. c.commit_timezone = c.author_timezone = 0
  478. c.parents = []
  479. c.message = b"Subcommit"
  480. tree = Tree()
  481. tree[b"c"] = (S_IFGITLINK, c.id)
  482. repo.object_store.add_objects([(o, None) for o in [tree]])
  483. build_index_from_tree(
  484. repo.path, repo.index_path(), repo.object_store, tree.id
  485. )
  486. # Verify index entries
  487. index = repo.open_index()
  488. self.assertEqual(len(index), 1)
  489. # filea
  490. apath = os.path.join(repo.path, "c/a")
  491. self.assertFalse(os.path.exists(apath))
  492. # dir c
  493. cpath = os.path.join(repo.path, "c")
  494. self.assertTrue(os.path.isdir(cpath))
  495. self.assertEqual(index[b"c"][4], S_IFGITLINK) # mode
  496. self.assertEqual(index[b"c"][8], c.id) # sha
  497. def test_git_submodule_exists(self):
  498. repo_dir = tempfile.mkdtemp()
  499. self.addCleanup(shutil.rmtree, repo_dir)
  500. with Repo.init(repo_dir) as repo:
  501. filea = Blob.from_string(b"file alalala")
  502. subtree = Tree()
  503. subtree[b"a"] = (stat.S_IFREG | 0o644, filea.id)
  504. c = Commit()
  505. c.tree = subtree.id
  506. c.committer = c.author = b"Somebody <somebody@example.com>"
  507. c.commit_time = c.author_time = 42342
  508. c.commit_timezone = c.author_timezone = 0
  509. c.parents = []
  510. c.message = b"Subcommit"
  511. tree = Tree()
  512. tree[b"c"] = (S_IFGITLINK, c.id)
  513. os.mkdir(os.path.join(repo_dir, "c"))
  514. repo.object_store.add_objects([(o, None) for o in [tree]])
  515. build_index_from_tree(
  516. repo.path, repo.index_path(), repo.object_store, tree.id
  517. )
  518. # Verify index entries
  519. index = repo.open_index()
  520. self.assertEqual(len(index), 1)
  521. # filea
  522. apath = os.path.join(repo.path, "c/a")
  523. self.assertFalse(os.path.exists(apath))
  524. # dir c
  525. cpath = os.path.join(repo.path, "c")
  526. self.assertTrue(os.path.isdir(cpath))
  527. self.assertEqual(index[b"c"][4], S_IFGITLINK) # mode
  528. self.assertEqual(index[b"c"][8], c.id) # sha
  529. class GetUnstagedChangesTests(TestCase):
  530. def test_get_unstaged_changes(self):
  531. """Unit test for get_unstaged_changes."""
  532. repo_dir = tempfile.mkdtemp()
  533. self.addCleanup(shutil.rmtree, repo_dir)
  534. with Repo.init(repo_dir) as repo:
  535. # Commit a dummy file then modify it
  536. foo1_fullpath = os.path.join(repo_dir, "foo1")
  537. with open(foo1_fullpath, "wb") as f:
  538. f.write(b"origstuff")
  539. foo2_fullpath = os.path.join(repo_dir, "foo2")
  540. with open(foo2_fullpath, "wb") as f:
  541. f.write(b"origstuff")
  542. repo.stage(["foo1", "foo2"])
  543. repo.do_commit(
  544. b"test status",
  545. author=b"author <email>",
  546. committer=b"committer <email>",
  547. )
  548. with open(foo1_fullpath, "wb") as f:
  549. f.write(b"newstuff")
  550. # modify access and modify time of path
  551. os.utime(foo1_fullpath, (0, 0))
  552. changes = get_unstaged_changes(repo.open_index(), repo_dir)
  553. self.assertEqual(list(changes), [b"foo1"])
  554. def test_get_unstaged_deleted_changes(self):
  555. """Unit test for get_unstaged_changes."""
  556. repo_dir = tempfile.mkdtemp()
  557. self.addCleanup(shutil.rmtree, repo_dir)
  558. with Repo.init(repo_dir) as repo:
  559. # Commit a dummy file then remove it
  560. foo1_fullpath = os.path.join(repo_dir, "foo1")
  561. with open(foo1_fullpath, "wb") as f:
  562. f.write(b"origstuff")
  563. repo.stage(["foo1"])
  564. repo.do_commit(
  565. b"test status",
  566. author=b"author <email>",
  567. committer=b"committer <email>",
  568. )
  569. os.unlink(foo1_fullpath)
  570. changes = get_unstaged_changes(repo.open_index(), repo_dir)
  571. self.assertEqual(list(changes), [b"foo1"])
  572. def test_get_unstaged_changes_removed_replaced_by_directory(self):
  573. """Unit test for get_unstaged_changes."""
  574. repo_dir = tempfile.mkdtemp()
  575. self.addCleanup(shutil.rmtree, repo_dir)
  576. with Repo.init(repo_dir) as repo:
  577. # Commit a dummy file then modify it
  578. foo1_fullpath = os.path.join(repo_dir, "foo1")
  579. with open(foo1_fullpath, "wb") as f:
  580. f.write(b"origstuff")
  581. repo.stage(["foo1"])
  582. repo.do_commit(
  583. b"test status",
  584. author=b"author <email>",
  585. committer=b"committer <email>",
  586. )
  587. os.remove(foo1_fullpath)
  588. os.mkdir(foo1_fullpath)
  589. changes = get_unstaged_changes(repo.open_index(), repo_dir)
  590. self.assertEqual(list(changes), [b"foo1"])
  591. @skipIf(not can_symlink(), "Requires symlink support")
  592. def test_get_unstaged_changes_removed_replaced_by_link(self):
  593. """Unit test for get_unstaged_changes."""
  594. repo_dir = tempfile.mkdtemp()
  595. self.addCleanup(shutil.rmtree, repo_dir)
  596. with Repo.init(repo_dir) as repo:
  597. # Commit a dummy file then modify it
  598. foo1_fullpath = os.path.join(repo_dir, "foo1")
  599. with open(foo1_fullpath, "wb") as f:
  600. f.write(b"origstuff")
  601. repo.stage(["foo1"])
  602. repo.do_commit(
  603. b"test status",
  604. author=b"author <email>",
  605. committer=b"committer <email>",
  606. )
  607. os.remove(foo1_fullpath)
  608. os.symlink(os.path.dirname(foo1_fullpath), foo1_fullpath)
  609. changes = get_unstaged_changes(repo.open_index(), repo_dir)
  610. self.assertEqual(list(changes), [b"foo1"])
  611. class TestValidatePathElement(TestCase):
  612. def test_default(self):
  613. self.assertTrue(validate_path_element_default(b"bla"))
  614. self.assertTrue(validate_path_element_default(b".bla"))
  615. self.assertFalse(validate_path_element_default(b".git"))
  616. self.assertFalse(validate_path_element_default(b".giT"))
  617. self.assertFalse(validate_path_element_default(b".."))
  618. self.assertTrue(validate_path_element_default(b"git~1"))
  619. def test_ntfs(self):
  620. self.assertTrue(validate_path_element_ntfs(b"bla"))
  621. self.assertTrue(validate_path_element_ntfs(b".bla"))
  622. self.assertFalse(validate_path_element_ntfs(b".git"))
  623. self.assertFalse(validate_path_element_ntfs(b".giT"))
  624. self.assertFalse(validate_path_element_ntfs(b".."))
  625. self.assertFalse(validate_path_element_ntfs(b"git~1"))
  626. class TestTreeFSPathConversion(TestCase):
  627. def test_tree_to_fs_path(self):
  628. tree_path = "délwíçh/foo".encode()
  629. fs_path = _tree_to_fs_path(b"/prefix/path", tree_path)
  630. self.assertEqual(
  631. fs_path,
  632. os.fsencode(os.path.join("/prefix/path", "délwíçh", "foo")),
  633. )
  634. def test_fs_to_tree_path_str(self):
  635. fs_path = os.path.join(os.path.join("délwíçh", "foo"))
  636. tree_path = _fs_to_tree_path(fs_path)
  637. self.assertEqual(tree_path, "délwíçh/foo".encode())
  638. def test_fs_to_tree_path_bytes(self):
  639. fs_path = os.path.join(os.fsencode(os.path.join("délwíçh", "foo")))
  640. tree_path = _fs_to_tree_path(fs_path)
  641. self.assertEqual(tree_path, "délwíçh/foo".encode())