[Libreoffice-commits] core.git: basic/qa

Zdeněk Crhonek zcrhonek at gmail.com
Wed Aug 2 19:52:40 UTC 2017


 basic/qa/cppunit/test_vba.cxx |    2 
 basic/qa/vba_tests/str.vb     |   75 ++++++++++++++++++++++++++++++++
 basic/qa/vba_tests/strcomp.vb |   96 ++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 173 insertions(+)

New commits:
commit 3acfc281ad2324a678367d907ce4b2b5a9e2abc0
Author: Zdeněk Crhonek <zcrhonek at gmail.com>
Date:   Wed Aug 2 18:24:18 2017 +0200

    VBA tests - STR and STRCOMP functions
    
    Change-Id: I09daaa8be3687bf838f569849542d47c85907d1e
    Reviewed-on: https://gerrit.libreoffice.org/40687
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Zdenek Crhonek <zcrhonek at gmail.com>

diff --git a/basic/qa/cppunit/test_vba.cxx b/basic/qa/cppunit/test_vba.cxx
index cad4c176713f..e406a1dc661a 100644
--- a/basic/qa/cppunit/test_vba.cxx
+++ b/basic/qa/cppunit/test_vba.cxx
@@ -125,6 +125,8 @@ void VBATest::testMiscVBAFunctions()
         "sln.vb",
         "space.vb",
         "sqr.vb",
+        "str.vb",
+        "strcomp.vb",
 #ifndef WIN32 // missing 64bit Currency marshalling.
         "win32compat.vb", // windows compatibility hooks.
 #endif
diff --git a/basic/qa/vba_tests/str.vb b/basic/qa/vba_tests/str.vb
new file mode 100644
index 000000000000..f06775bfecda
--- /dev/null
+++ b/basic/qa/vba_tests/str.vb
@@ -0,0 +1,75 @@
+Option VBASupport 1
+Option Explicit
+Dim passCount As Integer
+Dim failCount As Integer
+Dim result As String
+
+Function doUnitTest() As String
+result = verify_testSTR()
+If failCount <> 0 And passCount > 0 Then
+    doUnitTest = result
+Else
+    doUnitTest = "OK"
+End If
+End Function
+
+
+
+Function verify_testSTR() As String
+
+    passCount = 0
+    failCount = 0
+
+    result = "Test Results" & Chr$(10) & "============" & Chr$(10)
+
+    Dim testName As String
+    Dim TestDateTime As Date
+    Dim TestStr As String
+    Dim date1, date2
+    testName = "Test STR function"
+    On Error GoTo errorHandler
+
+    date2 = " 459"
+    date1 = Str(459)
+    TestLog_ASSERT date1 = date2, "the return STR is: " & date1
+
+    date2 = "-459.65"
+    date1 = Str(-459.65)
+    TestLog_ASSERT date1 = date2, "the return STR is: " & date1
+
+    date2 = " 459.001"
+    date1 = Str(459.001)
+    TestLog_ASSERT date1 = date2, "the return STR is: " & date1
+
+    date2 = " .24"
+    date1 = Str(0.24)
+    TestLog_ASSERT date1 = date2, "the return STR is: " & date1
+
+    result = result & Chr$(10) & "Tests passed: " & passCount & Chr$(10) & "Tests failed: " & failCount & Chr$(10)
+    verify_testSTR = result
+
+
+    Exit Function
+errorHandler:
+        TestLog_ASSERT (False), testName & ": hit error handler"
+End Function
+
+Sub TestLog_ASSERT(assertion As Boolean, Optional testId As String, Optional testComment As String)
+
+    If assertion = True Then
+        passCount = passCount + 1
+    Else
+        Dim testMsg As String
+        If Not IsMissing(testId) Then
+            testMsg = testMsg + " : " + testId
+        End If
+        If Not IsMissing(testComment) And Not (testComment = "") Then
+            testMsg = testMsg + " (" + testComment + ")"
+        End If
+
+        result = result & Chr$(10) & " Failed: " & testMsg
+        failCount = failCount + 1
+    End If
+
+End Sub
+
diff --git a/basic/qa/vba_tests/strcomp.vb b/basic/qa/vba_tests/strcomp.vb
new file mode 100644
index 000000000000..ecf661f64d9a
--- /dev/null
+++ b/basic/qa/vba_tests/strcomp.vb
@@ -0,0 +1,96 @@
+Option VBASupport 1
+Option Explicit
+Dim passCount As Integer
+Dim failCount As Integer
+Dim result As String
+
+Function doUnitTest() As String
+result = verify_testSTRcomp()
+If failCount <> 0 And passCount > 0 Then
+    doUnitTest = result
+Else
+    doUnitTest = "OK"
+End If
+End Function
+
+
+
+Function verify_testSTRcomp() As String
+
+    passCount = 0
+    failCount = 0
+
+    result = "Test Results" & Chr$(10) & "============" & Chr$(10)
+
+    Dim testName As String
+    Dim TestDateTime As Date
+    Dim TestStr, TestStr1, TestStr2 As String
+    Dim date1, date2
+    testName = "Test STRcomp function"
+    On Error GoTo errorHandler
+    TestStr1 = "ABCD"
+    TestStr2 = "abcd"
+
+    date2 = 0
+    date1 = StrComp(TestStr1, TestStr2, vbTextCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = -1
+    date1 = StrComp(TestStr1, TestStr2, vbBinaryCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = -1
+    date1 = StrComp(TestStr1, TestStr2)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = 0
+    date1 = StrComp("text", "text", vbBinaryCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = 1
+    date1 = StrComp("text  ", "text", vbBinaryCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = -1
+    date1 = StrComp("Text", "text", vbBinaryCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = 0
+    date1 = StrComp("text", "text", vbTextCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = 1
+    date1 = StrComp("text  ", "text", vbTextCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    date2 = 0
+    date1 = StrComp("Text", "text", vbTextCompare)
+    TestLog_ASSERT date1 = date2, "the return STRcomp is: " & date1
+
+    result = result & Chr$(10) & "Tests passed: " & passCount & Chr$(10) & "Tests failed: " & failCount & Chr$(10)
+    verify_testSTRcomp = result
+
+    Exit Function
+errorHandler:
+        TestLog_ASSERT (False), testName & ": hit error handler"
+End Function
+
+Sub TestLog_ASSERT(assertion As Boolean, Optional testId As String, Optional testComment As String)
+
+    If assertion = True Then
+        passCount = passCount + 1
+    Else
+        Dim testMsg As String
+        If Not IsMissing(testId) Then
+            testMsg = testMsg + " : " + testId
+        End If
+        If Not IsMissing(testComment) And Not (testComment = "") Then
+            testMsg = testMsg + " (" + testComment + ")"
+        End If
+
+        result = result & Chr$(10) & " Failed: " & testMsg
+        failCount = failCount + 1
+    End If
+
+End Sub
+


More information about the Libreoffice-commits mailing list