2
0

test_line_ending.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. # test_line_ending.py -- Tests for the line ending functions
  2. # Copyright (C) 2018-2019 Boris Feld <boris.feld@comet.ml>
  3. #
  4. # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
  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 line ending conversion."""
  22. from dulwich.line_ending import (
  23. convert_crlf_to_lf,
  24. convert_lf_to_crlf,
  25. get_checkin_filter_autocrlf,
  26. get_checkout_filter_autocrlf,
  27. normalize_blob,
  28. )
  29. from dulwich.objects import Blob
  30. from . import TestCase
  31. class LineEndingConversion(TestCase):
  32. """Test the line ending conversion functions in various cases."""
  33. def test_convert_crlf_to_lf_no_op(self) -> None:
  34. self.assertEqual(convert_crlf_to_lf(b"foobar"), b"foobar")
  35. def test_convert_crlf_to_lf(self) -> None:
  36. self.assertEqual(convert_crlf_to_lf(b"line1\r\nline2"), b"line1\nline2")
  37. def test_convert_crlf_to_lf_mixed(self) -> None:
  38. self.assertEqual(convert_crlf_to_lf(b"line1\r\n\nline2"), b"line1\n\nline2")
  39. def test_convert_lf_to_crlf_no_op(self) -> None:
  40. self.assertEqual(convert_lf_to_crlf(b"foobar"), b"foobar")
  41. def test_convert_lf_to_crlf(self) -> None:
  42. self.assertEqual(convert_lf_to_crlf(b"line1\nline2"), b"line1\r\nline2")
  43. def test_convert_lf_to_crlf_mixed(self) -> None:
  44. self.assertEqual(convert_lf_to_crlf(b"line1\r\n\nline2"), b"line1\r\n\r\nline2")
  45. class GetLineEndingAutocrlfFilters(TestCase):
  46. def test_get_checkin_filter_autocrlf_default(self) -> None:
  47. checkin_filter = get_checkin_filter_autocrlf(b"false")
  48. self.assertEqual(checkin_filter, None)
  49. def test_get_checkin_filter_autocrlf_true(self) -> None:
  50. checkin_filter = get_checkin_filter_autocrlf(b"true")
  51. self.assertEqual(checkin_filter, convert_crlf_to_lf)
  52. def test_get_checkin_filter_autocrlf_input(self) -> None:
  53. checkin_filter = get_checkin_filter_autocrlf(b"input")
  54. self.assertEqual(checkin_filter, convert_crlf_to_lf)
  55. def test_get_checkout_filter_autocrlf_default(self) -> None:
  56. checkout_filter = get_checkout_filter_autocrlf(b"false")
  57. self.assertEqual(checkout_filter, None)
  58. def test_get_checkout_filter_autocrlf_true(self) -> None:
  59. checkout_filter = get_checkout_filter_autocrlf(b"true")
  60. self.assertEqual(checkout_filter, convert_lf_to_crlf)
  61. def test_get_checkout_filter_autocrlf_input(self) -> None:
  62. checkout_filter = get_checkout_filter_autocrlf(b"input")
  63. self.assertEqual(checkout_filter, None)
  64. class NormalizeBlobTestCase(TestCase):
  65. def test_normalize_to_lf_no_op(self) -> None:
  66. base_content = b"line1\nline2"
  67. base_sha = "f8be7bb828880727816015d21abcbc37d033f233"
  68. base_blob = Blob()
  69. base_blob.set_raw_string(base_content)
  70. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  71. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  72. filtered_blob = normalize_blob(
  73. base_blob, convert_crlf_to_lf, binary_detection=False
  74. )
  75. self.assertEqual(filtered_blob.as_raw_chunks(), [base_content])
  76. self.assertEqual(filtered_blob.sha().hexdigest(), base_sha)
  77. def test_normalize_to_lf(self) -> None:
  78. base_content = b"line1\r\nline2"
  79. base_sha = "3a1bd7a52799fe5cf6411f1d35f4c10bacb1db96"
  80. base_blob = Blob()
  81. base_blob.set_raw_string(base_content)
  82. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  83. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  84. filtered_blob = normalize_blob(
  85. base_blob, convert_crlf_to_lf, binary_detection=False
  86. )
  87. normalized_content = b"line1\nline2"
  88. normalized_sha = "f8be7bb828880727816015d21abcbc37d033f233"
  89. self.assertEqual(filtered_blob.as_raw_chunks(), [normalized_content])
  90. self.assertEqual(filtered_blob.sha().hexdigest(), normalized_sha)
  91. def test_normalize_to_lf_binary(self) -> None:
  92. base_content = b"line1\r\nline2\0"
  93. base_sha = "b44504193b765f7cd79673812de8afb55b372ab2"
  94. base_blob = Blob()
  95. base_blob.set_raw_string(base_content)
  96. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  97. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  98. filtered_blob = normalize_blob(
  99. base_blob, convert_crlf_to_lf, binary_detection=True
  100. )
  101. self.assertEqual(filtered_blob.as_raw_chunks(), [base_content])
  102. self.assertEqual(filtered_blob.sha().hexdigest(), base_sha)
  103. def test_normalize_to_crlf_no_op(self) -> None:
  104. base_content = b"line1\r\nline2"
  105. base_sha = "3a1bd7a52799fe5cf6411f1d35f4c10bacb1db96"
  106. base_blob = Blob()
  107. base_blob.set_raw_string(base_content)
  108. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  109. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  110. filtered_blob = normalize_blob(
  111. base_blob, convert_lf_to_crlf, binary_detection=False
  112. )
  113. self.assertEqual(filtered_blob.as_raw_chunks(), [base_content])
  114. self.assertEqual(filtered_blob.sha().hexdigest(), base_sha)
  115. def test_normalize_to_crlf(self) -> None:
  116. base_content = b"line1\nline2"
  117. base_sha = "f8be7bb828880727816015d21abcbc37d033f233"
  118. base_blob = Blob()
  119. base_blob.set_raw_string(base_content)
  120. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  121. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  122. filtered_blob = normalize_blob(
  123. base_blob, convert_lf_to_crlf, binary_detection=False
  124. )
  125. normalized_content = b"line1\r\nline2"
  126. normalized_sha = "3a1bd7a52799fe5cf6411f1d35f4c10bacb1db96"
  127. self.assertEqual(filtered_blob.as_raw_chunks(), [normalized_content])
  128. self.assertEqual(filtered_blob.sha().hexdigest(), normalized_sha)
  129. def test_normalize_to_crlf_binary(self) -> None:
  130. base_content = b"line1\r\nline2\0"
  131. base_sha = "b44504193b765f7cd79673812de8afb55b372ab2"
  132. base_blob = Blob()
  133. base_blob.set_raw_string(base_content)
  134. self.assertEqual(base_blob.as_raw_chunks(), [base_content])
  135. self.assertEqual(base_blob.sha().hexdigest(), base_sha)
  136. filtered_blob = normalize_blob(
  137. base_blob, convert_lf_to_crlf, binary_detection=True
  138. )
  139. self.assertEqual(filtered_blob.as_raw_chunks(), [base_content])
  140. self.assertEqual(filtered_blob.sha().hexdigest(), base_sha)