History log of /aoo42x/test/testuno/source/fvt/uno/sc/ (Results 1 - 24 of 24)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: AOO420-Dev5-m5
509df7cb30-Nov-2023 John Bampton

misc: fix spelling (#187)

* misc: fix spelling

* Update TestExtension.java

* Update FilterFactory.idl

* Update ExtendedTypeDetectionFactory.idl

* Update L

misc: fix spelling (#187)

* misc: fix spelling

* Update TestExtension.java

* Update FilterFactory.idl

* Update ExtendedTypeDetectionFactory.idl

* Update LocationTest.java

* Update HelpComponent.java

* Update HelpSearch.java

* Update TestExtension.java

* Update SOReportJobFactory.java

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>
(cherry picked from commit 7f5c89d5b2565ed069498a1c8ac682c2e94f3fe2)

show more ...

Revision tags: AOO4115-GA, AOO4114-GA
b9aa069812-Jan-2023 Damjan Jovanovic

In ODF (19.679.2 of ODF 1.3), the <table:covered-table-cell> element's
table:number-columns-repeated attribute has a default value of 1,
meaning the cell spans the cell to its right. However

In ODF (19.679.2 of ODF 1.3), the <table:covered-table-cell> element's
table:number-columns-repeated attribute has a default value of 1,
meaning the cell spans the cell to its right. However when the XSLT import
filter converts from SpreadsheetML's ss:MergeAcross to ODF's
table:number-columns-repeated, it always inserts a <table:covered-table-cell>
element, and then adds the table:number-columns-repeated attribute only if
it is greater than 1. This breaks when ss:MergeAcross="0", because ODF's
defaulting to 1 ends up occupying an extra empty cell to the right when it
shouldn't.

Fix this by only inserting the <table:covered-table-cell> when
ss:MergeAcross > 0.

Add a test document to prove this.

Fixes #100989 - SpreadsheetML: cell with ss:MergeAcross="0" gets an extra empty cell to the right
Patch by: me

(cherry picked from commit a896732bfcd282115c06407a2f1da77694fa8d19)

show more ...

0f570a5411-Jan-2023 Damjan Jovanovic

Our XSLT-based MS Office 2003 SpreadsheetML format import filter, when doing
conversion from R1C1 style column references to our A1 style references, had a
bug where it was treating the colum

Our XSLT-based MS Office 2003 SpreadsheetML format import filter, when doing
conversion from R1C1 style column references to our A1 style references, had a
bug where it was treating the column value as 0-based, and dividing by 26 to
find the 1st letter and taking the remainder when divided by 26 for the second
letter. Those numbers are then each converted to a letter [0 = nothing,
1 = "A", 2 = "B", ..., 26 = "Z"].

However since R1C1 is 1-based, and not 0-based, this breaks for column numbers
which are multiples of 26, as 26 mod 26 = 0, so the least significant digit is
converted to nothing while the most significant digit gets incremented too
early.

Fix this by converting the column number to 0-based by subtracting 1 before
calculation, then adding 1 to the least significant digit afterwards.

Also the fact we have 2 letters limited us to a maximum of 26^2 = 676 columns,
after which column references would wrap around. Fix this too, by adding a 3rd
letter, which lets us address a maximum of 17576 columns.

Add a sample file to our unit tests.

Found by: alex dot plantema at xs4all dot nl
Patch by: me

(cherry picked from commit 577fe17932e0dec38662067d1a86e7fd6ae525b6)

show more ...

Revision tags: AOO420-Dev4-m4
a1409b3e24-Sep-2022 Carl Marcum

Tab function test document and test (#156)

Refs i19221 - added test and test document to test star basic Tab function in Calc.

Patch-By: Czesław Wolański
(cherry picked from com

Tab function test document and test (#156)

Refs i19221 - added test and test document to test star basic Tab function in Calc.

Patch-By: Czesław Wolański
(cherry picked from commit 3b297b461537a449cdc46a885832873b48e62701)

show more ...

Revision tags: AOO4113-GA
3b5ec47b10-Jun-2022 Carl Marcum

Refs i126272 - add test and test document for testing Basic comment in single-line if statements (#152)

* Refs i126272 - added test and test document to test fix for comment in single line i

Refs i126272 - add test and test document for testing Basic comment in single-line if statements (#152)

* Refs i126272 - added test and test document to test fix for comment in single line if statement.

(cherry picked from commit 07758af81c4094b8c020cf9852c971f9ff19be4f)

show more ...

48b860b614-Jan-2023 Damjan Jovanovic

When importing SpreadsheetML ss:DateTime, import the entire value, not only the
first 19 characters.

Add a test file for this bug.

Fixes: #128554 - Office 2003 SpreadsheetML: fr

When importing SpreadsheetML ss:DateTime, import the entire value, not only the
first 19 characters.

Add a test file for this bug.

Fixes: #128554 - Office 2003 SpreadsheetML: fractional seconds are silently
ignored during import
Patch by: me

(cherry picked from commit 195282cf3d8bfaa9e1cec43b093251d9df87f4ba)

show more ...

fcf28a0129-May-2022 Carl Marcum

Fix TestFormulaDocs to run against AOO41X, make parameterized, and fix late screenshots (#149)

updated TestFormulaDocs test to be a parameterized test to better see which document failed.

Fix TestFormulaDocs to run against AOO41X, make parameterized, and fix late screenshots (#149)

updated TestFormulaDocs test to be a parameterized test to better see which document failed.
Fixed late screenshots on failures.
Added timeout for dialog hangs when running tests against AOO41X branch due to some BASIC bug fixes for i112383 [1] and it's commit [2] and i117960 [3] and it's commit [4] not being back-ported to AOO41X.

[1] https://bz.apache.org/ooo/show_bug.cgi?id=112383
[2] 323c350

[3] https://bz.apache.org/ooo/show_bug.cgi?id=117960
[4] 725d867

(cherry picked from commit 7d8592c79cfa104063570593e943fed55296950b)

show more ...

Revision tags: AOO4112-GA
cc57ba3415-Jan-2022 mseidel

Fixed typos, removed whitespace, removed multiple license headers

(cherry picked from commit 916729d09a13a81b9710827c57afa2a17578286c)

Revision tags: AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA
e20f181529-Jul-2020 Damjan Jovanovic

Test hangs indefinitely on a link update confirmation dialog,
and I couldn't find how to confirm the dialog programmatically,
so at least make it time out instead of hanging
the whole tes

Test hangs indefinitely on a link update confirmation dialog,
and I couldn't find how to confirm the dialog programmatically,
so at least make it time out instead of hanging
the whole test run.

Patch by: me

(cherry picked from commit b554e61d4a216798d7a7b23d9f8fa51b42aef9bb)

show more ...

Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414, AOO413, AOO4121
725d867324-Nov-2015 Damjan Jovanovic

#i117960# Basic: Line Input doesn't work in single-line If

i92642 added the ability to use certain keywords as variable names (eg. name = 1, line = "hi"),
but also caused a regression wh

#i117960# Basic: Line Input doesn't work in single-line If

i92642 added the ability to use certain keywords as variable names (eg. name = 1, line = "hi"),
but also caused a regression where "Line Input" is broken in single-line If statements.
This patch fixes that by allowing Then and Else to also be the start-of-line tokens expected to
immediately preceed the "Line" token in order for that "Line" token to be recognized a keyword instead
of a variable name. Also added FVT spreadsheet tests for "Line" as both a variable name and as "Line Input".

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716234 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412, SNAPSHOT, AOO411
3de57b8709-Sep-2015 Damjan Jovanovic

#i123901# formula DGET() gives #VALUE! error when fetching calculation resulting in string
Gets ScDBQueryDataIterator::DataAccessInternal::getCurrent() to handle formulas returning strings.
A

#i123901# formula DGET() gives #VALUE! error when fetching calculation resulting in string
Gets ScDBQueryDataIterator::DataAccessInternal::getCurrent() to handle formulas returning strings.
Added a spreadsheet test for this behaviour.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702107 13f79535-47bb-0310-9956-ffa450edef68

show more ...

323c350126-Aug-2015 Damjan Jovanovic

#i112383# CLng("&HFFFFFFFF") fails on 64-bits rather than returning -1

Found-by: andrew
Patch-by: Damjan Jovanovic



git-svn-id: https://svn.apache.org/repos/asf/openoff

#i112383# CLng("&HFFFFFFFF") fails on 64-bits rather than returning -1

Found-by: andrew
Patch-by: Damjan Jovanovic



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1697984 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c7723a2226-Aug-2015 Damjan Jovanovic

#i117989# Basic functions Day(), Hour(), Minute(), and Second() return wrong results for dates <1900-1-1

Also extended our spreadsheeet test to search through more columns, open spreadsheets

#i117989# Basic functions Day(), Hour(), Minute(), and Second() return wrong results for dates <1900-1-1

Also extended our spreadsheeet test to search through more columns, open spreadsheets
with macros enabled, and added a test for the the Year(), Month(), Day(), Hour(),
Minute(), and Second() functions comparing Calc's formulas vs StarBasic's runtime functions.

Found-by: villeroy
Patch-by: Damjan Jovanovic



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1697807 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO410, AOO410_Beta, AOO401
ca86e9e529-Aug-2013 Herbert Dürr

#i123138# tolerate integer rounding artifacts in the fvt.uno.sc.chart.ChartLegend autotest


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1518547 13f79535-47bb-0310-9956-

#i123138# tolerate integer rounding artifacts in the fvt.uno.sc.chart.ChartLegend autotest


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1518547 13f79535-47bb-0310-9956-ffa450edef68

show more ...

9930860e28-Aug-2013 Herbert Dürr

#i123119# allow only "TRUE" or "FALSE" as testOK results

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1518093 13f79535-47bb-0310-9956-ffa450edef68

11e9ca9427-Aug-2013 Herbert Dürr

#i123119# add test script for checking manual-test friendly spreedsheets

The script looks for the columns with "TestID" and "TestOK" markers. All
cells below "TestID" are assumed to be t

#i123119# add test script for checking manual-test friendly spreedsheets

The script looks for the columns with "TestID" and "TestOK" markers. All
cells below "TestID" are assumed to be test names, all values below "TestOK"
are assumed to be test results. If any of the test results evaluates to
"FALSE" or zero the automatic test is marked as failed.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1517802 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO400
b0a35ca404-Dec-2012 Li Feng Wang

#121273 - [testuno] Create/Remove Drawing Objects in spreadshee​t. Patch provide by GuoBin, reviewed by Wang lifeng

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1416784 13f7

#121273 - [testuno] Create/Remove Drawing Objects in spreadshee​t. Patch provide by GuoBin, reviewed by Wang lifeng

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1416784 13f79535-47bb-0310-9956-ffa450edef68

show more ...

cfe4bce304-Dec-2012 Li Feng Wang

Bug 121386 - [UNO API]script Refactor about some SC script. Provide by Terry Yang, reviewd by WangLifeng

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1416776 13f79535-47bb-0

Bug 121386 - [UNO API]script Refactor about some SC script. Provide by Terry Yang, reviewd by WangLifeng

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1416776 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO340
3ecf08d225-Oct-2012 Li Feng Wang

fix problems in test scripts

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1402019 13f79535-47bb-0310-9956-ffa450edef68

07d7dbdc24-Oct-2012 Herbert Dürr

add ALv2 license headers to new files to satisfy the Apache Release Audit Tool

the new files were contributed by AOO committers under the ALv2
but http://ci.apache.org/projects/openoffic

add ALv2 license headers to new files to satisfy the Apache Release Audit Tool

the new files were contributed by AOO committers under the ALv2
but http://ci.apache.org/projects/openoffice/rat-output.html
rightfully complains until the actual license headers are in the files


git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1401677 13f79535-47bb-0310-9956-ffa450edef68

show more ...

1dab16dc24-Oct-2012 Li Feng Wang

#121227 - [testUNO patch]Sort Criteria and Sort Options script
patch by Terry Yang, reviewed by WangLifeng

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1401613 13f795

#121227 - [testUNO patch]Sort Criteria and Sort Options script
patch by Terry Yang, reviewed by WangLifeng

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1401613 13f79535-47bb-0310-9956-ffa450edef68

show more ...

d79d746024-Oct-2012 Li Feng Wang

#121108 - [testUNO patch]validity test script include Criterial/Error Alert/Input Help
patch by Terry Yang, reviewed by WangLiFeng

git-svn-id: https://svn.apache.org/repos/asf/incubator/

#121108 - [testUNO patch]validity test script include Criterial/Error Alert/Input Help
patch by Terry Yang, reviewed by WangLiFeng

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1401611 13f79535-47bb-0310-9956-ffa450edef68

show more ...

7fb388b822-Oct-2012 Zhu Shan

Add test cases to check the chart axis in Spreadsheet.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1400750 13f79535-47bb-0310-9956-ffa450edef68

eba4d44a12-Oct-2012 Liu Zhe

refactor package name testcase->fvt

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1397403 13f79535-47bb-0310-9956-ffa450edef68