diff options
author | Barry Warsaw <barry@python.org> | 1996-12-23 23:39:42 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-12-23 23:39:42 (GMT) |
commit | 5e056bbb76bec655f447fd44367f88e33af3bb02 (patch) | |
tree | 82093cea175335a37d441cad361b79be6fbb743c /Lib/test/test_rotor.py | |
parent | aeb207c6b69a0efaab686d5257be6fe1dfe2a179 (diff) | |
download | cpython-5e056bbb76bec655f447fd44367f88e33af3bb02.zip cpython-5e056bbb76bec655f447fd44367f88e33af3bb02.tar.gz cpython-5e056bbb76bec655f447fd44367f88e33af3bb02.tar.bz2 |
test_rotor.py: New test of the rotor module.
test_*: converted to the new test harness. GvR note! test_signal.py
works interatively (i.e. when verbose=1) but does not work inside the
test harness. It must be a timing issue, but I haven't figured it out
yet.
Diffstat (limited to 'Lib/test/test_rotor.py')
-rw-r--r-- | Lib/test/test_rotor.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py new file mode 100644 index 0000000..475ac16 --- /dev/null +++ b/Lib/test/test_rotor.py @@ -0,0 +1,25 @@ +import rotor + +r = rotor.newrotor("you'll never guess this") +r = rotor.newrotor("you'll never guess this", 12) + +A = 'spam and eggs' +B = 'cheese shop' + +a = r.encrypt(A) +print a +b = r.encryptmore(B) +print b + +A1 = r.decrypt(a) +print A1 +if A1 <> A: + print 'decrypt failed' + +B1 = r.decryptmore(b) +print B1 +if B1 <> B: + print 'decryptmore failed' + +r.setkey() +r.setkey('you guessed it!') |