Skip to content
Snippets Groups Projects
Commit 58f63681 authored by wizonesolutions's avatar wizonesolutions Committed by Kevin Kaland
Browse files

Issue #3105191 by wizonesolutions: Fix pdftk and tests

parent c5a9a705
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ allowed_schemes:
- private
template_scheme: ''
shell_locale: en_US.utf8
shell_locale: en_US.UTF-8
remote_protocol: https
......
......@@ -62,6 +62,7 @@ class BackendProxy implements BackendProxyInterface {
$form_replacements = FillPdfMappingHelper::parseReplacements($fillPdfForm->replacements->value);
$mergeOptions += [
'fid' => $fillPdfForm->id(),
'sample' => FALSE,
'flatten' => TRUE,
];
......
......@@ -369,13 +369,16 @@ class PdfPopulationTest extends FillPdfTestBase {
* Tests PDF population using local service.
*
* @throws \PHPUnit_Framework_SkippedTestError
* @throws \Behat\Mink\Exception\ResponseTextException
* Thrown when test had to be skipped as FillPDF LocalServer is not
* available.
*
* @see \Drupal\Tests\fillpdf\Traits\TestFillPdfTrait::configureLocalServiceBackend()
*/
public function testMergeLocalService() {
// For local container testing, we require the Docker container to be
// running on port 8085. If http://127.0.0.1:8085/ping does not return a
// 200, we assume that we're not in an environment where we can run this
// running. If LocalServer's /ping endpoint does not return a 200, we assume
// that we're not in an environment where we can run this
// test.
$this->configureLocalServiceBackend();
$config = $this->container->get('config.factory')->get('fillpdf.settings');
......@@ -389,6 +392,7 @@ class PdfPopulationTest extends FillPdfTestBase {
* Tests PDF population using a local install of pdftk.
*
* @throws \PHPUnit_Framework_SkippedTestError
* @throws \Behat\Mink\Exception\ResponseTextException
* Thrown when test had to be skipped as local pdftk install is not
* available.
*/
......@@ -402,6 +406,8 @@ class PdfPopulationTest extends FillPdfTestBase {
/**
* Tests a backend.
*
* @throws \Behat\Mink\Exception\ResponseTextException
*/
protected function backendTest() {
// If we can upload a PDF, parsing is working.
......@@ -426,11 +432,13 @@ class PdfPopulationTest extends FillPdfTestBase {
'entity_ids' => ['node' => [$node->id()]],
]);
$this->drupalGet($url);
$this->assertSession()->pageTextNotContains('Merging the FillPDF Form failed');
// Check if what we're seeing really is a PDF file.
$maybe_pdf = $this->getSession()->getPage()->getContent();
static::assertEquals('application/pdf', $this->getMimeType($maybe_pdf));
$this->drupalGet('<front>');
$this->assertSession()->pageTextNotContains('Merging the FillPDF Form failed');
}
}
......@@ -31,11 +31,18 @@ trait TestFillPdfTrait {
$config_factory = $this->container->get('config.factory');
// Set FillPDF backend and scheme.
$config_factory->getEditable('fillpdf.settings')
$config = $config_factory->getEditable('fillpdf.settings')
->set('allowed_schemes', $configuration['allowed_schemes'])
->set('template_scheme', $configuration['template_scheme'])
->set('backend', $configuration['backend'])
->save();
->set('backend', $configuration['backend']);
// PDFtk needs to have the correct locale set in the environment or the
// test will fail.
if ($configuration['backend'] === 'pdftk') {
$config->set('shell_locale', 'en_US.UTF-8');
}
$config->save();
}
/**
......@@ -44,11 +51,14 @@ trait TestFillPdfTrait {
protected function configureLocalServiceBackend() {
// Configure our local filling service. You need to set up your development
// environment to run the Docker container at http://127.0.0.1:8085 if you
// are developing for FillPDF and want to run this test.
// are developing for FillPDF and want to run this test. This can be
// overridden with the FILLPDF_LOCAL_SERVER environment variable in
// phpunit.xml.
$localServerEndpoint = getenv('FILLPDF_LOCAL_SERVER');
$edit = [
'template_scheme' => 'public',
'backend' => 'local_service',
'local_service_endpoint' => 'http://127.0.0.1:8085',
'local_service_endpoint' => $localServerEndpoint ?: 'http://127.0.0.1:8085',
];
$this->drupalPostForm('admin/config/media/fillpdf', $edit, t('Save configuration'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment