diff options
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/pro.rs | 34 | 
1 files changed, 32 insertions, 2 deletions
| diff --git a/src/tests/pro.rs b/src/tests/pro.rs index 8394e47..a508801 100644 --- a/src/tests/pro.rs +++ b/src/tests/pro.rs @@ -117,8 +117,23 @@ fn hotp_slot_name() {      let slot_data = OtpSlotData::new(1, "test-hotp", HOTP_SECRET, OtpMode::SixDigits);      assert_eq!(CommandStatus::Success, admin.write_hotp_slot(slot_data, 0)); -    let result = admin.device().get_hotp_slot_name(1); +    let device = admin.device(); +    let result = device.get_hotp_slot_name(1);      assert_eq!("test-hotp", result.unwrap()); +    let result = device.get_hotp_slot_name(4); +    assert_eq!(CommandError::InvalidSlot, result.unwrap_err()); +} + +#[test] +#[cfg_attr(not(feature = "test-pro"), ignore)] +fn hotp_error() { +    let admin = get_admin_test_device(); +    let slot_data = OtpSlotData::new(1, "", HOTP_SECRET, OtpMode::SixDigits); +    assert_eq!(CommandStatus::Error(CommandError::NoName), admin.write_hotp_slot(slot_data, 0)); +    let slot_data = OtpSlotData::new(4, "test", HOTP_SECRET, OtpMode::SixDigits); +    assert_eq!(CommandStatus::Error(CommandError::InvalidSlot), admin.write_hotp_slot(slot_data, 0)); +    let code = admin.get_hotp_code(4); +    assert_eq!(CommandError::InvalidSlot, code.unwrap_err());  }  fn configure_totp(admin: &AdminAuthenticatedDevice) { @@ -181,9 +196,24 @@ fn totp_slot_name() {      let slot_data = OtpSlotData::new(1, "test-totp", TOTP_SECRET, OtpMode::EightDigits);      assert_eq!(CommandStatus::Success, admin.write_totp_slot(slot_data, 0)); -    let result = admin.device().get_totp_slot_name(1); +    let device = admin.device(); +    let result = device.get_totp_slot_name(1);      assert!(result.is_ok());      assert_eq!("test-totp", result.unwrap()); +    let result = device.get_totp_slot_name(16); +    assert_eq!(CommandError::InvalidSlot, result.unwrap_err()); +} + +#[test] +#[cfg_attr(not(feature = "test-pro"), ignore)] +fn totp_error() { +    let admin = get_admin_test_device(); +    let slot_data = OtpSlotData::new(1, "", HOTP_SECRET, OtpMode::SixDigits); +    assert_eq!(CommandStatus::Error(CommandError::NoName), admin.write_hotp_slot(slot_data, 0)); +    let slot_data = OtpSlotData::new(4, "test", HOTP_SECRET, OtpMode::SixDigits); +    assert_eq!(CommandStatus::Error(CommandError::InvalidSlot), admin.write_hotp_slot(slot_data, 0)); +    let code = admin.get_hotp_code(4); +    assert_eq!(CommandError::InvalidSlot, code.unwrap_err());  }  #[test] | 
