Test repository to check push and ssh key
Find a file
Jean-Pierre Ledure 14c7bc1c90 ScriptForge - New 'UnitTest' service for Basic
The "UnitTest" service is implemented as a new
Basic library called 'SFUnitTests'.

ScriptForge unit tests (SF_UnitTest class module)
======================
Class providing a framework to execute and check sets of unit tests.

The UnitTest unit testing framework was originally
inspired by unittest.py in Python
and has a similar flavor as major unit testing
frameworks in other languages.

It supports
- test automation
- sharing of setupand shutdown code
- aggregation of tests into collections.

Both the
- code describing the unit tests
- code to be tested
must be written exclusively in Basic
(the code might call functions written in other languages).
The code to be tested may be released as an extension.
It does not need to make use of ScriptForge services.

The test reporting device is the Console.

Definitions:
- Test Case: each test case is a Basic Sub.
- Test Suite: a collection of test cases stored in 1 Basic module.
- Unit test: a set of test suites stored in 1 library.

Two modes:
- the normal mode ("full mode"), using test suites and test cases
  The UnitTest service is passed as argument to each test case.
- the "simple mode" limited to the use of the Assert...() methods.

Service invocation examples:
- In full mode, the service creation is external to test cases
        Dim myUnitTest As Variant
        myUnitTest = CreateScriptService("UnitTest", ThisComponent, "Tests")
            '    Test code is in the library "Tests"
            '    located in the current document
- In simple mode, the service creation is internal to every test case
        Dim myUnitTest As Variant
        myUnitTest = CreateScriptService("UnitTest")
        With myUnitTest
            If Not .AssertTrue(...) Then ...
            '    ...
            .Dispose()
        End With

Error handling
To support the debugging of the tested code, the UnitTest service, in cases of
- assertion failure
- Basic run-time error in the tested code
- Basic run-time error in the testing code (the unit tests)
will comment the error location and description in a message box and in the console log,
providing every test case (in either mode) implements an error handler
containing at least a call to the ReportError() method.

Change-Id: I9d9b889b148f172cd868af455493c8c696d1e953
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135365
Tested-by: Jean-Pierre Ledure <jp@ledure.be>
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2022-06-04 12:08:36 +02:00
.git-hooks
.github rdm#3572 update github-repo lockdown 2022-05-10 10:24:33 +02:00
.vscode
accessibility Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
android android: Update Android Gradle Plugin to 7.2.1 2022-05-28 13:28:10 +02:00
animations Also assert that nNodeType is non-negative 2022-05-31 22:42:14 +02:00
apple_remote
avmedia clang-tidy modernize-pass-by-value in avmedia 2022-06-02 17:43:58 +02:00
basctl no need to allocate guards on the heap 2022-06-01 18:11:49 +02:00
basegfx clang-tidy modernize-pass-by-value in basegfx 2022-05-27 18:20:07 +02:00
basic tdf#147132 Flatten Basic function 2022-06-03 16:36:32 +02:00
bean
bin crashreportScraper: Removed time parsing, now it just resets. 2022-06-02 15:52:20 +02:00
binaryurp The return value of XConnection::read is guaranteed to be non-negative 2022-06-01 16:02:19 +02:00
bridges clang-tidy modernize-pass-by-value in bridges 2022-05-21 17:29:53 +02:00
canvas clang-tidy modernize-pass-by-value in canvas 2022-05-21 21:55:31 +02:00
chart2 A simpler way to avoid MSVC warning C4018 "signed/unsigned mismatch" 2022-06-02 14:11:14 +02:00
cli_ure Just use Any ctor instead of makeAny in cli_ure 2022-05-04 22:43:37 +02:00
codemaker clang-tidy modernize-pass-by-value in codemaker 2022-05-18 14:08:28 +02:00
comphelper Use more appropriate type for LocationAccess::nOwnClassVectorIndex 2022-06-02 21:33:17 +02:00
compilerplugins std::move SfxPoolItem into SfxItemSet where possible 2022-06-02 10:45:44 +02:00
config_host enable Skia on big-endian too 2022-05-09 09:14:11 +02:00
configmgr clang-tidy modernize-pass-by-value in configmgr 2022-05-23 10:52:11 +02:00
connectivity Fix linking Library_evoab 2022-05-30 23:12:27 +02:00
cppcanvas Remove duplicated include 2022-06-03 14:14:40 +02:00
cppu No need to call resume() on all already running thread 2022-06-01 16:43:29 +02:00
cppuhelper Fix type of cppuhelper::TypeManager::getInterfaceMember separator param 2022-06-02 22:07:35 +02:00
cpputools
cui clang-tidy modernize-pass-by-value in cui 2022-06-03 15:04:41 +02:00
dbaccess elide some makeStringAndClear() class 2022-06-03 11:34:19 +02:00
desktop ScriptForge - New 'UnitTest' service for Basic 2022-06-04 12:08:36 +02:00
dictionaries@3cfa1a0899 Update git submodules 2022-05-17 15:21:18 +02:00
distro-configs Adapt flatpak build to recently introduced dependencies 2022-05-18 09:10:59 +02:00
drawinglayer tdf#136787 Add control to create 1-bit B&W bitmap while creating mask. 2022-06-03 10:15:56 +02:00
editeng tdf#149389 Crash when closing document in dead key mode while adding comment 2022-06-02 15:11:36 +02:00
embeddedobj elide some OUString allocation 2022-05-24 13:13:00 +02:00
embedserv Just use Any ctor instead of makeAny in embedserv 2022-05-04 14:38:29 +02:00
emfio tdf#143876 EMF+ Add DrawClosedCurve and FillClosedCurve support 2022-05-16 17:26:20 +02:00
eventattacher Update remaining DevGuide wiki links. 2022-04-13 08:16:52 +02:00
extensions Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
external upgrade libtiff to 4.4.0 2022-06-03 18:03:12 +02:00
extras
filter Removed duplicated include 2022-06-02 20:54:56 +02:00
forms Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
formula Add binary operators to ForceArrayReturn handling, tdf#149378 follow-up 2022-06-03 17:21:22 +02:00
fpicker clang-tidy modernize-pass-by-value in fpicker 2022-06-01 14:17:45 +02:00
framework clang-tidy modernize-pass-by-value in framework 2022-06-02 12:12:15 +02:00
helpcompiler use more o3tl::getToken 2022-05-05 12:57:00 +02:00
helpcontent2@02043ac2c6 Update git submodules 2022-06-04 11:14:44 +02:00
hwpfilter No need for a cast here when comparing against const int DATE_SIZE = 40 2022-06-03 13:26:37 +02:00
i18nlangtag convertLanguageToLocaleImpl() speed-up a gazillion en-US fallback cases 2022-05-26 01:48:31 +02:00
i18npool clang-tidy modernize-pass-by-value in i18npool 2022-05-26 18:30:04 +02:00
i18nutil Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
icon-themes Breeze: tdf#149368 ^ radio & checbox button to follow up latest Plasma UI 2022-05-30 06:44:56 +02:00
idl clang-tidy modernize-pass-by-value in idl/idlc 2022-05-18 18:18:14 +02:00
idlc clang-tidy modernize-pass-by-value in idl/idlc 2022-05-18 18:18:14 +02:00
include clang-tidy modernize-pass-by-value in svl 2022-06-03 18:32:32 +02:00
instsetoo_native make_installer: convert Win to Unix path for cygwin 2022-05-27 09:33:45 +02:00
io URE Library_io should not depend on Library_comphelper 2022-05-09 17:56:47 +02:00
ios
javaunohelper Just use Any ctor instead of makeAny in javaunohelper 2022-05-04 10:10:41 +02:00
jurt
jvmaccess clang-tidy modernize-pass-by-value in jvmaccess 2022-05-23 11:46:13 +02:00
jvmfwk use more o3tl::getToken 2022-05-05 12:57:00 +02:00
l10ntools use more o3tl::getToken 2022-05-05 12:57:00 +02:00
librelogo
libreofficekit sw content controls, date: add LOK API 2022-06-01 09:09:40 +02:00
lingucomponent use more o3tl::getToken 2022-05-05 12:57:00 +02:00
linguistic Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
lotuswordpro
m4
nlpsolver
o3tl remove the o3tl::lru_map "unlimited" hack 2022-05-03 06:54:54 +02:00
odk Add Makefile for the FirstUnoContact C++ SDK example 2022-05-25 09:02:29 +02:00
offapi tdf#149420 sw offapi xmloff: add hyphenation zone 2022-06-02 09:57:39 +02:00
officecfg tdf#149437 "Equally" -> "Evenly" for Table Row Distribution 2022-06-03 12:01:16 +02:00
onlineupdate
oovbaapi
oox tdf#147991 PPTX export: fix bullet indent regression 2022-05-31 13:00:38 +02:00
opencl
osx
package Use more appropriate return type for ThreadPool::getPreferredConcurrency 2022-06-02 17:13:17 +02:00
pch
postprocess Fix typo 2022-05-14 14:08:53 +02:00
pyuno Just use Any ctor instead of makeAny in pyuno 2022-05-04 08:41:43 +02:00
qadevOOo qa: Fix occlusion check coordinates in _XAccessibleComponent.java 2022-05-10 16:13:03 +02:00
readlicense_oo update credits 2022-06-01 14:23:58 +02:00
registry
remotebridges Recheck modules [o-r]* with IWYU 2022-01-30 16:10:57 +01:00
reportbuilder
reportdesign The return value of those getLength functions is guaranteed to be non-negative 2022-06-01 10:49:20 +02:00
ridljar
sal Avoid uninitialized temp_file_handle 2022-05-30 12:48:28 +02:00
salhelper
sax clang-tidy modernize-pass-by-value in sax 2022-05-27 12:55:23 +02:00
sc Function Wizard: increase display length of array results 2022-06-04 00:41:11 +02:00
scaddins
sccomp remove unnecessary sequenceToContainer 2022-05-06 21:52:00 +02:00
schema tdf#149420 sw offapi xmloff: add hyphenation zone 2022-06-02 09:57:39 +02:00
scp2 ScriptForge - New 'UnitTest' service for Basic 2022-06-04 12:08:36 +02:00
scripting tdf#145527 Revert "Related tdf#116767: Call URLClassLoader.close" 2022-05-31 14:51:57 +02:00
sd Fix typos 2022-06-02 20:55:41 +02:00
sdext framework: fix crash on Writer startup when using --enable-ext-wiki-publisher 2022-05-30 12:08:03 +02:00
setup_native tdf#149106 Remove RenamePrgFolder and RemovePrgFolder custom msi actions 2022-05-18 22:50:53 +02:00
sfx2 std::move SfxPoolItem into SfxItemSet where possible 2022-06-02 10:45:44 +02:00
shell Library_syssh must link against expat when using StaticLibrary_shell_xmlparser 2022-05-11 16:16:35 +02:00
slideshow The return value of std::count_if is guaranteed to be non-negative 2022-05-31 22:03:22 +02:00
smoketest
solenv use at least assertions mode if libc++ debug mode is not usable 2022-05-26 07:55:50 +02:00
soltools Revert "Better use size_t for malloc_size" 2022-06-03 15:09:09 +02:00
sot Use o3tl::make_unsigned, nStrLen is known to be non-negative here 2022-06-03 15:11:05 +02:00
starmath Fix typo 2022-06-02 20:54:10 +02:00
static
stoc Use more appropriate index variable types 2022-06-03 10:08:57 +02:00
store store: add unit tests 2022-05-16 18:23:14 +02:00
svgio we can std::move the data out of TextBreakupHelper 2022-05-29 19:15:03 +02:00
svl clang-tidy modernize-pass-by-value in svl 2022-06-03 18:32:32 +02:00
svtools Use o3tl::make_unsigned in some places 2022-05-24 16:50:03 +02:00
svx Fix typos 2022-06-02 20:55:41 +02:00
sw tdf#148309 sw_redlinehide: fix mail merge performance regression 2022-06-03 15:08:39 +02:00
swext
sysui tdf#140215 Improve the Comment strings in .desktop files 2022-05-23 12:57:52 +02:00
test Just use Any ctor instead of makeAny in test 2022-05-03 20:03:32 +02:00
testtools Just use Any ctor instead of makeAny in testtools 2022-05-03 20:02:54 +02:00
toolkit new loplugin:unnecessary locking 2022-05-20 08:03:27 +02:00
tools Use more appropriate type for MultiSelection::nCurSubSel et al 2022-06-03 15:10:12 +02:00
translations@ed14d57f50 Update git submodules 2022-05-31 11:43:32 +02:00
ucb std::unordered_set->o3tl::sorted_vector in TaskManager 2022-05-23 18:48:25 +02:00
ucbhelper elide some OUString allocation 2022-05-24 13:13:00 +02:00
udkapi
uitest Use IconView in SmElementsControl 2022-06-02 12:51:41 +02:00
UnoControls
unodevtools
unoidl clang-tidy modernize-pass-by-value in unoidl 2022-05-18 14:45:27 +02:00
unoil
unotest unotest: fix NSS initialization for CentOS7 system NSS 2022-04-29 20:23:02 +02:00
unotools tdf#146988 Opening at cursor position doesn't work in large documents 2022-06-03 23:03:07 +02:00
unoxml Extend loplugin:redundantcast to trivial reinterpret_cast from T to itself 2022-05-18 10:52:59 +02:00
ure Provide unoidl-write also for the SDK 2022-02-25 16:46:26 +01:00
uui clang-tidy modernize-pass-by-value in uui 2022-06-01 14:18:05 +02:00
vbahelper Use a range-based for loop 2022-05-31 19:14:49 +02:00
vcl Related: tdf#147844 still log the discrepancy 2022-06-03 21:10:42 +02:00
winaccessibility Just use Any ctor instead of makeAny in winaccessibility 2022-05-03 10:07:33 +02:00
wizards ScriptForge - New 'UnitTest' service for Basic 2022-06-04 12:08:36 +02:00
writerfilter No need to static_cast these const Id (aka sal_uInt32) values 2022-06-03 10:01:36 +02:00
writerperfect modernize and improve PropertySetInfo 2022-05-24 14:02:09 +02:00
xmerge
xmlhelp
xmloff Use o3tl::make_unsigned, length is known to be non-negative 2022-06-02 20:32:20 +02:00
xmlreader
xmlscript new loplugin:unnecessary locking 2022-05-20 08:03:27 +02:00
xmlsecurity Use more appropriate index variable types 2022-06-02 20:32:00 +02:00
.buckconfig
.buckversion
.clang-format
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore Add mold linker temp files to .gitignore 2022-05-13 15:15:12 +02:00
.gitmodules gitmodules: use relative paths 2020-10-21 21:51:54 +02:00
.gitpod.dockerfile
.gitpod.yml
.gitreview
antivirusDetection.vbs
autogen.sh
BUCK Adapt buck build to jars merged into libreoffice.jar 2020-11-30 11:27:47 +01:00
config.guess
config.sub
config_host.mk.in use at least assertions mode if libc++ debug mode is not usable 2022-05-26 07:55:50 +02:00
config_host_lang.mk.in
configure.ac use at least assertions mode if libc++ debug mode is not usable 2022-05-26 07:55:50 +02:00
COPYING Licencing files 2011-01-11 21:49:39 +00:00
COPYING.LGPL
COPYING.MPL
download.lst upgrade libtiff to 4.4.0 2022-06-03 18:03:12 +02:00
g g: we are not, in fact, in the BUILDDIR 2022-05-31 10:29:45 +02:00
hardened_runtime.xcent.in
install-sh
install_deps.sh
leak-suppress.txt
Library_merged.mk
lo.xcent
logerrit
Makefile.fetch build libtiff 2022-05-20 22:29:00 +02:00
Makefile.gbuild
Makefile.in Drop --with-iwyu option 2022-05-04 16:48:25 +02:00
README.cross
README.help.md configure: Improve help-options handling 2021-06-22 14:25:51 +02:00
README.md Warn if Visual Studio 2019 version is < 16.10 2022-05-05 17:26:12 +02:00
README.Solaris remove use of Archive::Zip 2016-06-04 08:09:56 +02:00
Repository.mk ScriptForge - New 'UnitTest' service for Basic 2022-06-04 12:08:36 +02:00
RepositoryExternal.mk workdir/UnpackedTarball/libtiff/libtiff/tiff.h is generated 2022-05-24 10:00:04 +02:00
RepositoryFixes.mk
RepositoryModule_build.mk add drawinglayercore to merged libs 2021-12-23 11:38:24 +09:00
RepositoryModule_host.mk
sanitize-ubsan-excludelist
setup.cfg
TEMPLATE.SOURCECODE.HEADER
tsan-suppress.txt more tsan suppressions 2022-03-01 14:46:30 +01:00

LibreOffice

Coverity Scan Build Status CII Best Practices Translation status

LibreOffice is an integrated office suite based on copyleft licenses and compatible with most document formats and standards. Libreoffice is backed by The Document Foundation, which represents a large independent community of enterprises, developers and other volunteers moved by the common goal of bringing to the market the best software for personal productivity. LibreOffice is open source, and free to download, use and distribute.

A quick overview of the LibreOffice code structure.

Overview

You can develop for LibreOffice in one of two ways, one recommended and one much less so. First the somewhat less recommended way: it is possible to use the SDK to develop an extension, for which you can read the API docs and Developers Guide. This re-uses the (extremely generic) UNO APIs that are also used by macro scripting in StarBasic.

The best way to add a generally useful feature to LibreOffice is to work on the code base however. Overall this way makes it easier to compile and build your code, it avoids any arbitrary limitations of our scripting APIs, and in general is far more simple and intuitive - if you are a reasonably able C++ programmer.

The Build Chain and Runtime Baselines

These are the current minimal operating system and compiler versions to run and compile LibreOffice, also used by the TDF builds:

  • Windows:
    • Runtime: Windows 7
    • Build: Cygwin + Visual Studio 2019 version 16.10
  • macOS:
    • Runtime: 10.13
    • Build: 11.0 + Xcode 12.5
  • Linux:
    • Runtime: RHEL 7 or CentOS 7
    • Build: either GCC 7.0.0; or Clang 8.0.1 with libstdc++ 7.3.0
  • iOS (only for LibreOfficeKit):
    • Runtime: 11.4 (only support for newer i devices == 64 bit)
    • Build: Xcode 9.3 and iPhone SDK 11.4
  • Android:
    • Build: NDK r19c and SDK 22.6.2
  • Emscripten / WASM:
    • Runtime: a browser with SharedMemory support (threads + atomics)
    • Build: Qt 5.15 with Qt supported Emscripten 1.39.8
    • See README.wasm

If you want to use Clang with the LibreOffice compiler plugins, the minimal version of Clang is 12.0.1. Since Xcode doesn't provide the compiler plugin headers, you have to compile your own Clang to use them on macOS.

You can find the TDF configure switches in the distro-configs/ directory.

To setup your initial build environment on Windows and macOS, we provide the LibreOffice Development Environment (LODE) scripts.

For more information see the build instructions for your platform in the TDF wiki.

The Important Bits of Code

Each module should have a README.md file inside it which has some degree of documentation for that module; patches are most welcome to improve those. We have those turned into a web page here:

https://docs.libreoffice.org/

However, there are two hundred modules, many of them of only peripheral interest for a specialist audience. So - where is the good stuff, the code that is most useful. Here is a quick overview of the most important ones:

Module Description
sal/ this provides a simple System Abstraction Layer
tools/ this provides basic internal types: Rectangle, Color etc.
vcl/ this is the widget toolkit library and one rendering abstraction
framework/ UNO framework, responsible for building toolbars, menus, status bars, and the chrome around the document using widgets from VCL, and XML descriptions from /uiconfig/ files
sfx2/ legacy core framework used by Writer/Calc/Draw: document model / load/save / signals for actions etc.
svx/ drawing model related helper code, including much of Draw/Impress

Then applications

Module Description
desktop/ this is where the main() for the application lives, init / bootstrap. the name dates back to an ancient StarOffice that also drew a desktop
sw/ Writer
sc/ Calc
sd/ Draw / Impress

There are several other libraries that are helpful from a graphical perspective:

Module Description
basegfx/ algorithms and data-types for graphics as used in the canvas
canvas/ new (UNO) canvas rendering model with various backends
cppcanvas/ C++ helper classes for using the UNO canvas
drawinglayer/ View code to render drawable objects and break them down into primitives we can render more easily.

Rules for #include Directives (C/C++)

Use the "..." form if and only if the included file is found next to the including file. Otherwise, use the <...> form. (For further details, see the mail Re: C[++]: Normalizing include syntax ("" vs <>).)

The UNO API include files should consistently use double quotes, for the benefit of external users of this API.

loplugin:includeform (compilerplugins/clang/includeform.cxx) enforces these rules.

Finding Out More

Beyond this, you can read the README.md files, send us patches, ask on the mailing list libreoffice@lists.freedesktop.org (no subscription required) or poke people on IRC #libreoffice-dev on irc.libera.chat - we're a friendly and generally helpful mob. We know the code can be hard to get into at first, and so there are no silly questions.