Merge: Added contributing guidelines and link from readme
[nit.git] / tests / test_base64.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import base64
18
19 print ":" + "".encode_base64
20 print "f: " + "f".encode_base64
21 print "fo: " + "fo".encode_base64
22 print "foo: " + "foo".encode_base64
23 print "foob: " + "foob".encode_base64
24 print "fooba: " + "fooba".encode_base64
25 print "foobar: " + "foobar".encode_base64
26
27 print ":" + "".decode_base64.to_s
28 print "Zg==: " + "Zg==".decode_base64.to_s
29 print "Zm8=: " + "Zm8=".decode_base64.to_s
30 print "Zm9v: " + "Zm9v".decode_base64.to_s
31 print "Zm9vYg==: " + "Zm9vYg==".decode_base64.to_s
32 print "Zm9vYmE=: " + "Zm9vYmE=".decode_base64.to_s
33 print "Zm9vYmFy: " + "Zm9vYmFy".decode_base64.to_s
34
35 print "Zm9vYg: " + "Zm9vYg".decode_base64.to_s
36 print "Zm9vYmE: " + "Zm9vYmE".decode_base64.to_s
37 print "Zm9v*Yg: " + "Zm9v*Yg".decode_base64.to_s
38
39 print ":"
40 print "Znm=.is_base64? " + "Znm=".is_base64.to_s
41 print "Znm===.is_base64? " + "Znm===".is_base64.to_s
42 print "Z.sd=.is_base64? " + "Z.sd=".is_base64.to_s
43 print "Z==D.is_base64? " + "Z==D".is_base64.to_s
44
45 print ":"
46 printn "Znm=: "
47 print "Znm=".check_base64 or else "No error"
48 printn "Znm===: "
49 print "Znm===".check_base64 or else "No error"
50 printn "Z.sd=: "
51 print "Z.sd=".check_base64 or else "No error"
52 printn "Z==D: "
53 print "Z==D".check_base64 or else "No error"