From 081447ba2ea34e465e5a176bf41d787cda4cea77 Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 9 May 2024 15:37:42 +0700 Subject: [PATCH] Fix tests. Ref #2376 --- tests/handlers/api/compute/test_dynamips.py | 4 ++-- tests/utils/test_images.py | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/handlers/api/compute/test_dynamips.py b/tests/handlers/api/compute/test_dynamips.py index 2831b6e79..1e0871d3f 100644 --- a/tests/handlers/api/compute/test_dynamips.py +++ b/tests/handlers/api/compute/test_dynamips.py @@ -144,7 +144,7 @@ def fake_image(tmpdir): path = str(tmpdir / "7200.bin") with open(path, "wb+") as f: - f.write(b'\x7fELF\x01\x02\x01') + f.write(b'\x7fELF\x01\x01\x01') os.chmod(path, stat.S_IREAD) return path @@ -168,7 +168,7 @@ async def test_images(compute_api, tmpdir, fake_image, fake_file): assert response.json == [{"filename": "7200.bin", "path": "7200.bin", "filesize": 7, - "md5sum": "b0d5aa897d937aced5a6b1046e8f7e2e" + "md5sum": "e573e8f5c93c6c00783f20c7a170aa6c" }] diff --git a/tests/utils/test_images.py b/tests/utils/test_images.py index fd5aefd3c..76d7b8a8d 100644 --- a/tests/utils/test_images.py +++ b/tests/utils/test_images.py @@ -115,11 +115,11 @@ def test_remove_checksum(tmpdir): def test_list_images(tmpdir): path1 = tmpdir / "images1" / "IOS" / "test1.image" - path1.write(b'\x7fELF\x01\x02\x01', ensure=True) + path1.write(b'\x7fELF\x01\x01\x01', ensure=True) path1 = force_unix_path(str(path1)) path2 = tmpdir / "images2" / "test2.image" - path2.write(b'\x7fELF\x01\x02\x01', ensure=True) + path2.write(b'\x7fELF\x01\x01\x01', ensure=True) path2 = force_unix_path(str(path2)) # Invalid image because not a valid elf file @@ -128,7 +128,7 @@ def test_list_images(tmpdir): if sys.platform.startswith("linux"): path3 = tmpdir / "images1" / "IOU" / "test3.bin" - path3.write(b'\x7fELF\x01\x02\x01', ensure=True) + path3.write(b'\x7fELF\x02\x01\x01', ensure=True) path3 = force_unix_path(str(path3)) path4 = tmpdir / "images1" / "QEMU" / "test4.qcow2" @@ -148,13 +148,13 @@ def test_list_images(tmpdir): { 'filename': 'test1.image', 'filesize': 7, - 'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e', + 'md5sum': 'e573e8f5c93c6c00783f20c7a170aa6c', 'path': 'test1.image' }, { 'filename': 'test2.image', 'filesize': 7, - 'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e', + 'md5sum': 'e573e8f5c93c6c00783f20c7a170aa6c', 'path': str(path2) } ] @@ -164,7 +164,7 @@ def test_list_images(tmpdir): { 'filename': 'test3.bin', 'filesize': 7, - 'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e', + 'md5sum': 'c73626d23469519894d58bc98bee9655', 'path': 'test3.bin' } ]