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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676

//! This is a Rust binding to FlickrAPI.
//!
//! # Example
//!
//! ```should_panic
//! # extern crate flickr;
//! use flickr::{FlickrAPI};
//! 
//! # 
//! # fn main() -> Result<(), flickr::FlickrError> {
//! let mut flickr = FlickrAPI::new(
//!                   "MY-FLICKR-API-KEY", 
//!                   "MY-FLICKR-API-SECRET");
//! 
//! let res = flickr.favorites()
//!                 .get_list()
//!                 .perform()?;
//! 
//! println!("{:#?}", res.photos.unwrap());
//! #     Ok(())
//! # }
//! ```
//! The returned struct tree is mapped from JSON tree returned by Flickr REST API.
//!

#![allow(unused_assignments)]

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;

#[macro_use] 
extern crate log;
extern crate env_logger;
extern crate crypto;
extern crate base64;
extern crate url;
extern crate chrono;
extern crate rand;
extern crate curl;
extern crate webbrowser;
extern crate tiny_http;
extern crate hostname;

extern crate flickr_derive;

pub mod methods;

use std::collections::{BTreeMap, BTreeSet, HashMap};
use std::iter::{FromIterator};
use rand::rngs::{OsRng};
use rand::{RngCore};
use std::str;
use std::fmt;
use std::error::{Error};
use std::io;

use crypto::hmac::{Hmac};
use crypto::mac::{Mac};
use crypto::sha1::{Sha1};
use crypto::digest::{Digest};
use url::{Url, form_urlencoded};
use chrono::prelude::{Utc};
use curl::easy::Easy;
use tiny_http::{Server, Response};
use hostname::{get_hostname};

static OAUTH_REQUEST_TOKEN_URL: &'static str = 
        "https://www.flickr.com/services/oauth/request_token";

static OAUTH_AUTHORIZATION_URL: &'static str = 
        "https://www.flickr.com/services/oauth/authorize";

static OAUTH_ACCESS_TOKEN_URL: &'static str = 
        "https://www.flickr.com/services/oauth/access_token";

static OAUTH_CALLBACK_URL_WITHOUT_PORT: &'static str =
        "http://localhost";

static SERVICE_URL: &'static str = 
        "https://www.flickr.com/services/rest";

// ---- FlickrAPI ---------------------------------------------------------------------------------

/// Takes care of authentication and provides access to Flickr API methods.
/// The struct can be serialized/deserialized to preserve the auth state
/// between application runs. If the struct is cloned both the old and new 
/// instances can be used in parallel.
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct FlickrAPI {
    #[serde(default, skip_serializing, skip_deserializing)]
    nonce_suffix: u128,

    #[serde(default)]
    flickr_api_key: String,

    #[serde(default)]
    flickr_api_secret: String,

    #[serde(default)]
    oauth_token: String,

    #[serde(default)]
    token_secret: String,

    #[serde(default, skip_serializing_if = "Option::is_none")]
    user_nsid: Option<String>,

    #[serde(default, skip_serializing, skip_deserializing)]
    test_response: Option<String>,
}

impl FlickrAPI {
    /// Constructor with Flickr API key and Flickr API secret created on Flickr service..
    pub fn new(flickr_api_key: &str, flickr_api_secret: &str) -> FlickrAPI {
        FlickrAPI {
            nonce_suffix: 0u128,
            flickr_api_key: flickr_api_key.into(),
            flickr_api_secret: flickr_api_secret.into(),
            oauth_token: String::new(),
            token_secret: String::new(),
            user_nsid: Option::None,
            test_response: Option::None,
        }
    }

    /// True if authentication is needed, false if not.
    fn is_authenticated(&self) -> bool {
        self.oauth_token != "" && self.token_secret != "" && self.nonce_suffix > 0
    }

    /// Authenticate and authorize with Flickr API key and secret when needed.
    fn do_auth(&mut self) -> Result<(), FlickrError> {
        // From serde point of view this is a better place to set nonce.
        if self.nonce_suffix == 0 {
            self.nonce_suffix = (Utc::now().timestamp() as u128) << 64;
        }
        
        // If we are running a test, this method becomes dummy.
        if self.test_response.is_some() {
            self.oauth_token = "something".into();
            self.token_secret = "something".into();
            return Ok(());
        }

        // Check whether the existing token is still valid or not
        match self.auth().oauth().check_token().perform() {
            Ok(result) => {
                if result.stat == "ok" {
                    if let Some(o) = result.oauth {
                        self.user_nsid = Some(o.user.nsid);
                        return Ok(());
                    }
                } else {
                    warn!("Check token resulted status: {}", result.stat);
                }
            },
            Err(e) => {
                debug!("Failed to check token: {}", e);
            }
        }
        self.oauth_token = String::new();
        self.token_secret = String::new();

        // Start a local server for handling callbacks from OAUTH step 2
        let port = 19753;
        let addr = format!("{}:{}", "127.0.0.1", port);
        let server = Server::http(&addr).unwrap();
        debug!("Bound http server for OAUTH callback at http://{}", addr);
        // TODO: timeout

        //
        // 1. Get a Request token
        //
        debug!("OAUTH step 1: Get a Request token");
        {
            let signed_url = make_signed_url(OAUTH_REQUEST_TOKEN_URL, [
                    ("oauth_nonce", self.next_nonce()),
                    ("oauth_timestamp", Utc::now().timestamp().to_string()),
                    ("oauth_consumer_key", self.flickr_api_key.clone()),
                    ("oauth_version", String::from("1.0")),
                    ("oauth_callback", format!("{}:{}", OAUTH_CALLBACK_URL_WITHOUT_PORT, port)),
                    ("oauth_signature_method", String::from("HMAC-SHA1")),
                ].iter().cloned().collect(),
                &self.flickr_api_secret, &self.token_secret);
                
            match rest_call(signed_url) {
                Ok((content, content_type, _content_encoding)) => {
                    // Parse response body
                    let mut result = HashMap::new();
                    if content_type == "text/plain" {
                        result = parse_hashmap(&content);
                    } else {
                        return Err(FlickrError::OauthFailed(format!("Unexpected content type: {}", content_type)));
                    }
                    
                    // Examine response params
                    if let Some(value) = result.get("oauth_callback_confirmed") {
                        if value == "true" {
                            self.oauth_token = result.get("oauth_token").unwrap_or(&String::new()).to_string();
                            self.token_secret = result.get("oauth_token_secret").unwrap().to_string();
                            debug!("OAUTH token: {}", self.oauth_token);
                            debug!("OAUTH token secret: {}", self.token_secret);
                        } else {
                            return Err(FlickrError::OauthFailed(format!("Unexpected oauth_callback_confirmed value: {}", value)));
                        }
                    } else if let Some(problem) = result.get("oauth_problem") {
                        return Err(FlickrError::OauthFailed(problem.to_string()));
                    } else {
                    }
                },
                Err(e) => { return Err(e); }
            }
        }

        //        
        // 2. Direct user to Flickr for Authorization
        //
        debug!("OAUTH step 2: Direct user to Flickr for Authorization");
        let mut oauth_verifier = Option::None;
        {
            let signed_url = make_signed_url(OAUTH_AUTHORIZATION_URL, [
                    ("oauth_token", self.oauth_token.clone()),
                    ("perms", "delete".into()), // options: read/write/delete
                ].iter().cloned().collect(),
                &self.flickr_api_secret, &self.token_secret);

            // Open authorization url in web browser
            if webbrowser::open(&signed_url).is_ok() {
                debug!("Web browser launched with url {}", signed_url);

                // Receive OAUTH callback request
                let mut keep_serving = true;
                for mut request in server.incoming_requests() {
                    match Url::parse(&format!("http://localhost:{}/{}", port, request.url())) {                    
                        Ok(url) => {
                            for (key, value) in url.query_pairs() {
                                if key == "oauth_verifier" {
                                    oauth_verifier = Some(value.into());
                                    debug!("Got OAUTH verifier: {}", oauth_verifier.clone().unwrap_or("???".into()));
                                    keep_serving = false;
                                }
                            }
                        },
                        Err(e) => {
                            warn!("Url parse failed: {}", e);
                        }
                    }

                    let response = Response::from_string("You can close this page"); // TODO: more beautiful message
                    request.respond(response).unwrap_or(());
                    
                    if !keep_serving { break; }
                }                
            }
        }
        
        //
        // 3. Exchange the Request Token for an Access Token
        //
        debug!("OAUTH step 3: Exchange the Request Token for an Access Token");
        if let Some(ov) = oauth_verifier {
            let signed_url = make_signed_url(OAUTH_ACCESS_TOKEN_URL, [
                    ("oauth_nonce", self.next_nonce()),
                    ("oauth_timestamp", Utc::now().timestamp().to_string()),
                    ("oauth_verifier", ov),
                    ("oauth_consumer_key", self.flickr_api_key.clone()),
                    ("oauth_version", String::from("1.0")),
                    ("oauth_token", self.oauth_token.clone()),
                    ("oauth_signature_method", String::from("HMAC-SHA1")),
                ].iter().cloned().collect(),
                &self.flickr_api_secret, &self.token_secret);
                
            match rest_call(signed_url) {
                Ok((content, content_type, _content_encoding)) => {
                    // Parse response body
                    let mut result = HashMap::new();
                    if content_type == "text/plain" {
                        result = parse_hashmap(&content);
                        
                        // Handle user_nsid
                        if let Some(user_nsid) = result.get("user_nsid") {
                            self.user_nsid = Some(user_nsid.clone());
                        } else {
                            return Err(FlickrError::OauthFailed("Parameter user_nsid not received".into()));
                        }

                        // Handle oauth_token
                        if let Some(oauth_token) = result.get("oauth_token") {
                            self.oauth_token = oauth_token.clone();
                            debug!("OAUTH token: {}", self.oauth_token);
                        } else {
                            return Err(FlickrError::OauthFailed("Parameter oauth_token not received".into()));
                        }

                        // Handle oauth_token_secret
                        if let Some(oauth_token_secret) = result.get("oauth_token_secret") {
                            self.token_secret = oauth_token_secret.clone();
                            debug!("token secret: {}", self.token_secret);
                        } else {
                            return Err(FlickrError::OauthFailed("Parameter oauth_token_secret not received".into()));
                        }
                    } else {
                        return Err(FlickrError::OauthFailed(format!("Unexpected content type: {}", content_type)));
                    }
                },
                Err(e) => { return Err(e); }
            }
        } else {
            return Err(FlickrError::OauthFailed("Parameter oauth_verifier not received".into()));
        }

        info!("Flickr authentication completed successfully for {}", 
                self.user_nsid.clone().unwrap_or("".into()));
        return Ok(());
    }

    /// Make Flickr API call and return JSON.
    fn call_method(&mut self, method: &str, params: BTreeMap<&str, String>) -> Result<String, FlickrError> {
        // Merge method parameters
        let mut params0: BTreeMap<&str, String> = [
                ("method", method.into()),
                ("format", "json".into()),
                ("nojsoncallback", "1".into()),
                ("api_key", self.flickr_api_key.to_string()),
                ("oauth_nonce", self.next_nonce()),
                ("oauth_timestamp", Utc::now().timestamp().to_string()),
                ("oauth_consumer_key", self.flickr_api_key.clone()),
                ("oauth_version", String::from("1.0")),
                ("oauth_token", self.oauth_token.clone()),
                ("oauth_signature_method", String::from("HMAC-SHA1")),
            ].iter().cloned().collect();
        params0.extend(params);

        // Sign the method url    
        let signed_url = make_signed_url(SERVICE_URL, params0,
            &self.flickr_api_secret, &self.token_secret);
        debug!("REST CALL: {}", signed_url);
        
        // Call the method
        if let Some(ref content) = self.test_response {
            // Special behavior for unit tests
            return Ok(content.clone());
        } else {
            // The real call
            match rest_call(signed_url) {
                Ok((content, content_type, content_encoding)) => {
                    let ce = content_encoding.to_lowercase();
                    if ce != "" && ce != "charset=UTF-8" {
                        return Err(FlickrError::RestCallFailed(
                            format!("Unexpected content encoding: {}", content_encoding)));
                    }
                    if content_type == "application/json" {
                        return Ok(content);
                    } else if content_type == "text/plain" {
                        debug!("content: {}", content);
                        let h = parse_hashmap(&content.replace("&", "\n"));
                        let j = format!("{{ \"stat\": \"{}\" }}", 
                            h.get("oauth_problem").unwrap_or(&String::new()));
                        return Ok(j);
                    } else {
                        return Err(FlickrError::RestCallFailed(
                            format!("Unexpected content type: {}", content_type)));
                    }                
                },
                Err(e) => {
                    Err(e)
                }
            }
        }
    }

    /// Creates a builder for flickr.activity.* modules.
    pub fn activity(&mut self) -> methods::activity::Builder {
        return methods::activity::Builder::new(self);
    }

    /// Creates a builder for flickr.auth.* modules.
    fn auth(&mut self) -> methods::auth::Builder {
        return methods::auth::Builder::new(self);
    }

    /// Creates a builder for flickr.favorites.* modules.
    pub fn favorites(&mut self) -> methods::favorites::Builder {
        return methods::favorites::Builder::new(self);
    }

    /// Creates a builder for flickr.photos.* modules.
    pub fn photos(&mut self) -> methods::photos::Builder {
        return methods::photos::Builder::new(self);
    }

    /// Return next nonce as string for OAUTH
    fn next_nonce(&mut self) -> String {
        // Create a string which is likely unique within machine and cluster contexts
        let mut hasher = Sha1::new();
        let hostname = get_hostname().unwrap_or("localhost".into());
        hasher.input_str(&format!("{}.{:p}", hostname, self));
        let quite_unique_thing = hasher.result_str();
        
        self.nonce_suffix += 1;
        return format!("{}.{}", quite_unique_thing, self.nonce_suffix.to_string());
    }

}

// Make a HMAC-SHA1 signed url with oauth_signature parameter.
fn make_signed_url(base_url: &str, params: BTreeMap<&str, String>, consumer_secret: &str, token_secret: &str) -> String {
    // http://www.wackylabs.net/2011/12/oauth-and-flickr-part-2/

    // Create url as string
    let mut url_params = String::new();    
    for key in BTreeSet::from_iter(params.keys()) {
        if url_params.len() > 0 {
            url_params.push_str("&");
        }
        url_params.push_str(key);
        url_params.push_str("=");
        url_params.push_str(&url_encode(params.get(key).unwrap()));
    }

    // Convert url to digest
    let url = format!("{}?{}", base_url, url_params);
    let signature_base_string = 
        format!("{}&{}&{}", "GET", url_encode(base_url), url_encode(&url_params));
    let raw_key = &format!("{}&{}", &consumer_secret, &token_secret);
    let key = base64::encode(&raw_key);
    let digest = hmac_sha1_digest(&signature_base_string, Some(&key));
    let url_final = format!("{}&oauth_signature={}", url, url_encode(&digest));
    
    return url_final;
}

// URL encode the given string.
fn url_encode(s: &str) -> String {
    // TODO: more elegant way
    // TODO: should this be oauth encode instead of url encode?
    String::from(&form_urlencoded::Serializer::new(String::new()).append_pair("", s).finish()[1..])
}

// Make HMAC-SHA1 digest from text
fn hmac_sha1_digest(text: &String, hmac_key_base64: Option<&str>) -> String {
    // Either generate a new key or use the given one
    let mut hmac_key = vec![0u8; 32];
    if let Some(ref hmac_key_base64) = hmac_key_base64 {
        hmac_key = base64::decode(hmac_key_base64).expect("Failed to parse base64 encoded HMAC key");
    } else {
        let mut gen = OsRng::new().ok().expect("Failed to get OS random generator");
        gen.fill_bytes(hmac_key.as_mut_slice());
    }
    
    // Generate digest
    let mut hmac = Hmac::new(Sha1::new(), hmac_key.as_slice());
    hmac.input(text.as_bytes());
    let res = base64::encode(hmac.result().code());
    return res;
}

// Make a REST call with the given url. Returns (body, content_type, content_encoding)
// in case of success.
fn rest_call(url: String) -> Result<(String, String, String), FlickrError> {
    // Do the call with curl crate
    let mut dest = Vec::new();
    let mut content_type = String::from("text/plain");
    let mut content_encoding = String::from("");
    {
        let mut easy = Easy::new();
        if let Err(e) = easy.url(&url) {
            return Err(FlickrError::RestCallFailed(e.to_string()));
        }
        {
            let mut transfer = easy.transfer();
            transfer.header_function(|header| { 
                if let Ok((header, value)) = parse_key_value(str::from_utf8(header).unwrap(), ":", true) {
                    if header.to_lowercase() == "content-type" {
                        if let Ok((ct, enc)) = parse_key_value(&value, ";", true) {
                            content_type = ct;
                            content_encoding = enc;
                        } else {
                            content_type = value;
                            content_encoding = String::from("");
                        }
                    }
                }
                true
            })?;
            
            transfer.write_function(|data| {
                dest.extend_from_slice(data);
                Ok(data.len())
            })?;
            
            transfer.perform()?;
        }
        
        if let Ok(code) = easy.response_code() {
            debug!("HTTP response code = {}", code);
            if code >= 400 {
                return Err(FlickrError::RestCallFailed(
                    format!("REST API responded with status code {}", code)));
            }
        }
    }
    let body = String::from_utf8(dest.clone()).unwrap();
    debug!("{}", body);
    
    return Ok((body, content_type, content_encoding));
}

// Convert document containing key/value pairs into a hashmap.
fn parse_hashmap(doc: &str) -> HashMap<String, String> {
    let mut result = HashMap::new();
    for line in doc.split("\n") {
        for field in line.split("&") {
            if let Ok((key, value)) = parse_key_value(field, "=", true) {
                result.insert(key, value);
            }
        }
    }
    return result;
}

// Parse key/value pair.
fn parse_key_value(pair: &str, sep: &str, trim: bool) -> Result<(String, String), &'static str> {
    if let Some(_) = pair.find(sep) {
        let trimmed: String = {
            if trim {
                pair.replace("\n", "").replace("\r", "")
            } else {
                String::from(pair)
            }
        };
        let key_value: Vec<&str> = trimmed.split(sep).collect();
        if trim {
            return Ok( (String::from(key_value[0].trim()), String::from(key_value[1].trim())) );
        } else {
            return Ok( (String::from(key_value[0]), String::from(key_value[1])) );
        }
    } else {
        return Err("No separator found to parse a key pair");
    }
}

// ---- FlickrError -------------------------------------------------------------------------------

/// Struct for FlickrAPI related errors.
#[derive(Debug)]
pub enum FlickrError {
    /// Low-level I/O related error.
    Io{source: Box<io::Error>},
    /// Error in authentication.
    OauthFailed(String),
    /// Error in REST request or response.
    RestCallFailed(String),
}

impl From<std::io::Error> for FlickrError {
    fn from(err: std::io::Error) -> FlickrError {
        FlickrError::Io { source: Box::new(err) }
    }
}

impl From<curl::Error> for FlickrError {
    fn from(err: curl::Error) -> FlickrError {
        FlickrError::RestCallFailed(format!("REST call failed: {}", err))
    }
}

impl From<serde_json::Error> for FlickrError {
    fn from(err: serde_json::Error) -> FlickrError {
        FlickrError::RestCallFailed(format!("Deserialization error: {}", err))
    }
}

// This is important for other errors to wrap this one.
impl Error for FlickrError {
    fn description(& self) -> &str {
        match self {
            FlickrError::Io{source} => source.description(),
            FlickrError::OauthFailed(msg) => msg,
            FlickrError::RestCallFailed(msg) => msg,
        }
    }

    fn cause(&self) -> Option<&Error> {
        match self {
            FlickrError::Io{source} => Some(source),
            FlickrError::OauthFailed(_msg) => Option::None,
            FlickrError::RestCallFailed(_msg) => Option::None,
        }
    }
}

impl fmt::Display for FlickrError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            FlickrError::Io{source} 
                => write!(f, "I/O Error: {}", source.description()),
            FlickrError::OauthFailed(msg) 
                => write!(f, "OAUTH error: {}", msg),
            FlickrError::RestCallFailed(msg) 
                => write!(f, "REST call failed: {}", msg),
        }
    }
}

// ---- tests -------------------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;

    // Test HMA-SHA1 digest generation
    #[test]
    fn test_hma_sha1_digest_generation() {
        let resulting_digest = hmac_sha1_digest(&String::from(
            "The quick brown fox jumps over the lazy dog."), 
            Some("5+VD/kuzKaVotvJCeX1NNP/I4+mJNcqRoz6dSXx0fCM="));
            
        // https://gist.github.com/heskyji/5167567b64cb92a910a3 ; key = base64.b64decode(key)
        let expected_digest = "01fDvSHJYOhRjoxKzPWWWD0Ej1Y=";

        assert_eq!(resulting_digest, expected_digest);
    }

    // Test key/value pair parsing
    #[test]
    fn test_parse_key_value() {
        // Test parse failure
        if let Ok((_, _)) = parse_key_value("aa bb", ":", false) {
            assert!(false);
        } else {
            assert!(true);
        }

        // Test successful parse without trimming
        if let Ok((key, value)) = parse_key_value("aa:    bb ", ":", false) {
            assert_eq!(key, "aa");
            assert_eq!(value, "    bb ");
        } else {
            assert!(false);
        }

        // Test successful parse with trimming
        if let Ok((key, value)) = parse_key_value("aa:    bb ", ":", true) {
            assert_eq!(key, "aa");
            assert_eq!(value, "bb");
        } else {
            assert!(false);
        }
    }

    /// Test FlickrAPI struct serialization and deserialization
    #[test]
    fn test_flickrapi_serde() {
        // Serialize
        let flickr1 = FlickrAPI::new("aaaa", "bbbb");
        let j = serde_json::to_string(&flickr1).unwrap();
        
        // Debug
        println!("flickr1: {:?}", flickr1);
        println!("j: {}", j);
        
        // Deserialize
        let flickr2: FlickrAPI = serde_json::from_str(&j).unwrap();
        
        // Tests
        assert_eq!(flickr1.flickr_api_key, flickr2.flickr_api_key);
        assert_eq!(flickr1.flickr_api_secret, flickr2.flickr_api_secret);
        assert_eq!(format!("{:?}", flickr1), format!("{:?}", flickr2));
    }

}