blob: d77c82a100cf9ba511a91addb9eafa047e4c6291 [file] [log] [blame]
Diego Russo56cd4a62020-04-23 16:41:07 +01001#!/usr/bin/env python3
2# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the License); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an AS IS BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# Simple example of the usage of mlw_codec.
Jonas Ohlsson845e2322022-03-01 12:39:55 +010018from typing import Any
19from typing import List
20
Diego Russo56cd4a62020-04-23 16:41:07 +010021import pytest
Louis Verhaard0b8268a2020-08-05 16:11:29 +020022
Diego Russo56cd4a62020-04-23 16:41:07 +010023from ethosu import mlw_codec
24
25
26class TestMLWCodec:
Jonas Ohlssond8575072022-03-30 10:30:25 +020027 """This class is responsible to test the mlw_codec library
Diego Russo56cd4a62020-04-23 16:41:07 +010028 It mainly tests the two methods encode() and decode() with different inputs"""
29
30 weights = [0, 2, 3, 0, -1, -2, -3, 0, 0, 0, 1, -250, 240] * 3
31 compressed_weights = bytearray(
32 b"\xb8\x00\\q^\x1f\xfc\x01\x03\x05\x08\x0c\x10\x908\x12\xd7\x99:\xd2\x99$\xae#\x9d\xa9#\x00\xf0\xff\xff\xff"
33 )
34 empty_decoded = bytearray(b"\xfe\xffC\x00\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff")
35
36 # Generate parameters lists for the tests below
37 encode_testdata = [
38 (mlw_codec.encode, weights, compressed_weights),
39 pytest.param(mlw_codec.encode, ["a"], empty_decoded, marks=pytest.mark.xfail), # cannot accept strings
40 ]
41
42 decode_testdata = [(mlw_codec.decode, compressed_weights, weights)]
43
44 codec_testdata = [
45 (weights, weights),
46 ([1] * 10, [1] * 10),
47 pytest.param(["a"], ["a"], marks=pytest.mark.xfail), # cannot accept strings
48 ]
49
50 @pytest.mark.parametrize("function_under_test,test_input,expected", encode_testdata)
51 def test_mlw_codec(self, function_under_test, test_input, expected):
52 self._call_mlw_codec_method(function_under_test, test_input, expected)
53
54 @pytest.mark.parametrize("function_under_test,test_input,expected", decode_testdata)
55 def test_mlw_decode(self, function_under_test, test_input, expected):
56 self._call_mlw_codec_method(function_under_test, test_input, expected)
57
58 @pytest.mark.parametrize("test_input,expected", codec_testdata)
59 def test_mlw_encode_decode(self, test_input, expected):
60 output = mlw_codec.decode(mlw_codec.encode(test_input))
61 assert output == expected
62
63 def _call_mlw_codec_method(self, method_name, test_input, expected):
64 output = method_name(test_input)
65 assert output == expected
Louis Verhaard60232142021-01-22 14:11:15 +010066
67 invalid_encode_test_data = [None, 3, [4, 5, None, 7], [0, 1, "two", 3], [1, 2, 256, 4], [2, 4, 8, -256]]
68
69 @pytest.mark.parametrize("input", invalid_encode_test_data)
70 def test_encode_invalid_input(self, input):
71 with pytest.raises(Exception):
72 mlw_codec.encode(input)
73
Jonas Ohlsson845e2322022-03-01 12:39:55 +010074 invalid_decode_test_data: List[Any] = [None, 3, []]
Louis Verhaard60232142021-01-22 14:11:15 +010075
76 @pytest.mark.parametrize("input", invalid_decode_test_data)
77 def test_decode_invalid_input(self, input):
78 with pytest.raises(Exception):
79 mlw_codec.decode(input)