aboutsummaryrefslogtreecommitdiff
path: root/test/uri.t
diff options
context:
space:
mode:
authorTad Fisher <tad@simple.com>2017-03-19 16:49:01 -0700
committerTad Fisher <tad@simple.com>2017-03-19 16:49:01 -0700
commitd29b61248c87ab29283eb4ccbd037869f0b4df28 (patch)
tree16ae74a74b8d3bd850b39847ea820dcbeb4b0f24 /test/uri.t
parent3aeea0b8ab9c7bbbfdf403fe5e0908a1160ef08b (diff)
cmd_otp_uri: Show first line starting with otpauth:// in passfile
Diffstat (limited to 'test/uri.t')
-rwxr-xr-xtest/uri.t24
1 files changed, 10 insertions, 14 deletions
diff --git a/test/uri.t b/test/uri.t
index 9fbe66c..084b010 100755
--- a/test/uri.t
+++ b/test/uri.t
@@ -4,24 +4,20 @@ export test_description='Tests pass otp URI parsing'
. ./setup.sh
-test_expect_success 'Parses a basic TOTP URI' '
- "$PASS" otp validate "otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example"
-'
-
-test_expect_success 'Parses a complex TOTP URI' '
- "$PASS" otp validate otpauth://totp/ACME%20Co:john.doe@email.com?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ&issuer=ACME%20Co&algorithm=SHA1&digits=6&period=30
-'
+test_expect_success 'Shows key URI in single-line passfile' '
+ uri="otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example"
-test_expect_success 'Fails for bogus URL' '
- test_must_fail "$PASS" otp validate https://www.google.com/
+ test_pass_init &&
+ "$PASS" otp insert "$uri" passfile &&
+ [[ $("$PASS" otp uri passfile) == "$uri" ]]
'
-test_expect_success 'Fails for missing secret' '
- test_must_fail "$PASS" otp validate otpauth://totp/ACME%20Co:john.doe@email.com?issuer=ACME%20Co&algorithm=SHA1&digits=6&period=30
-'
+test_expect_success 'Shows key URI in multi-line passfile' '
+ uri="otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example"
-test_expect_success 'Fails for missing counter' '
- test_must_fail "$PASS" otp validate otpauth://hotp?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ
+ test_pass_init &&
+ "$PASS" insert -m passfile < <(echo -e "password\nfoo\n$uri\nbar") &&
+ [[ $("$PASS" otp uri passfile) == "$uri" ]]
'
test_done