test_lfs.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # test_lfs.py -- tests for LFS
  2. # Copyright (C) 2020 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Tests for LFS support."""
  21. import shutil
  22. import tempfile
  23. from dulwich.lfs import LFSStore
  24. from . import TestCase
  25. class LFSTests(TestCase):
  26. def setUp(self):
  27. super().setUp()
  28. self.test_dir = tempfile.mkdtemp()
  29. self.addCleanup(shutil.rmtree, self.test_dir)
  30. self.lfs = LFSStore.create(self.test_dir)
  31. def test_create(self):
  32. sha = self.lfs.write_object([b"a", b"b"])
  33. with self.lfs.open_object(sha) as f:
  34. self.assertEqual(b"ab", f.read())
  35. def test_missing(self):
  36. self.assertRaises(KeyError, self.lfs.open_object, "abcdeabcdeabcdeabcde")