summaryrefslogtreecommitdiff
path: root/tests/jwk-kty-ec-incorrect.scm
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2020-01-01 00:00:00 +0100
committerVivien Kraus <vivien@planete-kraus.eu>2021-06-19 15:44:24 +0200
commit6bc2ce4c55af6d3f3af7be494c149cbe33d6e08e (patch)
tree5152c6bec3b1583ef123d0ef58c403831fe98792 /tests/jwk-kty-ec-incorrect.scm
parentfadfd29ceb64c8a60a369c0d3f225cfd0f46157b (diff)
Add a strip function
Diffstat (limited to 'tests/jwk-kty-ec-incorrect.scm')
-rw-r--r--tests/jwk-kty-ec-incorrect.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/jwk-kty-ec-incorrect.scm b/tests/jwk-kty-ec-incorrect.scm
new file mode 100644
index 0000000..5ada4f2
--- /dev/null
+++ b/tests/jwk-kty-ec-incorrect.scm
@@ -0,0 +1,23 @@
+(use-modules (webid-oidc stubs)
+ (webid-oidc testing)
+ (webid-oidc errors))
+
+(with-test-environment
+ "jwk-kty-ec-incorrect"
+ (lambda ()
+ (let* ((key (json-string->scm "{
+ \"kty\":\"EC\",
+ \"x\":\"This-point-does-not-exist-on-the-curve_____\",
+ \"y\":\"9VE4jf_Ok_o64zbTTlcuNJajHmt6v9TDVrU0CdvGRDA\",
+ \"crv\":\"P-256\"
+ }"))
+ (kty
+ (with-exception-handler
+ (lambda (exn)
+ #f)
+ (lambda ()
+ (kty key))
+ #:unwind? #t
+ #:unwind-for-type &not-a-jwk)))
+ (when kty
+ (exit 1)))))