aboutsummaryrefslogtreecommitdiff
path: root/nitrocli/src/tests/pin.rs
blob: e4cd316fc1372e50dfea37294d281d10224ba48b (plain)
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
// pin.rs

// *************************************************************************
// * Copyright (C) 2019 Daniel Mueller (deso@posteo.net)                   *
// *                                                                       *
// * This program is free software: you can redistribute it and/or modify  *
// * it under the terms of the GNU General Public License as published by  *
// * the Free Software Foundation, either version 3 of the License, or     *
// * (at your option) any later version.                                   *
// *                                                                       *
// * This program is distributed in the hope that it will be useful,       *
// * but WITHOUT ANY WARRANTY; without even the implied warranty of        *
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
// * GNU General Public License for more details.                          *
// *                                                                       *
// * You should have received a copy of the GNU General Public License     *
// * along with this program.  If not, see <http://www.gnu.org/licenses/>. *
// *************************************************************************

use nitrokey::Authenticate;
use nitrokey::Device;

use super::*;

#[test_device]
fn unblock(device: nitrokey::DeviceWrapper) -> crate::Result<()> {
  let (device, err) = device.authenticate_user("wrong-pin").unwrap_err();
  match err {
    nitrokey::Error::CommandError(err) if err == nitrokey::CommandError::WrongPassword => (),
    _ => panic!("Unexpected error variant found: {:?}", err),
  }
  assert!(device.get_user_retry_count()? < 3);

  let model = device.get_model();
  let _ = Nitrocli::with_dev(device).handle(&["pin", "unblock"])?;
  let device = nitrokey::connect_model(model)?;
  assert_eq!(device.get_user_retry_count()?, 3);
  Ok(())
}

#[test_device]
fn set_user(device: nitrokey::DeviceWrapper) -> crate::Result<()> {
  let mut ncli = Nitrocli::with_dev(device);

  // Set a new user PIN.
  ncli.new_user_pin("new-pin");
  let out = ncli.handle(&["pin", "set", "user"])?;
  assert!(out.is_empty());

  let device = nitrokey::connect_model(ncli.model().unwrap())?;
  let (device, err) = device
    .authenticate_user(nitrokey::DEFAULT_USER_PIN)
    .unwrap_err();

  match err {
    nitrokey::Error::CommandError(err) if err == nitrokey::CommandError::WrongPassword => (),
    _ => panic!("Unexpected error variant found: {:?}", err),
  }
  drop(device);

  // Revert to the default user PIN.
  ncli.user_pin("new-pin");
  ncli.new_user_pin(nitrokey::DEFAULT_USER_PIN);

  let out = ncli.handle(&["pin", "set", "user"])?;
  assert!(out.is_empty());

  let device = nitrokey::connect_model(ncli.model().unwrap())?;
  let _ = device
    .authenticate_user(nitrokey::DEFAULT_USER_PIN)
    .unwrap();
  Ok(())
}