blob: 18c828a36591cd54c407348267b1982f20079dea [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.
18import pytest
Louis Verhaard0b8268a2020-08-05 16:11:29 +020019
Diego Russo56cd4a62020-04-23 16:41:07 +010020from ethosu import mlw_codec
21
22
23class TestMLWCodec:
24 """ This class is responsible to test the mlw_codec library
25 It mainly tests the two methods encode() and decode() with different inputs"""
26
27 weights = [0, 2, 3, 0, -1, -2, -3, 0, 0, 0, 1, -250, 240] * 3
28 compressed_weights = bytearray(
29 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"
30 )
31 empty_decoded = bytearray(b"\xfe\xffC\x00\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff")
32
33 # Generate parameters lists for the tests below
34 encode_testdata = [
35 (mlw_codec.encode, weights, compressed_weights),
36 pytest.param(mlw_codec.encode, ["a"], empty_decoded, marks=pytest.mark.xfail), # cannot accept strings
37 ]
38
39 decode_testdata = [(mlw_codec.decode, compressed_weights, weights)]
40
41 codec_testdata = [
42 (weights, weights),
43 ([1] * 10, [1] * 10),
44 pytest.param(["a"], ["a"], marks=pytest.mark.xfail), # cannot accept strings
45 ]
46
47 @pytest.mark.parametrize("function_under_test,test_input,expected", encode_testdata)
48 def test_mlw_codec(self, function_under_test, test_input, expected):
49 self._call_mlw_codec_method(function_under_test, test_input, expected)
50
51 @pytest.mark.parametrize("function_under_test,test_input,expected", decode_testdata)
52 def test_mlw_decode(self, function_under_test, test_input, expected):
53 self._call_mlw_codec_method(function_under_test, test_input, expected)
54
55 @pytest.mark.parametrize("test_input,expected", codec_testdata)
56 def test_mlw_encode_decode(self, test_input, expected):
57 output = mlw_codec.decode(mlw_codec.encode(test_input))
58 assert output == expected
59
60 def _call_mlw_codec_method(self, method_name, test_input, expected):
61 output = method_name(test_input)
62 assert output == expected
Louis Verhaard60232142021-01-22 14:11:15 +010063
64 invalid_encode_test_data = [None, 3, [4, 5, None, 7], [0, 1, "two", 3], [1, 2, 256, 4], [2, 4, 8, -256]]
65
66 @pytest.mark.parametrize("input", invalid_encode_test_data)
67 def test_encode_invalid_input(self, input):
68 with pytest.raises(Exception):
69 mlw_codec.encode(input)
70
71 invalid_decode_test_data = [None, 3, []]
72
73 @pytest.mark.parametrize("input", invalid_decode_test_data)
74 def test_decode_invalid_input(self, input):
75 with pytest.raises(Exception):
76 mlw_codec.decode(input)