test_symlink_script.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. import pytest
  2. import os
  3. import subprocess
  4. def test_new(tmpdir):
  5. os.chdir(tmpdir.strpath)
  6. subprocess.check_call(["symlink", "source", "link"])
  7. assert os.path.lexists("link")
  8. assert os.readlink("link") == "source"
  9. def test_absolute(tmpdir):
  10. os.chdir(tmpdir.strpath)
  11. os.makedirs(os.path.join("1", "2"))
  12. link = os.path.join("1", "2", "link")
  13. source = os.path.join(os.getcwd(), "1", "source")
  14. subprocess.check_call(["symlink", source, link])
  15. assert os.path.lexists(link)
  16. assert os.readlink(link) == source
  17. def test_relative(tmpdir):
  18. os.chdir(tmpdir.strpath)
  19. os.makedirs(os.path.join("1", "2"))
  20. link = os.path.join("1", "2", "link")
  21. source = os.path.join(os.getcwd(), "1", "source")
  22. subprocess.check_call(["symlink", source, link, "--relative"])
  23. assert os.path.lexists(link)
  24. assert os.readlink(link) == "../source"
  25. def test_suitable_link_exists(tmpdir):
  26. os.chdir(tmpdir.strpath)
  27. subprocess.check_call(["symlink", "source", "link"])
  28. assert os.path.lexists("link")
  29. subprocess.check_call(["symlink", "source", "link"])
  30. def test_divergent_link_exists(tmpdir):
  31. os.chdir(tmpdir.strpath)
  32. subprocess.check_call(["symlink", "source", "link"])
  33. assert os.path.lexists("link")
  34. with pytest.raises(subprocess.CalledProcessError):
  35. subprocess.check_call(["symlink", "source2", "link"])
  36. def test_dir_exists(tmpdir):
  37. os.chdir(tmpdir.strpath)
  38. os.mkdir("dir")
  39. assert os.path.exists("dir")
  40. with pytest.raises(subprocess.CalledProcessError):
  41. subprocess.check_call(["symlink", "source", "dir"])
  42. def test_override_link(tmpdir):
  43. os.chdir(tmpdir.strpath)
  44. subprocess.check_call(["symlink", "source1", "link"])
  45. assert os.path.lexists("link")
  46. subprocess.check_call(["symlink", "source2", "link", "--override", "--no-backup"])
  47. assert os.path.lexists("link")
  48. assert os.readlink("link") == "source2"
  49. assert not os.path.lexists("link~")
  50. def test_override_dir(tmpdir):
  51. os.chdir(tmpdir.strpath)
  52. os.mkdir("link")
  53. assert os.path.exists("link")
  54. subprocess.check_call(["symlink", "source", "link", "--override", "--no-backup"])
  55. assert os.path.lexists("link")
  56. assert os.readlink("link") == "source"
  57. assert not os.path.isdir("link-")
  58. def test_backup_link(tmpdir):
  59. os.chdir(tmpdir.strpath)
  60. subprocess.check_call(["symlink", "source1", "link"])
  61. assert os.path.lexists("link")
  62. subprocess.check_call(["symlink", "source2", "link", "--override", "--backup-suffix", "~"])
  63. assert os.path.lexists("link")
  64. assert os.readlink("link") == "source2"
  65. assert os.path.lexists("link~")
  66. assert os.readlink("link~") == "source1"
  67. def test_backup_dir(tmpdir):
  68. os.chdir(tmpdir.strpath)
  69. os.mkdir("link")
  70. assert os.path.exists("link")
  71. subprocess.check_call(["symlink", "source", "link", "--override", "--backup-suffix", "-"])
  72. assert os.path.lexists("link")
  73. assert os.readlink("link") == "source"
  74. assert os.path.isdir("link-")
  75. def test_backup_multiple_links(tmpdir):
  76. os.chdir(tmpdir.strpath)
  77. # source 1
  78. subprocess.check_call(["symlink", "source1", "link"])
  79. assert os.path.lexists("link")
  80. # source 2
  81. subprocess.check_call(["symlink", "source2", "link", "--override", "--backup-suffix", "~"])
  82. assert os.path.lexists("link")
  83. assert os.readlink("link") == "source2"
  84. assert os.path.lexists("link~")
  85. assert os.readlink("link~") == "source1"
  86. # source 3
  87. subprocess.check_call(["symlink", "source3", "link", "--override", "--backup-suffix", "~"])
  88. assert os.path.lexists("link")
  89. assert os.readlink("link") == "source3"
  90. assert os.path.lexists("link~")
  91. assert os.readlink("link~") == "source1"
  92. assert os.path.lexists("link~1")
  93. assert os.readlink("link~1") == "source2"
  94. # source 4
  95. subprocess.check_call(["symlink", "source4", "link", "--override", "--backup-suffix", "~"])
  96. assert os.path.lexists("link")
  97. assert os.readlink("link") == "source4"
  98. assert os.path.lexists("link~")
  99. assert os.readlink("link~") == "source1"
  100. assert os.path.lexists("link~1")
  101. assert os.readlink("link~1") == "source2"
  102. assert os.path.lexists("link~2")
  103. assert os.readlink("link~2") == "source3"