aboutsummaryrefslogtreecommitdiff
path: root/src/util/tests.rs
blob: bd1ca98c8b3ba39c17035a9295fee1980167023b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////

use super::*;
use crate::{cbor::value::Value, util::expect_err};
use alloc::{borrow::ToOwned, boxed::Box, vec};

#[test]
fn test_cbor_type_error() {
    let cases = vec![
        (Value::Null, "nul"),
        (Value::Bool(true), "bool"),
        (Value::Bool(false), "bool"),
        (Value::from(128), "int"),
        (Value::from(-1), "int"),
        (Value::Bytes(vec![1, 2]), "bstr"),
        (Value::Text("string".to_owned()), "tstr"),
        (Value::Array(vec![Value::from(0)]), "array"),
        (Value::Map(vec![]), "map"),
        (Value::Tag(1, Box::new(Value::from(0))), "tag"),
        (Value::Float(1.054571817), "float"),
    ];
    for (val, want) in cases {
        let e = cbor_type_error::<()>(&val, "a");
        expect_err(e, want);
    }
}

#[test]
#[should_panic]
fn test_expect_err_but_ok() {
    let result: Result<i32, crate::CoseError> = Ok(42);
    expect_err(result, "absent text");
}

#[test]
#[should_panic]
fn test_expect_err_wrong_msg() {
    let err = cbor_type_error::<()>(&Value::Bool(true), "a");
    expect_err(err, "incorrect text");
}

#[test]
#[should_panic]
fn test_expect_err_wrong_display_msg() {
    // Error type where `Debug` shows the message but `Display` doesn't
    #[allow(dead_code)]
    #[derive(Debug)]
    struct Error(&'static str);
    impl core::fmt::Display for Error {
        fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
            write!(f, "other")
        }
    }

    let err: Result<i32, Error> = Err(Error("text"));
    // The expected text appears in the `Debug` output but not the `Display` output.
    expect_err(err, "text");
}