sync15/client_types.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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! This module has to be here because of some hard-to-avoid hacks done for the
//! tabs engine... See issue #2590
use crate::DeviceType;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Argument to Store::prepare_for_sync. See comment there for more info. Only
/// really intended to be used by tabs engine.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
pub struct ClientData {
pub local_client_id: String,
/// A hashmap of records in the `clients` collection. Key is the id of the record in
/// that collection, which may or may not be the device's fxa_device_id.
pub recent_clients: HashMap<String, RemoteClient>,
}
/// Information about a remote client in the clients collection.
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct RemoteClient {
pub fxa_device_id: Option<String>,
pub device_name: String,
#[serde(default)]
pub device_type: DeviceType,
}
#[cfg(test)]
mod client_types_tests {
use super::*;
#[test]
fn test_remote_client() {
// Missing `device_type` gets DeviceType::Unknown.
let dt = serde_json::from_str::<RemoteClient>("{\"device_name\": \"foo\"}").unwrap();
assert_eq!(dt.device_type, DeviceType::Unknown);
// But reserializes as null.
assert_eq!(
serde_json::to_string(&dt).unwrap(),
"{\"fxa_device_id\":null,\"device_name\":\"foo\",\"device_type\":null}"
);
// explicit null is also unknown.
assert_eq!(
serde_json::from_str::<RemoteClient>(
"{\"device_name\": \"foo\", \"device_type\": null}",
)
.unwrap()
.device_type,
DeviceType::Unknown
);
// Unknown device_type string deserializes as DeviceType::Unknown.
let dt = serde_json::from_str::<RemoteClient>(
"{\"device_name\": \"foo\", \"device_type\": \"foo\"}",
)
.unwrap();
assert_eq!(dt.device_type, DeviceType::Unknown);
// The None gets re-serialized as null.
assert_eq!(
serde_json::to_string(&dt).unwrap(),
"{\"fxa_device_id\":null,\"device_name\":\"foo\",\"device_type\":null}"
);
// DeviceType::Unknown gets serialized as null.
let dt = RemoteClient {
device_name: "bar".to_string(),
fxa_device_id: None,
device_type: DeviceType::Unknown,
};
assert_eq!(
serde_json::to_string(&dt).unwrap(),
"{\"fxa_device_id\":null,\"device_name\":\"bar\",\"device_type\":null}"
);
// DeviceType::Desktop gets serialized as "desktop".
let dt = RemoteClient {
device_name: "bar".to_string(),
fxa_device_id: Some("fxa".to_string()),
device_type: DeviceType::Desktop,
};
assert_eq!(
serde_json::to_string(&dt).unwrap(),
"{\"fxa_device_id\":\"fxa\",\"device_name\":\"bar\",\"device_type\":\"desktop\"}"
);
}
#[test]
fn test_client_data() {
let client_data = ClientData {
local_client_id: "my-device".to_string(),
recent_clients: HashMap::from([
(
"my-device".to_string(),
RemoteClient {
fxa_device_id: None,
device_name: "my device".to_string(),
device_type: DeviceType::Unknown,
},
),
(
"device-no-tabs".to_string(),
RemoteClient {
fxa_device_id: None,
device_name: "device with no tabs".to_string(),
device_type: DeviceType::Unknown,
},
),
(
"device-with-a-tab".to_string(),
RemoteClient {
fxa_device_id: None,
device_name: "device with a tab".to_string(),
device_type: DeviceType::Desktop,
},
),
]),
};
//serialize
let client_data_ser = serde_json::to_string(&client_data).unwrap();
println!("SER: {}", client_data_ser);
// deserialize
let client_data_des: ClientData = serde_json::from_str(&client_data_ser).unwrap();
assert_eq!(client_data_des, client_data);
}
}