123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- (define-module (test-base64)
- #:use-module (gcrypt base64)
- #:use-module (rnrs bytevectors)
- #:use-module (srfi srfi-64))
- (define (string->base64 str)
- (base64-encode (string->utf8 str)))
- (define (base64->string base64)
- (utf8->string (base64-decode base64)))
- (define (string->base64-padding str padding)
- (let ((bv (string->utf8 str)))
- (base64-encode bv 0 (bytevector-length bv) #f (not padding))))
- (define (base64->string-padding base64 padding)
- (utf8->string (base64-decode base64 base64url-alphabet #f #f padding)))
- (test-begin "base64")
- (test-equal "empty string"
- (string->base64 "")
- "")
- (test-equal "f"
- (string->base64 "f")
- "Zg==")
- (test-equal "fo"
- (string->base64 "fo")
- "Zm8=")
- (test-equal "foo"
- (string->base64 "foo")
- "Zm9v")
- (test-equal "foob"
- (string->base64 "foob")
- "Zm9vYg==")
- (test-equal "fooba"
- (string->base64 "fooba")
- "Zm9vYmE=")
- (test-equal "foobar"
- (string->base64 "foobar")
- "Zm9vYmFy")
- (test-equal "foob (no padding)"
- (string->base64-padding "foob" #f)
- "Zm9vYg")
- (test-equal "foob (padding)"
- (string->base64-padding "foob" #t)
- "Zm9vYg==")
- (test-equal "empty string"
- (base64->string "")
- "")
- (test-equal "f"
- (base64->string "Zg==")
- "f")
- (test-equal "fo"
- (base64->string "Zm8=")
- "fo")
- (test-equal "foo"
- (base64->string "Zm9v")
- "foo")
- (test-equal "foob"
- (base64->string "Zm9vYg==")
- "foob")
- (test-equal "fooba"
- (base64->string "Zm9vYmE=")
- "fooba")
- (test-equal "foobar"
- (base64->string "Zm9vYmFy")
- "foobar")
- (test-equal "foob (no padding)"
- (base64->string-padding "Zm9vYg" #f)
- "foob")
- (test-equal "foob (padding)"
- (base64->string-padding "Zm9vYg==" #t)
- "foob")
- (test-end "base64")
|