-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconvert_psa_export_key.rs
154 lines (125 loc) · 4.37 KB
/
convert_psa_export_key.rs
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
use super::generated_ops::psa_export_key::{Operation as OperationProto, Result as ResultProto};
use crate::operations::psa_export_key::{Operation, Result};
use crate::requests::ResponseStatus;
use secrecy::ExposeSecret;
use std::convert::TryFrom;
impl TryFrom<OperationProto> for Operation {
type Error = ResponseStatus;
fn try_from(proto_op: OperationProto) -> std::result::Result<Self, Self::Error> {
Ok(Operation {
key_name: proto_op.key_name,
})
}
}
impl TryFrom<Operation> for OperationProto {
type Error = ResponseStatus;
fn try_from(op: Operation) -> std::result::Result<Self, Self::Error> {
Ok(OperationProto {
key_name: op.key_name,
})
}
}
impl TryFrom<ResultProto> for Result {
type Error = ResponseStatus;
fn try_from(proto_op: ResultProto) -> std::result::Result<Self, Self::Error> {
Ok(Result {
data: secrecy::Secret::new(proto_op.data),
})
}
}
impl TryFrom<Result> for ResultProto {
type Error = ResponseStatus;
fn try_from(op: Result) -> std::result::Result<Self, Self::Error> {
Ok(ResultProto {
data: op.data.expose_secret().to_vec(),
})
}
}
#[cfg(test)]
mod test {
use super::super::generated_ops::psa_export_key::{
Operation as OperationProto, Result as ResultProto,
};
use super::super::{Convert, ProtobufConverter};
use crate::operations::{
psa_export_key::Operation, psa_export_key::Result, NativeOperation, NativeResult,
};
use crate::requests::{request::RequestBody, response::ResponseBody, Opcode};
use secrecy::{ExposeSecret, Secret};
use std::convert::TryInto;
static CONVERTER: ProtobufConverter = ProtobufConverter {};
#[test]
fn export_pk_proto_to_op() {
let mut proto: OperationProto = Default::default();
let key_name = "test name".to_string();
proto.key_name = key_name.clone();
let op: Operation = proto.try_into().expect("Failed to convert");
assert_eq!(op.key_name, key_name);
}
#[test]
fn asym_op_to_proto() {
let key_name = "test name".to_string();
let op = Operation {
key_name: key_name.clone(),
};
let proto: OperationProto = op.try_into().expect("Failed to convert");
assert_eq!(proto.key_name, key_name);
}
#[test]
fn asym_proto_to_resp() {
let mut proto: ResultProto = Default::default();
let key_data: Vec<u8> = vec![0x11, 0x22, 0x33];
proto.data = key_data.clone();
let result: Result = proto.try_into().expect("Failed to convert");
assert_eq!(result.data.expose_secret(), &key_data);
}
#[test]
fn asym_resp_to_proto() {
let key_data: Vec<u8> = vec![0x11, 0x22, 0x33];
let result = Result {
data: Secret::new(key_data.clone()),
};
let proto: ResultProto = result.try_into().expect("Failed to convert");
assert_eq!(proto.data, key_data);
}
#[test]
fn op_export_pk_e2e() {
let op = Operation {
key_name: "test name".to_string(),
};
let body = CONVERTER
.operation_to_body(NativeOperation::PsaExportKey(op))
.expect("Failed to convert request");
assert!(CONVERTER
.body_to_operation(body, Opcode::PsaExportKey)
.is_ok());
}
#[test]
fn resp_export_pk_e2e() {
let result = Result {
data: Secret::new(vec![0x11, 0x22, 0x33]),
};
let body = CONVERTER
.result_to_body(NativeResult::PsaExportKey(result))
.expect("Failed to convert request");
assert!(CONVERTER.body_to_result(body, Opcode::PsaExportKey).is_ok());
}
#[test]
fn result_from_mangled_resp_body() {
let resp_body =
ResponseBody::from_bytes(vec![0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88]);
assert!(CONVERTER
.body_to_result(resp_body, Opcode::PsaExportKey)
.is_err());
}
#[test]
fn op_from_mangled_req_body() {
let req_body =
RequestBody::from_bytes(vec![0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88]);
assert!(CONVERTER
.body_to_operation(req_body, Opcode::PsaExportKey)
.is_err());
}
}