2015-06-17 15:11:25 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import os
|
2017-04-18 14:21:45 +00:00
|
|
|
import sys
|
2018-01-29 09:18:13 +00:00
|
|
|
import threading
|
2022-04-18 10:13:52 +00:00
|
|
|
import pytest
|
2016-06-07 17:38:01 +00:00
|
|
|
from unittest.mock import patch
|
2015-06-17 15:11:25 +00:00
|
|
|
|
2016-06-07 17:38:01 +00:00
|
|
|
|
|
|
|
from gns3server.utils import force_unix_path
|
2016-11-28 18:49:50 +00:00
|
|
|
from gns3server.utils.images import md5sum, remove_checksum, images_directories, list_images
|
2016-06-07 17:38:01 +00:00
|
|
|
|
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
def test_images_directories(tmpdir, config):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-06-07 17:38:01 +00:00
|
|
|
path1 = tmpdir / "images1" / "QEMU" / "test1.bin"
|
|
|
|
path1.write("1", ensure=True)
|
|
|
|
path1 = force_unix_path(str(path1))
|
|
|
|
|
|
|
|
path2 = tmpdir / "images2" / "test2.bin"
|
|
|
|
path2.write("1", ensure=True)
|
|
|
|
path2 = force_unix_path(str(path2))
|
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
config.settings.Server.images_path = str(tmpdir / "images1")
|
|
|
|
config.settings.Server.additional_images_paths = "/tmp/null24564;" + str(tmpdir / "images2")
|
2016-06-07 17:38:01 +00:00
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
# /tmp/null24564 is ignored because doesn't exists
|
|
|
|
res = images_directories("qemu")
|
|
|
|
assert res[0] == force_unix_path(str(tmpdir / "images1" / "QEMU"))
|
|
|
|
assert res[1] == force_unix_path(str(tmpdir / "images2"))
|
|
|
|
assert res[2] == force_unix_path(str(tmpdir / "images1"))
|
|
|
|
assert len(res) == 3
|
2015-06-17 15:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_md5sum(tmpdir):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-01-26 14:32:40 +00:00
|
|
|
fake_img = str(tmpdir / 'hello载')
|
2015-06-17 15:11:25 +00:00
|
|
|
|
|
|
|
with open(fake_img, 'w+') as f:
|
|
|
|
f.write('hello')
|
|
|
|
|
|
|
|
assert md5sum(fake_img) == '5d41402abc4b2a76b9719d911017c592'
|
2016-01-26 14:32:40 +00:00
|
|
|
with open(str(tmpdir / 'hello载.md5sum')) as f:
|
2015-06-17 15:11:25 +00:00
|
|
|
assert f.read() == '5d41402abc4b2a76b9719d911017c592'
|
|
|
|
|
|
|
|
|
2018-01-29 09:18:13 +00:00
|
|
|
def test_md5sum_stopped_event(tmpdir):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2018-01-29 09:18:13 +00:00
|
|
|
fake_img = str(tmpdir / 'hello_stopped')
|
|
|
|
with open(fake_img, 'w+') as f:
|
|
|
|
f.write('hello')
|
|
|
|
|
|
|
|
event = threading.Event()
|
|
|
|
event.set()
|
|
|
|
|
|
|
|
assert md5sum(fake_img, stopped_event=event) is None
|
|
|
|
assert not os.path.exists(str(tmpdir / 'hello_stopped.md5sum'))
|
|
|
|
|
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
def test_md5sum_existing_digest(tmpdir):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
fake_img = str(tmpdir / 'hello')
|
|
|
|
|
2015-06-19 14:36:25 +00:00
|
|
|
with open(fake_img, 'w+') as f:
|
|
|
|
f.write('hello')
|
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
with open(str(tmpdir / 'hello.md5sum'), 'w+') as f:
|
|
|
|
f.write('aaaaa02abc4b2a76b9719d911017c592')
|
|
|
|
|
|
|
|
assert md5sum(fake_img) == 'aaaaa02abc4b2a76b9719d911017c592'
|
|
|
|
|
|
|
|
|
2015-06-19 14:36:25 +00:00
|
|
|
def test_md5sum_existing_digest_but_missing_image(tmpdir):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2015-06-19 14:36:25 +00:00
|
|
|
fake_img = str(tmpdir / 'hello')
|
|
|
|
|
|
|
|
with open(str(tmpdir / 'hello.md5sum'), 'w+') as f:
|
|
|
|
f.write('aaaaa02abc4b2a76b9719d911017c592')
|
|
|
|
|
|
|
|
assert md5sum(fake_img) is None
|
|
|
|
|
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
def test_md5sum_none(tmpdir):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
assert md5sum(None) is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_checksum(tmpdir):
|
|
|
|
|
|
|
|
with open(str(tmpdir / 'hello.md5sum'), 'w+') as f:
|
|
|
|
f.write('aaaaa02abc4b2a76b9719d911017c592')
|
|
|
|
remove_checksum(str(tmpdir / 'hello'))
|
|
|
|
|
|
|
|
assert not os.path.exists(str(tmpdir / 'hello.md5sum'))
|
|
|
|
|
|
|
|
remove_checksum(str(tmpdir / 'not_exists'))
|
2016-06-08 12:14:03 +00:00
|
|
|
|
|
|
|
|
2022-04-18 10:13:52 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_list_images(tmpdir, config):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-06-08 12:14:03 +00:00
|
|
|
path1 = tmpdir / "images1" / "IOS" / "test1.image"
|
2016-11-28 18:49:50 +00:00
|
|
|
path1.write(b'\x7fELF\x01\x02\x01', ensure=True)
|
2016-06-08 12:14:03 +00:00
|
|
|
path1 = force_unix_path(str(path1))
|
|
|
|
|
|
|
|
path2 = tmpdir / "images2" / "test2.image"
|
2016-11-28 18:49:50 +00:00
|
|
|
path2.write(b'\x7fELF\x01\x02\x01', ensure=True)
|
2016-06-08 12:14:03 +00:00
|
|
|
path2 = force_unix_path(str(path2))
|
|
|
|
|
2016-11-28 18:49:50 +00:00
|
|
|
# Invalid image because not a valid elf file
|
|
|
|
path = tmpdir / "images2" / "test_invalid.image"
|
|
|
|
path.write(b'NOTANELF', ensure=True)
|
|
|
|
|
2017-04-18 14:21:45 +00:00
|
|
|
if sys.platform.startswith("linux"):
|
|
|
|
path3 = tmpdir / "images1" / "IOU" / "test3.bin"
|
|
|
|
path3.write(b'\x7fELF\x01\x02\x01', ensure=True)
|
|
|
|
path3 = force_unix_path(str(path3))
|
2016-06-08 12:14:03 +00:00
|
|
|
|
|
|
|
path4 = tmpdir / "images1" / "QEMU" / "test4.qcow2"
|
|
|
|
path4.write("1", ensure=True)
|
|
|
|
path4 = force_unix_path(str(path4))
|
|
|
|
|
2016-08-18 17:26:17 +00:00
|
|
|
path5 = tmpdir / "images1" / "QEMU" / "test4.qcow2.md5sum"
|
|
|
|
path5.write("1", ensure=True)
|
|
|
|
path5 = force_unix_path(str(path5))
|
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
config.settings.Server.images_path = str(tmpdir / "images1")
|
|
|
|
config.settings.Server.additional_images_paths = "/tmp/null24564;" + str(tmpdir / "images2")
|
|
|
|
|
2022-04-18 10:13:52 +00:00
|
|
|
assert await list_images("dynamips") == [
|
2021-04-12 07:32:23 +00:00
|
|
|
{
|
|
|
|
'filename': 'test1.image',
|
|
|
|
'filesize': 7,
|
|
|
|
'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e',
|
|
|
|
'path': 'test1.image'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'filename': 'test2.image',
|
|
|
|
'filesize': 7,
|
|
|
|
'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e',
|
|
|
|
'path': str(path2)
|
|
|
|
}
|
|
|
|
]
|
2016-06-08 12:14:03 +00:00
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
if sys.platform.startswith("linux"):
|
2022-04-18 10:13:52 +00:00
|
|
|
assert await list_images("iou") == [
|
2016-11-28 18:49:50 +00:00
|
|
|
{
|
2021-04-12 07:32:23 +00:00
|
|
|
'filename': 'test3.bin',
|
2016-11-28 18:49:50 +00:00
|
|
|
'filesize': 7,
|
|
|
|
'md5sum': 'b0d5aa897d937aced5a6b1046e8f7e2e',
|
2021-04-12 07:32:23 +00:00
|
|
|
'path': 'test3.bin'
|
2016-11-28 18:49:50 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-04-18 10:13:52 +00:00
|
|
|
assert await list_images("qemu") == [
|
2021-04-12 07:32:23 +00:00
|
|
|
{
|
|
|
|
'filename': 'test4.qcow2',
|
|
|
|
'filesize': 1,
|
|
|
|
'md5sum': 'c4ca4238a0b923820dcc509a6f75849b',
|
|
|
|
'path': 'test4.qcow2'
|
|
|
|
}
|
|
|
|
]
|