test: Test pmb.parse.arch.machine_type_to_alpine (MR 2282)

This commit is contained in:
Newbyte 2024-03-23 15:49:21 +01:00
parent ba2ff0ea70
commit b9858fb9cb
No known key found for this signature in database
GPG Key ID: 8A700086A9FE41FD
1 changed files with 15 additions and 0 deletions

15
test/test_parse_arch.py Normal file
View File

@ -0,0 +1,15 @@
# Copyright 2024 Stefan "Newbyte" Hansson
# SPDX-License-Identifier: GPL-3.0-or-later
import pytest
import pmb.parse.arch
def test_machine_type_to_alpine() -> None:
fake_machine_type = "not-a-machine-type"
with pytest.raises(ValueError) as e:
pmb.parse.arch.machine_type_to_alpine(fake_machine_type)
assert e == f"Can not map machine type {fake_machine_type} to the right Alpine Linux architecture"
assert pmb.parse.arch.machine_type_to_alpine("armv7l") == "armv7"