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
61395b51
Kaydet (Commit)
61395b51
authored
Eyl 30, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: finish cleanup of rtfimport test
Change-Id: I10433c3c40a0c648bd651ed786ecd5523bf58f61
üst
6ce7a5bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
55 deletions
+10
-55
rtfimport.cxx
sw/qa/extras/rtfimport/rtfimport.cxx
+10
-55
No files found.
sw/qa/extras/rtfimport/rtfimport.cxx
Dosyayı görüntüle @
61395b51
...
...
@@ -617,15 +617,7 @@ void Test::testFdo49271()
{
load
(
"fdo49271.rtf"
);
uno
::
Reference
<
text
::
XTextDocument
>
xTextDocument
(
mxComponent
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumerationAccess
>
xParaEnumAccess
(
xTextDocument
->
getText
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xParaEnum
=
xParaEnumAccess
->
createEnumeration
();
xParaEnum
->
nextElement
();
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
xParaEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
float
fValue
=
0
;
xPropertySet
->
getPropertyValue
(
"CharHeight"
)
>>=
fValue
;
CPPUNIT_ASSERT_EQUAL
(
25.
f
,
fValue
);
CPPUNIT_ASSERT_EQUAL
(
25.
f
,
getProperty
<
float
>
(
getParagraph
(
2
),
"CharHeight"
));
}
void
Test
::
testFdo49692
()
...
...
@@ -642,12 +634,7 @@ void Test::testFdo49692()
const
beans
::
PropertyValue
&
rProp
=
aProps
[
i
];
if
(
rProp
.
Name
==
"Suffix"
)
{
OUString
sValue
;
rProp
.
Value
>>=
sValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
0
),
sValue
.
getLength
());
}
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
0
),
rProp
.
Value
.
get
<
OUString
>
().
getLength
());
}
}
...
...
@@ -655,54 +642,28 @@ void Test::testFdo45190()
{
load
(
"fdo45190.rtf"
);
uno
::
Reference
<
text
::
XTextDocument
>
xTextDocument
(
mxComponent
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumerationAccess
>
xParaEnumAccess
(
xTextDocument
->
getText
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xParaEnum
=
xParaEnumAccess
->
createEnumeration
();
// inherited \fi should be reset
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
xParaEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
sal_Int32
nValue
=
0
;
xPropertySet
->
getPropertyValue
(
"ParaFirstLineIndent"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
0
),
nValue
);
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
0
),
getProperty
<
sal_Int32
>
(
getParagraph
(
1
),
"ParaFirstLineIndent"
));
// but direct one not
xPropertySet
.
set
(
xParaEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
xPropertySet
->
getPropertyValue
(
"ParaFirstLineIndent"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
TWIP_TO_MM100
(
-
100
)),
nValue
);
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
TWIP_TO_MM100
(
-
100
)),
getProperty
<
sal_Int32
>
(
getParagraph
(
2
),
"ParaFirstLineIndent"
));
}
void
Test
::
testFdo50539
()
{
load
(
"fdo50539.rtf"
);
uno
::
Reference
<
text
::
XTextDocument
>
xTextDocument
(
mxComponent
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumerationAccess
>
xParaEnumAccess
(
xTextDocument
->
getText
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xParaEnum
=
xParaEnumAccess
->
createEnumeration
();
uno
::
Reference
<
container
::
XEnumerationAccess
>
xRunEnumAccess
(
xParaEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xRunEnum
=
xRunEnumAccess
->
createEnumeration
();
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
xRunEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
sal_Int32
nValue
=
0
;
// \chcbpat with zero argument should mean the auto (-1) color, not a default color (black)
xPropertySet
->
getPropertyValue
(
"CharBackColor"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
-
1
),
nValue
);
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
-
1
),
getProperty
<
sal_Int32
>
(
getRun
(
getParagraph
(
1
),
1
),
"CharBackColor"
));
}
void
Test
::
testFdo50665
()
{
load
(
"fdo50665.rtf"
);
uno
::
Reference
<
text
::
XTextDocument
>
xTextDocument
(
mxComponent
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumerationAccess
>
xParaEnumAccess
(
xTextDocument
->
getText
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xParaEnum
(
xParaEnumAccess
->
createEnumeration
());
uno
::
Reference
<
container
::
XEnumerationAccess
>
xRunEnumAccess
(
xParaEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XEnumeration
>
xRunEnum
(
xRunEnumAccess
->
createEnumeration
());
// Access the second run, which is a textfield
xRunEnum
->
nextElement
();
uno
::
Reference
<
beans
::
XPropertySet
>
xRun
(
xRunEnum
->
nextElement
(),
uno
::
UNO_QUERY
);
OUString
aValue
;
xRun
->
getPropertyValue
(
"CharFontName"
)
>>=
aValue
;
uno
::
Reference
<
beans
::
XPropertySet
>
xRun
(
getRun
(
getParagraph
(
1
),
2
),
uno
::
UNO_QUERY
);
// This used to be the default, as character properties were ignored.
CPPUNIT_ASSERT_EQUAL
(
OUString
(
"Book Antiqua"
),
aValue
);
CPPUNIT_ASSERT_EQUAL
(
OUString
(
"Book Antiqua"
),
getProperty
<
OUString
>
(
xRun
,
"CharFontName"
)
);
}
void
Test
::
testFdo49659
()
...
...
@@ -717,12 +678,8 @@ void Test::testFdo49659()
// The graphic was also empty
uno
::
Reference
<
drawing
::
XDrawPageSupplier
>
xDrawPageSupplier
(
mxComponent
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
container
::
XIndexAccess
>
xDraws
(
xDrawPageSupplier
->
getDrawPage
(),
uno
::
UNO_QUERY
);
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
xDraws
->
getByIndex
(
0
),
uno
::
UNO_QUERY
);
uno
::
Reference
<
beans
::
XPropertySet
>
xGraphic
;
xPropertySet
->
getPropertyValue
(
"Graphic"
)
>>=
xGraphic
;
sal_Int8
nValue
=
0
;
xGraphic
->
getPropertyValue
(
"GraphicType"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
graphic
::
GraphicType
::
PIXEL
,
nValue
);
uno
::
Reference
<
beans
::
XPropertySet
>
xGraphic
(
getProperty
<
uno
::
Reference
<
beans
::
XPropertySet
>
>
(
xDraws
->
getByIndex
(
0
),
"Graphic"
),
uno
::
UNO_QUERY
);
CPPUNIT_ASSERT_EQUAL
(
graphic
::
GraphicType
::
PIXEL
,
getProperty
<
sal_Int8
>
(
xGraphic
,
"GraphicType"
));
}
void
Test
::
testFdo46966
()
...
...
@@ -735,9 +692,7 @@ void Test::testFdo46966()
load
(
"fdo46966.rtf"
);
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
getStyles
(
"PageStyles"
)
->
getByName
(
"Default"
),
uno
::
UNO_QUERY
);
sal_Int32
nValue
=
0
;
xPropertySet
->
getPropertyValue
(
"TopMargin"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
TWIP_TO_MM100
(
720
)),
nValue
);
CPPUNIT_ASSERT_EQUAL
(
sal_Int32
(
TWIP_TO_MM100
(
720
)),
getProperty
<
sal_Int32
>
(
xPropertySet
,
"TopMargin"
));
}
void
Test
::
testFdo52066
()
...
...
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