diff options
| author | Robin Krahl <me@robin-krahl.de> | 2018-07-10 12:34:03 +0200 | 
|---|---|---|
| committer | Robin Krahl <robin.krahl@ireas.org> | 2018-12-10 14:36:45 +0100 | 
| commit | 99e417b8b5ca921f45f59f85b887f9bf6f03a267 (patch) | |
| tree | 79a414d65cac603cdf89da38e3d6d13b1611288e /src/tests | |
| parent | c1e6bcb3e448962b5f4cf4453e629eae1a82b943 (diff) | |
| download | nitrokey-rs-99e417b8b5ca921f45f59f85b887f9bf6f03a267.tar.gz nitrokey-rs-99e417b8b5ca921f45f59f85b887f9bf6f03a267.tar.bz2 | |
Fix generic connections (connect()) to return correct device
This patch fixes the generic connect() method to return a DeviceWrapper
of the correct type.  This is enabled by the NK_get_device_model()
method introduced in libnitrokey v3.4.
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/device.rs | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/src/tests/device.rs b/src/tests/device.rs index 60ca33a..c2c5336 100644 --- a/src/tests/device.rs +++ b/src/tests/device.rs @@ -33,6 +33,10 @@ fn connect_pro() {      assert!(::connect().is_ok());      assert!(::Pro::connect().is_ok());      assert!(::Storage::connect().is_err()); +    match ::connect().unwrap() { +        ::DeviceWrapper::Pro(_) => assert!(true), +        ::DeviceWrapper::Storage(_) => assert!(false), +    };  }  #[test] @@ -41,6 +45,10 @@ fn connect_storage() {      assert!(::connect().is_ok());      assert!(::Pro::connect().is_err());      assert!(::Storage::connect().is_ok()); +    match ::connect().unwrap() { +        ::DeviceWrapper::Pro(_) => assert!(false), +        ::DeviceWrapper::Storage(_) => assert!(true), +    };  }  fn assert_empty_serial_number() { | 
