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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#[cfg(target_arch = "wasm32")]
use crate::types::block_identifier::BlockIdentifier;
#[cfg(target_arch = "wasm32")]
use crate::{rpcs::query_global_state::QueryGlobalStateResult, types::path::Path};
use crate::{
    rpcs::query_global_state::{KeyIdentifierInput, PathIdentifierInput, QueryGlobalStateParams},
    types::{
        block_identifier::BlockIdentifierInput, entity_identifier::EntityIdentifier,
        sdk_error::SdkError, verbosity::Verbosity,
    },
    SDK,
};
use casper_client::{
    rpcs::results::QueryGlobalStateResult as _QueryGlobalStateResult, SuccessResponse,
};
#[cfg(target_arch = "wasm32")]
use gloo_utils::format::JsValueSerdeExt;
#[cfg(target_arch = "wasm32")]
use serde::{Deserialize, Serialize};
#[cfg(target_arch = "wasm32")]
use wasm_bindgen::prelude::*;

#[derive(Deserialize, Default, Serialize)]
#[cfg(target_arch = "wasm32")]
#[wasm_bindgen(js_name = "queryContractKeyOptions", getter_with_clone)]
pub struct QueryContractKeyOptions {
    pub entity_identifier: Option<EntityIdentifier>,
    pub entity_identifier_as_string: Option<String>,
    pub maybe_block_identifier: Option<BlockIdentifier>,
    pub maybe_block_id_as_string: Option<String>,
    pub path_as_string: Option<String>,
    pub path: Option<Path>,
    pub rpc_address: Option<String>,
    pub verbosity: Option<Verbosity>,
}

#[cfg(target_arch = "wasm32")]
#[wasm_bindgen]
impl SDK {
    /// Deserialize query_contract_key_options from a JavaScript object.
    #[wasm_bindgen(js_name = "query_contract_key_options")]
    pub fn query_contract_key_state_options(
        &self,
        options: JsValue,
    ) -> Result<QueryContractKeyOptions, JsError> {
        options
            .into_serde::<QueryContractKeyOptions>()
            .map_err(|err| JsError::new(&format!("Error deserializing options: {:?}", err)))
    }

    /// JavaScript function for query_contract_key with deserialized options.
    #[wasm_bindgen(js_name = "query_contract_key")]
    pub async fn query_contract_key_js_alias(
        &self,
        options: Option<QueryContractKeyOptions>,
    ) -> Result<QueryGlobalStateResult, JsError> {
        let options = options.unwrap_or_default();

        // Ensure valid conversion of `path` from `QueryContractKeyOptions`
        let path_input = match (options.path, options.path_as_string) {
            (Some(path), None) => PathIdentifierInput::Path(path),
            (None, Some(path_string)) => PathIdentifierInput::String(path_string),
            (Some(_), Some(_)) => {
                let err = "Only one of `path` or `path_as_string` can be provided".to_string();
                return Err(JsError::new(&err));
            }
            (None, None) => {
                let err = "Either `path` or `path_as_string` must be provided".to_string();
                return Err(JsError::new(&err));
            }
        };

        let maybe_block_identifier =
            if let Some(maybe_block_identifier) = options.maybe_block_identifier {
                Some(BlockIdentifierInput::BlockIdentifier(
                    maybe_block_identifier,
                ))
            } else {
                options
                    .maybe_block_id_as_string
                    .map(BlockIdentifierInput::String)
            };

        let result = self
            .query_contract_key(
                options.entity_identifier,
                options.entity_identifier_as_string,
                path_input,
                maybe_block_identifier,
                options.verbosity,
                options.rpc_address,
            )
            .await;
        match result {
            Ok(data) => Ok(data.result.into()),
            Err(err) => {
                let err = &format!("Error occurred with {:?}", err);
                Err(JsError::new(err))
            }
        }
    }
}

/// Alias of sdk.query_global_state
impl SDK {
    /// Query a contract key.
    ///
    /// # Arguments
    ///
    /// * `query_params` - Query global state parameters.
    ///
    /// # Returns
    ///
    /// A `Result` containing either a `SuccessResponse<_GetAddressableEntityResult>` or a `SdkError` in case of an error.
    pub async fn query_contract_key(
        &self,
        entity_identifier: Option<EntityIdentifier>,
        entity_identifier_as_string: Option<String>,
        path: PathIdentifierInput,
        maybe_block_identifier: Option<BlockIdentifierInput>,
        verbosity: Option<Verbosity>,
        rpc_address: Option<String>,
    ) -> Result<SuccessResponse<_QueryGlobalStateResult>, SdkError> {
        let path_string = match path {
            PathIdentifierInput::Path(ref path_struct) => {
                if path_struct.is_empty() {
                    return Err(SdkError::InvalidArgument {
                        context: "Path",
                        error: "Path is empty".to_string(),
                    });
                }
                path_struct.to_string()
            }
            PathIdentifierInput::String(ref path_string) => {
                if path_string.is_empty() {
                    return Err(SdkError::InvalidArgument {
                        context: "Path string",
                        error: "Path string is empty".to_string(),
                    });
                }
                path_string.clone()
            }
        };

        //log("query_contract_key!");
        let entity = self
            .get_entity(
                entity_identifier,
                entity_identifier_as_string,
                maybe_block_identifier,
                verbosity,
                rpc_address.clone(),
            )
            .await
            .map_err(SdkError::from);

        let addressable_entity = entity
            .as_ref()
            .map_err(|err| SdkError::InvalidArgument {
                context: "Addressable entity",
                error: format!("Failed to get entity: {}", err),
            })?
            .result
            .entity_result
            .addressable_entity()
            .ok_or_else(|| SdkError::InvalidArgument {
                context: "Addressable entity",
                error: "Addressable entity is missing".to_string(),
            })?;

        let named_key = *addressable_entity
            .named_keys
            .get(&path_string)
            .ok_or_else(|| SdkError::InvalidArgument {
                context: "Named key",
                error: format!("No key found for path string '{}'", path_string),
            })?;

        let key = KeyIdentifierInput::Key(named_key.into());

        self.query_global_state(QueryGlobalStateParams {
            key,
            path: None,
            maybe_global_state_identifier: None,
            state_root_hash: None,
            maybe_block_id: None,
            verbosity,
            rpc_address,
        })
        .await
        .map_err(SdkError::from)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{
        install_cep78,
        types::{
            block_identifier::BlockIdentifier, entity_identifier::EntityIdentifier,
            verbosity::Verbosity,
        },
    };
    use sdk_tests::tests::helpers::{get_block, get_network_constants};
    use tokio;

    async fn get_entity_input() -> EntityIdentifier {
        EntityIdentifier::from_formatted_str(&install_cep78().await).unwrap()
    }

    #[tokio::test]
    async fn test_query_contract_key_with_none_values() {
        // Arrange
        let sdk = SDK::new(None, None);
        let error_message = "builder error";

        let path = PathIdentifierInput::String("installer".to_string());

        // Act
        let result = sdk
            .query_contract_key(Some(get_entity_input().await), None, path, None, None, None)
            .await;

        // Assert
        assert!(result.is_err());
        let err_string = result.err().unwrap().to_string();
        assert!(err_string.contains(error_message));
    }

    #[tokio::test]
    async fn test_query_contract_key_with_missing_key() {
        // Arrange
        let sdk = SDK::new(None, None);
        let error_message = "Invalid argument 'get_entity': Error: Missing entity identifier";

        let path = PathIdentifierInput::String("installer".to_string());

        // Act
        let result = sdk
            .query_contract_key(None, None, path, None, None, None)
            .await;

        // Assert
        assert!(result.is_err());
        let err_string = result.err().unwrap().to_string();
        assert!(err_string.contains(error_message));
    }

    #[tokio::test]
    async fn test_query_contract_key_with_entity_identifier_as_string() {
        // Arrange
        let sdk = SDK::new(None, None);
        let verbosity = Some(Verbosity::High);
        let (rpc_address, _, _, _) = get_network_constants();

        let entity = get_entity_input().await;

        let path = PathIdentifierInput::String("installer".to_string());

        let (_, block_height) = get_block(&rpc_address.clone()).await;
        let block_identifier =
            BlockIdentifierInput::BlockIdentifier(BlockIdentifier::from_height(block_height));

        // Act
        let result = sdk
            .query_contract_key(
                Some(entity),
                None,
                path,
                Some(block_identifier),
                verbosity,
                Some(rpc_address),
            )
            .await;

        // Assert
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_query_contract_key_with_global_state_identifier() {
        // Arrange
        let sdk = SDK::new(None, None);
        let verbosity = Some(Verbosity::High);
        let (rpc_address, _, _, _) = get_network_constants();

        let entity = get_entity_input().await;

        let path = PathIdentifierInput::String("installer".to_string());

        let (_, block_height) = get_block(&rpc_address.clone()).await;
        let block_identifier =
            BlockIdentifierInput::BlockIdentifier(BlockIdentifier::from_height(block_height));
        // Act
        let result = sdk
            .query_contract_key(
                None,
                Some(entity.to_string()),
                path,
                Some(block_identifier),
                verbosity,
                Some(rpc_address),
            )
            .await;

        // Assert
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_query_contract_key_with_missing_path() {
        // Arrange
        let sdk = SDK::new(None, None);
        let verbosity = Some(Verbosity::High);
        let (rpc_address, _, _, _) = get_network_constants();

        let entity = get_entity_input().await;
        let error_message = "Invalid argument 'Path': Path is empty";

        let vec_of_strings = vec!["".to_string()]; // empty path should error
        let path = PathIdentifierInput::Path(vec_of_strings.into());

        // Act
        let result = sdk
            .query_contract_key(Some(entity), None, path, None, verbosity, Some(rpc_address))
            .await;

        // Assert
        assert!(result.is_err());
        let err_string = result.err().unwrap().to_string();
        assert!(err_string.contains(error_message));
    }

    #[tokio::test]
    async fn test_query_contract_key_with_missing_path_as_string() {
        // Arrange
        let sdk = SDK::new(None, None);
        let verbosity = Some(Verbosity::High);
        let (rpc_address, _, _, _) = get_network_constants();

        let entity = get_entity_input().await;
        let error_message = "Invalid argument 'Path string': Path string is empty";

        let path = PathIdentifierInput::String("".to_string()); // empty path should error

        // Act
        let result = sdk
            .query_contract_key(Some(entity), None, path, None, verbosity, Some(rpc_address))
            .await;

        // Assert
        assert!(result.is_err());
        let err_string = result.err().unwrap().to_string();
        assert!(err_string.contains(error_message));
    }

    #[tokio::test]
    async fn test_query_contract_key_with_path_as_string() {
        // Arrange
        let sdk = SDK::new(None, None);
        let verbosity = Some(Verbosity::High);
        let (rpc_address, _, _, _) = get_network_constants();

        let entity = get_entity_input().await;

        let vec_of_strings = vec!["installer".to_string()];
        let path = PathIdentifierInput::Path(vec_of_strings.into());

        // Act
        let result = sdk
            .query_contract_key(Some(entity), None, path, None, verbosity, Some(rpc_address))
            .await;

        // Assert
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_query_contract_key_with_error() {
        let sdk = SDK::new(Some("http://localhost".to_string()), None);

        let error_message = "error sending request for url (http://localhost/rpc)";
        let entity = get_entity_input().await;

        let path = PathIdentifierInput::String("installer".to_string());

        // Act
        let result = sdk
            .query_contract_key(Some(entity), None, path, None, None, None)
            .await;
        // Assert
        assert!(result.is_err());
        let err_string = result.err().unwrap().to_string();
        assert!(err_string.contains(error_message));
    }
}