mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-04 02:20:19 +01:00
98 lines
4.1 KiB
Gherkin
98 lines
4.1 KiB
Gherkin
@convert
|
|
Feature: Convert API Validation (additional endpoints)
|
|
|
|
@ghostscript @positive
|
|
Scenario Outline: Convert PDF to vector format
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 1 pages with random text
|
|
And the request data includes
|
|
| parameter | value |
|
|
| outputFormat | <format> |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/vector"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension "<extension>"
|
|
|
|
@pdf-to-eps
|
|
Examples:
|
|
| format | extension |
|
|
| eps | .eps |
|
|
|
|
Examples:
|
|
| format | extension |
|
|
| ps | .ps |
|
|
| pcl | .pcl |
|
|
| xps | .xps |
|
|
|
|
@image @positive @pdf-to-cbz
|
|
Scenario: Convert PDF to CBZ with default DPI
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 3 pages with random text
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/cbz"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".cbz"
|
|
|
|
@image @positive @pdf-to-cbz
|
|
Scenario: Convert PDF to CBZ with low DPI
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 2 pages with random text
|
|
And the request data includes
|
|
| parameter | value |
|
|
| dpi | 72 |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/cbz"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".cbz"
|
|
|
|
@image @positive @pdf-to-cbz
|
|
Scenario: Convert single-page PDF to CBZ
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 1 pages
|
|
And the request data includes
|
|
| parameter | value |
|
|
| dpi | 72 |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/cbz"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".cbz"
|
|
|
|
@calibre @positive @pdf-to-epub
|
|
Scenario: Convert PDF to EPUB format
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 3 pages with random text
|
|
And the request data includes
|
|
| parameter | value |
|
|
| outputFormat | EPUB |
|
|
| detectChapters | false |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/epub"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".epub"
|
|
|
|
@calibre @positive @pdf-to-epub
|
|
Scenario: Convert PDF to AZW3 format
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 3 pages with random text
|
|
And the request data includes
|
|
| parameter | value |
|
|
| outputFormat | AZW3 |
|
|
| detectChapters | false |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/epub"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".azw3"
|
|
|
|
@calibre @positive @pdf-to-epub
|
|
Scenario: Convert PDF to EPUB with chapter detection
|
|
Given I generate a PDF file as "fileInput"
|
|
And the pdf contains 5 pages with random text
|
|
And the request data includes
|
|
| parameter | value |
|
|
| outputFormat | EPUB |
|
|
| detectChapters | true |
|
|
When I send the API request to the endpoint "/api/v1/convert/pdf/epub"
|
|
Then the response status code should be 200
|
|
And the response file should have size greater than 0
|
|
And the response file should have extension ".epub"
|