vbscript: Added Hex function tests.
[wine] / dlls / vbscript / tests / api.vbs
1 '
2 ' Copyright 2011 Jacek Caban for CodeWeavers
3 '
4 ' This library is free software; you can redistribute it and/or
5 ' modify it under the terms of the GNU Lesser General Public
6 ' License as published by the Free Software Foundation; either
7 ' version 2.1 of the License, or (at your option) any later version.
8 '
9 ' This library is distributed in the hope that it will be useful,
10 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ' Lesser General Public License for more details.
13 '
14 ' You should have received a copy of the GNU Lesser General Public
15 ' License along with this library; if not, write to the Free Software
16 ' Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 '
18
19 Option Explicit
20
21 Dim x
22
23 Class EmptyClass
24 End Class
25
26 Call ok(isObject(new EmptyClass), "isObject(new EmptyClass) is not true?")
27 Set x = new EmptyClass
28 Call ok(isObject(x), "isObject(x) is not true?")
29 Call ok(isObject(Nothing), "isObject(Nothing) is not true?")
30 Call ok(not isObject(true), "isObject(true) is true?")
31 Call ok(not isObject(4), "isObject(4) is true?")
32 Call ok(not isObject("x"), "isObject(""x"") is true?")
33 Call ok(not isObject(Null), "isObject(Null) is true?")
34
35 Call ok(getVT(err) = "VT_DISPATCH", "getVT(err) = " & getVT(err))
36
37 Sub TestHex(x, ex)
38     Call ok(hex(x) = ex, "hex(" & x & ") = " & hex(x) & " expected " & ex)
39 End Sub
40
41 TestHex 0, "0"
42 TestHex 6, "6"
43 TestHex 16, "10"
44 TestHex &hdeadbeef&, "DEADBEEF"
45 TestHex -1, "FFFF"
46 TestHex -16, "FFF0"
47 TestHex -934859845, "C8472BBB"
48 TestHex empty, "0"
49
50 Call ok(getVT(hex(null)) = "VT_NULL", "getVT(hex(null)) = " & getVT(hex(null)))
51 Call ok(getVT(hex(empty)) = "VT_BSTR", "getVT(hex(empty)) = " & getVT(hex(empty)))
52
53 Call reportSuccess()