Skip to content

Commit cda476f

Browse files
committed
File conversion
1 parent 49da64b commit cda476f

43 files changed

Lines changed: 1568 additions & 13 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/multi-format.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: multi-format-tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
multi-format:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up JDK 11
16+
uses: actions/setup-java@v4
17+
with:
18+
distribution: temurin
19+
java-version: '11'
20+
cache: maven
21+
22+
- name: Install LibreOffice
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y --no-install-recommends libreoffice
26+
27+
- name: Verify LibreOffice is on PATH
28+
run: soffice --version
29+
30+
- name: Run multi-format integration tests
31+
run: mvn -P multi-format-tests test -B

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ To have each of your tests appear in the same batch, set the `APPLITOOLS_BATCH_I
170170

171171
#### Sample CSV:
172172
```
173-
filePath|testName|app|os|browser|viewport|matchsize|pages|matchLevel|layoutRegions|contentRegions|ignoreRegions|
173+
filePath|testName|app|os|browser |viewport|matchsize|pages|matchLevel|layoutRegions|contentRegions|ignoreRegions|
174174
docs/a.pdf|Test1|AppA|Linux|Chrome|1024x748||1|Strict||800,800,100,100|300,300,300,100|
175175
docs/a.pdf|Test2|AppA||||x748|1-3|Layout|||500,500,500,100|
176176
docs/b.pdf|Test3|AppB|||||2-5|200,200,500,500|||
Binary file not shown.
Binary file not shown.
60.1 KB
Binary file not shown.

TestData/multi-format/sample.docx

5.41 KB
Binary file not shown.

TestData/multi-format/sample.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Heading
2+
3+
Sample **markdown** fixture.

TestData/multi-format/sample.pptx

27.6 KB
Binary file not shown.

TestData/multi-format/sample.ps

210 Bytes
Binary file not shown.

TestData/multi-format/sample.rtf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033 Sample RTF fixture.}

0 commit comments

Comments
 (0)