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
#![warn(warnings)]
#![allow(clippy::needless_doctest_main, clippy::type_complexity)]

//! Credit Card is a library for adding credit cards
//! to any project.
//!
//! ```rust,no_run
//! use credit_card::CreditCard;
//!
//! let mut cc = CreditCard {
//!     number: "4111111111111111".to_string(),
//!     cardholder_name: "Graydon Hoare".to_string(),
//!     expiration_month: "01".to_string(),
//!     expiration_year: "2023".to_string(),
//!     brand: None,
//!     security_code: None
//! };
//! cc.apply_brand();
//! ```
//!
//! # Current Features
//! - Create CreditCards
//! - Add brand to credit cards from card number
//! - Validate credit card number
//!
//! # Future Features
//! - Validate CVV
//! - Validate Address
//! - ...
//! - Full card validation
//!
//! ### Notice:
//! This is under development right now, so interfaces
//! and apis will be changing.  If you are interested
//! in using this please create an issue or reach out
//! with your feature request so I can help add it.
//!
mod luhn;
mod validate;
mod credit_card;


// lazy static is used by `validate`
// `macro_use` is required to be at the module root
#[macro_use]
extern crate lazy_static;

// re-export CreditCard
pub use self::credit_card::CreditCard;

#[cfg(test)]
mod tests {
    use crate::CreditCard;

    #[test]
    fn create() {
        let cc = CreditCard {
            number: "4111111111111111".to_string(),
            cardholder_name: "Graydon Hoare".to_string(),
            expiration_month: "01".to_string(),
            expiration_year: "2023".to_string(),
            brand: None,
            security_code: None
        };
        assert_eq!(cc.number, "4111111111111111".to_string())
    }

    #[test]
    fn is_visa() {
        let mut cc = CreditCard {
            number: "4111111111111111".to_string(),
            cardholder_name: "Graydon Hoare".to_string(),
            expiration_month: "01".to_string(),
            expiration_year: "2023".to_string(),
            brand: None,
            security_code: None
        };
        cc.apply_brand();

        assert_eq!(cc.brand.unwrap_or_default(), "visa")
    }

}