Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
a9fc6ee7
Kaydet (Commit)
a9fc6ee7
authored
Mar 06, 2013
tarafından
Noel Power
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Create new Macro helper class to help invoking macros for unittests
Change-Id: Icc3cbfc3eae6ade037960497e7fe2addf1912897
üst
8fd81a11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
137 additions
and
0 deletions
+137
-0
basictest.hxx
basic/qa/cppunit/basictest.hxx
+137
-0
No files found.
basic/qa/cppunit/basictest.hxx
Dosyayı görüntüle @
a9fc6ee7
...
@@ -16,6 +16,11 @@
...
@@ -16,6 +16,11 @@
#include <test/bootstrapfixture.hxx>
#include <test/bootstrapfixture.hxx>
#include "basic/sbstar.hxx"
#include "basic/sbstar.hxx"
#include "basic/basrdll.hxx"
#include "basic/basrdll.hxx"
#include "basic/sbmod.hxx"
#include "basic/sbmeth.hxx"
#include "basic/basrdll.hxx"
#include "basic/sbuno.hxx"
#include <osl/file.hxx>
class
BasicTestBase
:
public
test
::
BootstrapFixture
class
BasicTestBase
:
public
test
::
BootstrapFixture
{
{
...
@@ -46,6 +51,138 @@ IMPL_LINK( BasicTestBase, BasicErrorHdl, StarBASIC *, /*pBasic*/)
...
@@ -46,6 +51,138 @@ IMPL_LINK( BasicTestBase, BasicErrorHdl, StarBASIC *, /*pBasic*/)
return
0
;
return
0
;
}
}
class
MacroSnippet
{
private
:
bool
mbError
;
SbModuleRef
mpMod
;
StarBASICRef
mpBasic
;
void
InitSnippet
()
{
CPPUNIT_ASSERT_MESSAGE
(
"No resource manager"
,
basicDLL
().
GetBasResMgr
()
!=
NULL
);
mpBasic
=
new
StarBASIC
();
StarBASIC
::
SetGlobalErrorHdl
(
LINK
(
this
,
MacroSnippet
,
BasicErrorHdl
)
);
}
void
MakeModule
(
const
OUString
&
sSource
)
{
mpMod
=
mpBasic
->
MakeModule
(
OUString
(
"TestModule"
),
sSource
);
}
public
:
struct
ErrorDetail
{
OUString
sErrorText
;
int
nLine
;
int
nCol
;
ErrorDetail
()
:
nLine
(
0
),
nCol
(
0
)
{}
};
MacroSnippet
(
const
OUString
&
sSource
)
:
mbError
(
false
)
{
InitSnippet
();
MakeModule
(
sSource
);
};
MacroSnippet
()
:
mbError
(
false
)
{
InitSnippet
();
};
void
LoadSourceFromFile
(
const
OUString
&
sMacroFileURL
)
{
OUString
sSource
;
printf
(
"loadSource opening macro file %s
\n
"
,
OUStringToOString
(
sMacroFileURL
,
RTL_TEXTENCODING_UTF8
).
getStr
()
);
osl
::
File
aFile
(
sMacroFileURL
);
if
(
osl
::
FileBase
::
E_None
==
aFile
.
open
(
osl_File_OpenFlag_Read
))
{
sal_uInt64
size
;
sal_uInt64
size_read
;
if
(
osl
::
FileBase
::
E_None
==
aFile
.
getSize
(
size
))
{
void
*
buffer
=
calloc
(
1
,
size
+
1
);
CPPUNIT_ASSERT
(
buffer
);
if
(
osl
::
FileBase
::
E_None
==
aFile
.
read
(
buffer
,
size
,
size_read
))
{
if
(
size
==
size_read
)
{
OUString
sCode
((
sal_Char
*
)
buffer
,
size
,
RTL_TEXTENCODING_UTF8
);
sSource
=
sCode
;
}
}
}
}
CPPUNIT_ASSERT_MESSAGE
(
"Source is empty"
,
(
sSource
.
getLength
()
>
0
)
);
MakeModule
(
sSource
);
}
SbxVariableRef
Run
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
rArgs
)
{
SbxVariableRef
pReturn
=
NULL
;
if
(
!
Compile
()
)
return
pReturn
;
SbMethod
*
pMeth
=
mpMod
?
static_cast
<
SbMethod
*>
(
mpMod
->
Find
(
OUString
(
"test"
),
SbxCLASS_METHOD
))
:
NULL
;
if
(
pMeth
)
{
if
(
rArgs
.
getLength
()
)
{
SbxArrayRef
aArgs
=
new
SbxArray
;
for
(
int
i
=
0
;
i
<
rArgs
.
getLength
();
++
i
)
{
SbxVariable
*
pVar
=
new
SbxVariable
();
unoToSbxValue
(
pVar
,
rArgs
[
i
]
);
aArgs
->
Put
(
pVar
,
i
+
1
);
}
pMeth
->
SetParameters
(
aArgs
);
}
pReturn
=
new
SbxMethod
(
*
((
SbxMethod
*
)
pMeth
));
}
return
pReturn
;
}
SbxVariableRef
Run
()
{
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>
aArgs
;
return
Run
(
aArgs
);
}
bool
Compile
()
{
CPPUNIT_ASSERT_MESSAGE
(
"module is NULL"
,
mpMod
!=
NULL
);
mpMod
->
Compile
();
return
!
mbError
;
}
DECL_LINK
(
BasicErrorHdl
,
StarBASIC
*
);
ErrorDetail
GetError
()
{
ErrorDetail
aErr
;
aErr
.
sErrorText
=
StarBASIC
::
GetErrorText
();
aErr
.
nLine
=
StarBASIC
::
GetLine
();
aErr
.
nCol
=
StarBASIC
::
GetCol1
();
return
aErr
;
}
bool
HasError
()
{
return
mbError
;
}
void
ResetError
()
{
StarBASIC
::
SetGlobalErrorHdl
(
Link
()
);
mbError
=
false
;
}
BasicDLL
&
basicDLL
()
{
static
BasicDLL
maDll
;
// we need a dll instance for resouce manager etc.
return
maDll
;
}
};
IMPL_LINK
(
MacroSnippet
,
BasicErrorHdl
,
StarBASIC
*
,
/*pBasic*/
)
{
fprintf
(
stderr
,
"Got error:
\n\t
%s!!!
\n
"
,
OUStringToOString
(
StarBASIC
::
GetErrorText
(),
RTL_TEXTENCODING_UTF8
).
getStr
()
);
mbError
=
true
;
return
0
;
}
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment