Sha256: 7bea3d3cd28d5a32ed591c8af391cb51966074cc840d9711e4a7fe65419398f5

Contents?: true

Size: 1.75 KB

Versions: 53

Compression:

Stored size: 1.75 KB

Contents

(ql:quickload "lisp-unit")

(defpackage #:crypto-square-test
  (:use #:common-lisp #:lisp-unit))

#-xlisp-test (load "crypto-square")

(in-package #:crypto-square-test)

(define-test super-simple
  (assert-equal
   "ac bd"
   (crypto-square:encipher "abcd")))

(define-test still-simple
  (assert-equal
   "ttt iao cce"
   (crypto-square:encipher "tic tac toe"))  )

(define-test a-little-harder
  (assert-equal
   "acb bar rda aa" (crypto-square:encipher "abracadabra")))

(define-test example-1
  (assert-equal
   "hifei acedl veeol eddgo aatcu nyhht"
   (crypto-square:encipher "Have a nice day. Feed the dog & chill out!")))

(define-test example-2
  (assert-equal
   "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau"
   (crypto-square:encipher "If man was meant to stay on the ground god would have given us roots")))

(define-test cipher-0
  (assert-equal
   "neewl exhie vtetw ehaho ririe vntds"
   (crypto-square:encipher "Never vex thine heart with idle woes.")))

(define-test cipher-1
  (assert-equal
   "tasney inicds miohoo elntu illib suuml"
   (crypto-square:encipher "Time is an illusion. Lunchtime doubly so.")))

(define-test cipher-2
  (assert-equal
   "wneiaw eorene awssci liprer lneoid ktcms"
   (crypto-square:encipher "We all know interspecies romance is weird.")))

(define-test cipher-3
  (assert-equal
   "msemo aanin dnin ndla etlt shui"
   (crypto-square:encipher "Madness, and then illumination.")))

(define-test cipher-4
  (assert-equal
   "vrel aepe mset paoo irpo"
   (crypto-square:encipher "Vampires are people too!")))

(define-test special-case
  (assert-equal
   "sator arepo tenet opera rotas"
   (crypto-square:encipher "sator arepo tenet opera rotas")))

#-xlisp-test
(let ((*print-errors* t)
      (*print-failures* t))
  (run-tests :all))

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
trackler-2.0.5.16 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.15 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.14 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.13 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.12 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.11 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.10 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.9 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.8 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.7 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.6 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.5 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.4 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.3 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.2 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.1 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.5.0 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.4.0 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.3.9 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp
trackler-2.0.3.8 tracks/lisp/exercises/crypto-square/crypto-square-test.lisp