History log of /trunk/test/ (Results 1 - 25 of 258)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: AOO420-Dev5-m5
1d88490001-Dec-2023 John Bampton

misc: fix spelling, fix test (#189)

6587247401-Dec-2023 John Bampton

misc: fix spelling (#188)

7f5c89d530-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>

show more ...

300d486628-Nov-2023 John Bampton

misc: fix spelling (#186)

* misc: fix spelling

* Update cmdid.h

* Update svdopath.cxx

* Update RowSetCache.cxx

---------

Co-authored-by: Matthias

misc: fix spelling (#186)

* misc: fix spelling

* Update cmdid.h

* Update svdopath.cxx

* Update RowSetCache.cxx

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>

show more ...

07225a5126-Nov-2023 John Bampton

misc: fix spelling (#185)

I think we are OK!

81afc36f19-Nov-2023 John Bampton

misc: fix spelling (#184)

06fb39a115-Nov-2023 John Bampton

misc: fix spelling (#183)

* misc: fix spelling

* Update svdedxv.cxx

Small additions

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>

Revision tags: AOO4115-GA
05f6192c12-Feb-2023 Carl Marcum

reorderd paragraphs

983dd2d912-Feb-2023 Carl Marcum

updated trunk test readme for being the stanalone test branch and current tests for other branches.

f5cdefa417-Jan-2023 Damjan Jovanovic

Finish my previous commit, add a missing function to check hamcrest.

Patch by: me

e2eb708d15-Jan-2023 Damjan Jovanovic

When junit is absent, download only junit, and when hamcrest is absent,
download only hamcrest.

Patch by: me

Revision tags: AOO4114-GA
ffd83a4c14-Jan-2023 Damjan Jovanovic

UnoApp.close() was issuing XDesktop.terminate(), and then starting a timer
that would kill OpenOffice 2 second seconds, while also killing it in the
finally block, and not waiting for it to e

UnoApp.close() was issuing XDesktop.terminate(), and then starting a timer
that would kill OpenOffice 2 second seconds, while also killing it in the
finally block, and not waiting for it to exit. This sometimes caused tests
to start OpenOffice before the previous instance fully finished,
especially in the fvt.uno.sc.formula.TestFormulaDocs test which starts up
OpenOffice for each document, and then the new instance wouldn't start,
causing test failures.

Rather, after issuing XDesktop.terminate(), wait up to 5 seconds for
OpenOffice to exit. Only if it's still running, kill it. This is similar
to what VclApp already does.

Patch by: me

show more ...

195282cf14-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

show more ...

a896732b12-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

show more ...

577fe17911-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

show more ...

Revision tags: AOO420-Dev4-m4
47b4b2ce05-Oct-2022 Carl Marcum

Refs #128536 - fixes BasicSheetTest.insertSheetFromfile locks up and times out (#158)

fix: set broken UNO BasicSheetTest to ignore and added two new mixed UNO/VCL test classes with three tes

Refs #128536 - fixes BasicSheetTest.insertSheetFromfile locks up and times out (#158)

fix: set broken UNO BasicSheetTest to ignore and added two new mixed UNO/VCL test classes with three tests each to cover ignored tests for Excel and now also Calc sources.

Refs: #128536

show more ...

3b297b4624-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

Revision tags: AOO4113-GA
07758af810-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.

show more ...

7d8592c729-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

show more ...

daaa1af428-Apr-2022 cbmarcum

updated AOOTest.testHello to get the result first before the assertion and moved app.stop from tearDown into setup and afterClass due to screenshots happening after the app closed.

190f2c2016-Apr-2022 cbmarcum

fixed testFind assertion text that was changed and caused the find and replace test to fail because it no longer worked with the bvt/find.odt test document.

e266681915-Apr-2022 Carl Marcum

Merge pull request #145 from apache/standalone-test

Make the automated test suite standalone from the office build


d99de66127-Mar-2022 cbmarcum

Refs #i128450# - disabled smb host only test per this email thread: https://lists.apache.org/thread/k1m3wqz04bj8b5kdg814h24qf45sv811
AOO keeps appending a final / thus changing the intent of the

Refs #i128450# - disabled smb host only test per this email thread: https://lists.apache.org/thread/k1m3wqz04bj8b5kdg814h24qf45sv811
AOO keeps appending a final / thus changing the intent of the test.

show more ...

e83be9d627-Mar-2022 cbmarcum

Refs #i128505# - testTableBorderLineStyle() was entering 0.55" instead of 0.50" at line 199 because the ctrl-a wasn't selecting all of the cell contents and leaving a 5 in the cell. then when typing

Refs #i128505# - testTableBorderLineStyle() was entering 0.55" instead of 0.50" at line 199 because the ctrl-a wasn't selecting all of the cell contents and leaving a 5 in the cell. then when typing in 0.5 it became 0.55 and failing the assertion at line 222. added sleep at 197 to make sure focus is completed before ctrl-a.

show more ...

Revision tags: AOO4112-GA
916729d015-Jan-2022 mseidel

Fixed typos, removed whitespace, removed multiple license headers

1234567891011