lib/base64: nitunize tests
authorAlexandre Terrasa <alexandre@moz-code.org>
Tue, 15 May 2018 02:24:33 +0000 (22:24 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 15 May 2018 02:38:04 +0000 (22:38 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/base64/tests/test_base64.nit [new file with mode: 0644]
tests/sav/test_base64.res [deleted file]
tests/test_base64.nit [deleted file]

diff --git a/lib/base64/tests/test_base64.nit b/lib/base64/tests/test_base64.nit
new file mode 100644 (file)
index 0000000..3e9c8d2
--- /dev/null
@@ -0,0 +1,59 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+module test_base64 is test
+
+import base64
+
+class TestBase64
+       test
+
+       fun test_encode is test do
+               assert "".encode_base64 == ""
+               assert "f".encode_base64 == "Zg=="
+               assert "fo".encode_base64 == "Zm8="
+               assert "foo".encode_base64 == "Zm9v"
+               assert "foob".encode_base64 == "Zm9vYg=="
+               assert "fooba".encode_base64 == "Zm9vYmE="
+               assert "foobar".encode_base64 == "Zm9vYmFy"
+       end
+
+       fun test_decode is test do
+               assert "".decode_base64.to_s == ""
+               assert "Zg==".decode_base64.to_s == "f"
+               assert "Zm8=".decode_base64.to_s == "fo"
+               assert "Zm9v".decode_base64.to_s == "foo"
+               assert "Zm9vYg==".decode_base64.to_s == "foob"
+               assert "Zm9vYmE=".decode_base64.to_s == "fooba"
+               assert "Zm9vYmFy".decode_base64.to_s == "foobar"
+
+               assert "Zm9vYg".decode_base64.to_s == "foob"
+               assert "Zm9vYmE".decode_base64.to_s == "fooba"
+               assert "Zm9v*Yg".decode_base64.to_s == "foob"
+       end
+
+       fun test_is_base64 is test do
+               assert "Znm=".is_base64
+               assert not "Znm===".is_base64
+               assert not "Z.sd=".is_base64
+               assert not "Z==D".is_base64
+       end
+
+       fun test_check_base64 is test do
+               assert "Znm=".check_base64 == null
+               assert "Znm===".check_base64.as(not null).to_s == "Invalid padding length"
+               assert "Z.sd=".check_base64.as(not null).to_s == "Invalid Base64 character at position 1: ."
+               assert "Z==D".check_base64.as(not null).to_s == "Invalid padding character D at position 3"
+       end
+end
diff --git a/tests/sav/test_base64.res b/tests/sav/test_base64.res
deleted file mode 100644 (file)
index 06bc37f..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-:
-f:      Zg==
-fo:     Zm8=
-foo:    Zm9v
-foob:   Zm9vYg==
-fooba:  Zm9vYmE=
-foobar: Zm9vYmFy
-:
-Zg==:     f
-Zm8=:     fo
-Zm9v:     foo
-Zm9vYg==: foob
-Zm9vYmE=: fooba
-Zm9vYmFy: foobar
-Zm9vYg: foob
-Zm9vYmE: fooba
-Zm9v*Yg: foob
-:
-Znm=.is_base64? true
-Znm===.is_base64? false
-Z.sd=.is_base64? false
-Z==D.is_base64? false
-:
-Znm=: No error
-Znm===: Invalid padding length
-Z.sd=: Invalid Base64 character at position 1: .
-Z==D: Invalid padding character D at position 3
diff --git a/tests/test_base64.nit b/tests/test_base64.nit
deleted file mode 100644 (file)
index fb0d769..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2013 Alexis Laferrière <alexis.laf@xymus.net>
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-import base64
-
-print ":" + "".encode_base64
-print "f:      " + "f".encode_base64
-print "fo:     " + "fo".encode_base64
-print "foo:    " + "foo".encode_base64
-print "foob:   " + "foob".encode_base64
-print "fooba:  " + "fooba".encode_base64
-print "foobar: " + "foobar".encode_base64
-
-print ":" + "".decode_base64.to_s
-print "Zg==:     " + "Zg==".decode_base64.to_s
-print "Zm8=:     " + "Zm8=".decode_base64.to_s
-print "Zm9v:     " + "Zm9v".decode_base64.to_s
-print "Zm9vYg==: " + "Zm9vYg==".decode_base64.to_s
-print "Zm9vYmE=: " + "Zm9vYmE=".decode_base64.to_s
-print "Zm9vYmFy: " + "Zm9vYmFy".decode_base64.to_s
-
-print "Zm9vYg: " + "Zm9vYg".decode_base64.to_s
-print "Zm9vYmE: " + "Zm9vYmE".decode_base64.to_s
-print "Zm9v*Yg: " + "Zm9v*Yg".decode_base64.to_s
-
-print ":"
-print "Znm=.is_base64? " + "Znm=".is_base64.to_s
-print "Znm===.is_base64? " + "Znm===".is_base64.to_s
-print "Z.sd=.is_base64? " + "Z.sd=".is_base64.to_s
-print "Z==D.is_base64? " + "Z==D".is_base64.to_s
-
-print ":"
-printn "Znm=: "
-print "Znm=".check_base64 or else "No error"
-printn "Znm===: "
-print "Znm===".check_base64 or else "No error"
-printn "Z.sd=: "
-print "Z.sd=".check_base64 or else "No error"
-printn "Z==D: "
-print "Z==D".check_base64 or else "No error"